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 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */ 1599 1600 #if defined(FEAT_EVAL) 1601 if (aborting()) /* autocmds may abort script processing */ 1602 return FAIL; 1603 #endif 1604 1605 return OK; 1606 } 1607 1608 /* 1609 * Set current buffer to "buf". Executes autocommands and closes current 1610 * buffer. "action" tells how to close the current buffer: 1611 * DOBUF_GOTO free or hide it 1612 * DOBUF_SPLIT nothing 1613 * DOBUF_UNLOAD unload it 1614 * DOBUF_DEL delete it 1615 * DOBUF_WIPE wipe it out 1616 */ 1617 void 1618 set_curbuf(buf_T *buf, int action) 1619 { 1620 buf_T *prevbuf; 1621 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL 1622 || action == DOBUF_WIPE); 1623 #ifdef FEAT_SYN_HL 1624 long old_tw = curbuf->b_p_tw; 1625 #endif 1626 bufref_T newbufref; 1627 bufref_T prevbufref; 1628 1629 setpcmark(); 1630 if (!cmdmod.keepalt) 1631 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */ 1632 buflist_altfpos(curwin); /* remember curpos */ 1633 1634 /* Don't restart Select mode after switching to another buffer. */ 1635 VIsual_reselect = FALSE; 1636 1637 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf" 1638 */ 1639 prevbuf = curbuf; 1640 set_bufref(&prevbufref, prevbuf); 1641 set_bufref(&newbufref, buf); 1642 1643 /* Autocommands may delete the curren buffer and/or the buffer we wan to go 1644 * to. In those cases don't close the buffer. */ 1645 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf) 1646 || (bufref_valid(&prevbufref) 1647 && bufref_valid(&newbufref) 1648 #ifdef FEAT_EVAL 1649 && !aborting() 1650 #endif 1651 )) 1652 { 1653 #ifdef FEAT_SYN_HL 1654 if (prevbuf == curwin->w_buffer) 1655 reset_synblock(curwin); 1656 #endif 1657 if (unload) 1658 close_windows(prevbuf, FALSE); 1659 #if defined(FEAT_EVAL) 1660 if (bufref_valid(&prevbufref) && !aborting()) 1661 #else 1662 if (bufref_valid(&prevbufref)) 1663 #endif 1664 { 1665 win_T *previouswin = curwin; 1666 if (prevbuf == curbuf) 1667 u_sync(FALSE); 1668 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf, 1669 unload ? action : (action == DOBUF_GOTO 1670 && !buf_hide(prevbuf) 1671 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE); 1672 if (curwin != previouswin && win_valid(previouswin)) 1673 /* autocommands changed curwin, Grr! */ 1674 curwin = previouswin; 1675 } 1676 } 1677 /* An autocommand may have deleted "buf", already entered it (e.g., when 1678 * it did ":bunload") or aborted the script processing. 1679 * If curwin->w_buffer is null, enter_buffer() will make it valid again */ 1680 if ((buf_valid(buf) && buf != curbuf 1681 #ifdef FEAT_EVAL 1682 && !aborting() 1683 #endif 1684 ) || curwin->w_buffer == NULL) 1685 { 1686 enter_buffer(buf); 1687 #ifdef FEAT_SYN_HL 1688 if (old_tw != curbuf->b_p_tw) 1689 check_colorcolumn(curwin); 1690 #endif 1691 } 1692 } 1693 1694 /* 1695 * Enter a new current buffer. 1696 * Old curbuf must have been abandoned already! This also means "curbuf" may 1697 * be pointing to freed memory. 1698 */ 1699 void 1700 enter_buffer(buf_T *buf) 1701 { 1702 /* Copy buffer and window local option values. Not for a help buffer. */ 1703 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); 1704 if (!buf->b_help) 1705 get_winopts(buf); 1706 #ifdef FEAT_FOLDING 1707 else 1708 /* Remove all folds in the window. */ 1709 clearFolding(curwin); 1710 foldUpdateAll(curwin); /* update folds (later). */ 1711 #endif 1712 1713 /* Get the buffer in the current window. */ 1714 curwin->w_buffer = buf; 1715 curbuf = buf; 1716 ++curbuf->b_nwindows; 1717 1718 #ifdef FEAT_DIFF 1719 if (curwin->w_p_diff) 1720 diff_buf_add(curbuf); 1721 #endif 1722 1723 #ifdef FEAT_SYN_HL 1724 curwin->w_s = &(curbuf->b_s); 1725 #endif 1726 1727 /* Cursor on first line by default. */ 1728 curwin->w_cursor.lnum = 1; 1729 curwin->w_cursor.col = 0; 1730 curwin->w_cursor.coladd = 0; 1731 curwin->w_set_curswant = TRUE; 1732 curwin->w_topline_was_set = FALSE; 1733 1734 /* mark cursor position as being invalid */ 1735 curwin->w_valid = 0; 1736 1737 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum, 1738 curbuf->b_last_cursor.col, TRUE); 1739 1740 /* Make sure the buffer is loaded. */ 1741 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */ 1742 { 1743 /* If there is no filetype, allow for detecting one. Esp. useful for 1744 * ":ball" used in a autocommand. If there already is a filetype we 1745 * might prefer to keep it. */ 1746 if (*curbuf->b_p_ft == NUL) 1747 did_filetype = FALSE; 1748 1749 open_buffer(FALSE, NULL, 0); 1750 } 1751 else 1752 { 1753 if (!msg_silent) 1754 need_fileinfo = TRUE; /* display file info after redraw */ 1755 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */ 1756 curwin->w_topline = 1; 1757 #ifdef FEAT_DIFF 1758 curwin->w_topfill = 0; 1759 #endif 1760 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); 1761 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); 1762 } 1763 1764 /* If autocommands did not change the cursor position, restore cursor lnum 1765 * and possibly cursor col. */ 1766 if (curwin->w_cursor.lnum == 1 && inindent(0)) 1767 buflist_getfpos(); 1768 1769 check_arg_idx(curwin); /* check for valid arg_idx */ 1770 #ifdef FEAT_TITLE 1771 maketitle(); 1772 #endif 1773 /* when autocmds didn't change it */ 1774 if (curwin->w_topline == 1 && !curwin->w_topline_was_set) 1775 scroll_cursor_halfway(FALSE); /* redisplay at correct position */ 1776 1777 #ifdef FEAT_NETBEANS_INTG 1778 /* Send fileOpened event because we've changed buffers. */ 1779 netbeans_file_activated(curbuf); 1780 #endif 1781 1782 /* Change directories when the 'acd' option is set. */ 1783 DO_AUTOCHDIR; 1784 1785 #ifdef FEAT_KEYMAP 1786 if (curbuf->b_kmap_state & KEYMAP_INIT) 1787 (void)keymap_init(); 1788 #endif 1789 #ifdef FEAT_SPELL 1790 /* May need to set the spell language. Can only do this after the buffer 1791 * has been properly setup. */ 1792 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) 1793 (void)did_set_spelllang(curwin); 1794 #endif 1795 #ifdef FEAT_VIMINFO 1796 curbuf->b_last_used = vim_time(); 1797 #endif 1798 1799 redraw_later(NOT_VALID); 1800 } 1801 1802 #if defined(FEAT_AUTOCHDIR) || defined(PROTO) 1803 /* 1804 * Change to the directory of the current buffer. 1805 * Don't do this while still starting up. 1806 */ 1807 void 1808 do_autochdir(void) 1809 { 1810 if ((starting == 0 || test_autochdir) 1811 && curbuf->b_ffname != NULL 1812 && vim_chdirfile(curbuf->b_ffname, "auto") == OK) 1813 shorten_fnames(TRUE); 1814 } 1815 #endif 1816 1817 void 1818 no_write_message(void) 1819 { 1820 #ifdef FEAT_TERMINAL 1821 if (term_job_running(curbuf->b_term)) 1822 emsg(_("E948: Job still running (add ! to end the job)")); 1823 else 1824 #endif 1825 emsg(_("E37: No write since last change (add ! to override)")); 1826 } 1827 1828 void 1829 no_write_message_nobang(buf_T *buf UNUSED) 1830 { 1831 #ifdef FEAT_TERMINAL 1832 if (term_job_running(buf->b_term)) 1833 emsg(_("E948: Job still running")); 1834 else 1835 #endif 1836 emsg(_("E37: No write since last change")); 1837 } 1838 1839 /* 1840 * functions for dealing with the buffer list 1841 */ 1842 1843 static int top_file_num = 1; /* highest file number */ 1844 1845 /* 1846 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in 1847 * only one window. That means it can be re-used. 1848 */ 1849 int 1850 curbuf_reusable(void) 1851 { 1852 return (curbuf != NULL 1853 && curbuf->b_ffname == NULL 1854 && curbuf->b_nwindows <= 1 1855 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()) 1856 && !curbufIsChanged()); 1857 } 1858 1859 /* 1860 * Add a file name to the buffer list. Return a pointer to the buffer. 1861 * If the same file name already exists return a pointer to that buffer. 1862 * If it does not exist, or if fname == NULL, a new entry is created. 1863 * If (flags & BLN_CURBUF) is TRUE, may use current buffer. 1864 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. 1865 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer. 1866 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer. 1867 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer 1868 * if the buffer already exists. 1869 * This is the ONLY way to create a new buffer. 1870 */ 1871 buf_T * 1872 buflist_new( 1873 char_u *ffname_arg, // full path of fname or relative 1874 char_u *sfname_arg, // short fname or NULL 1875 linenr_T lnum, // preferred cursor line 1876 int flags) // BLN_ defines 1877 { 1878 char_u *ffname = ffname_arg; 1879 char_u *sfname = sfname_arg; 1880 buf_T *buf; 1881 #ifdef UNIX 1882 stat_T st; 1883 #endif 1884 1885 if (top_file_num == 1) 1886 hash_init(&buf_hashtab); 1887 1888 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname 1889 1890 /* 1891 * If file name already exists in the list, update the entry. 1892 */ 1893 #ifdef UNIX 1894 /* On Unix we can use inode numbers when the file exists. Works better 1895 * for hard links. */ 1896 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0) 1897 st.st_dev = (dev_T)-1; 1898 #endif 1899 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf = 1900 #ifdef UNIX 1901 buflist_findname_stat(ffname, &st) 1902 #else 1903 buflist_findname(ffname) 1904 #endif 1905 ) != NULL) 1906 { 1907 vim_free(ffname); 1908 if (lnum != 0) 1909 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE); 1910 1911 if ((flags & BLN_NOOPT) == 0) 1912 /* copy the options now, if 'cpo' doesn't have 's' and not done 1913 * already */ 1914 buf_copy_options(buf, 0); 1915 1916 if ((flags & BLN_LISTED) && !buf->b_p_bl) 1917 { 1918 bufref_T bufref; 1919 1920 buf->b_p_bl = TRUE; 1921 set_bufref(&bufref, buf); 1922 if (!(flags & BLN_DUMMY)) 1923 { 1924 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf) 1925 && !bufref_valid(&bufref)) 1926 return NULL; 1927 } 1928 } 1929 return buf; 1930 } 1931 1932 /* 1933 * If the current buffer has no name and no contents, use the current 1934 * buffer. Otherwise: Need to allocate a new buffer structure. 1935 * 1936 * This is the ONLY place where a new buffer structure is allocated! 1937 * (A spell file buffer is allocated in spell.c, but that's not a normal 1938 * buffer.) 1939 */ 1940 buf = NULL; 1941 if ((flags & BLN_CURBUF) && curbuf_reusable()) 1942 { 1943 buf = curbuf; 1944 /* It's like this buffer is deleted. Watch out for autocommands that 1945 * change curbuf! If that happens, allocate a new buffer anyway. */ 1946 if (curbuf->b_p_bl) 1947 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); 1948 if (buf == curbuf) 1949 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf); 1950 #ifdef FEAT_EVAL 1951 if (aborting()) /* autocmds may abort script processing */ 1952 return NULL; 1953 #endif 1954 if (buf == curbuf) 1955 { 1956 /* Make sure 'bufhidden' and 'buftype' are empty */ 1957 clear_string_option(&buf->b_p_bh); 1958 clear_string_option(&buf->b_p_bt); 1959 } 1960 } 1961 if (buf != curbuf || curbuf == NULL) 1962 { 1963 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T)); 1964 if (buf == NULL) 1965 { 1966 vim_free(ffname); 1967 return NULL; 1968 } 1969 #ifdef FEAT_EVAL 1970 /* init b: variables */ 1971 buf->b_vars = dict_alloc(); 1972 if (buf->b_vars == NULL) 1973 { 1974 vim_free(ffname); 1975 vim_free(buf); 1976 return NULL; 1977 } 1978 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE); 1979 #endif 1980 init_changedtick(buf); 1981 } 1982 1983 if (ffname != NULL) 1984 { 1985 buf->b_ffname = ffname; 1986 buf->b_sfname = vim_strsave(sfname); 1987 } 1988 1989 clear_wininfo(buf); 1990 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T)); 1991 1992 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL)) 1993 || buf->b_wininfo == NULL) 1994 { 1995 if (buf->b_sfname != buf->b_ffname) 1996 VIM_CLEAR(buf->b_sfname); 1997 else 1998 buf->b_sfname = NULL; 1999 VIM_CLEAR(buf->b_ffname); 2000 if (buf != curbuf) 2001 free_buffer(buf); 2002 return NULL; 2003 } 2004 2005 if (buf == curbuf) 2006 { 2007 /* free all things allocated for this buffer */ 2008 buf_freeall(buf, 0); 2009 if (buf != curbuf) /* autocommands deleted the buffer! */ 2010 return NULL; 2011 #if defined(FEAT_EVAL) 2012 if (aborting()) /* autocmds may abort script processing */ 2013 return NULL; 2014 #endif 2015 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */ 2016 2017 /* Init the options. */ 2018 buf->b_p_initialized = FALSE; 2019 buf_copy_options(buf, BCO_ENTER); 2020 2021 #ifdef FEAT_KEYMAP 2022 /* need to reload lmaps and set b:keymap_name */ 2023 curbuf->b_kmap_state |= KEYMAP_INIT; 2024 #endif 2025 } 2026 else 2027 { 2028 /* 2029 * put new buffer at the end of the buffer list 2030 */ 2031 buf->b_next = NULL; 2032 if (firstbuf == NULL) /* buffer list is empty */ 2033 { 2034 buf->b_prev = NULL; 2035 firstbuf = buf; 2036 } 2037 else /* append new buffer at end of list */ 2038 { 2039 lastbuf->b_next = buf; 2040 buf->b_prev = lastbuf; 2041 } 2042 lastbuf = buf; 2043 2044 buf->b_fnum = top_file_num++; 2045 if (top_file_num < 0) /* wrap around (may cause duplicates) */ 2046 { 2047 emsg(_("W14: Warning: List of file names overflow")); 2048 if (emsg_silent == 0) 2049 { 2050 out_flush(); 2051 ui_delay(3000L, TRUE); /* make sure it is noticed */ 2052 } 2053 top_file_num = 1; 2054 } 2055 buf_hashtab_add(buf); 2056 2057 /* 2058 * Always copy the options from the current buffer. 2059 */ 2060 buf_copy_options(buf, BCO_ALWAYS); 2061 } 2062 2063 buf->b_wininfo->wi_fpos.lnum = lnum; 2064 buf->b_wininfo->wi_win = curwin; 2065 2066 #ifdef FEAT_SYN_HL 2067 hash_init(&buf->b_s.b_keywtab); 2068 hash_init(&buf->b_s.b_keywtab_ic); 2069 #endif 2070 2071 buf->b_fname = buf->b_sfname; 2072 #ifdef UNIX 2073 if (st.st_dev == (dev_T)-1) 2074 buf->b_dev_valid = FALSE; 2075 else 2076 { 2077 buf->b_dev_valid = TRUE; 2078 buf->b_dev = st.st_dev; 2079 buf->b_ino = st.st_ino; 2080 } 2081 #endif 2082 buf->b_u_synced = TRUE; 2083 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; 2084 if (flags & BLN_DUMMY) 2085 buf->b_flags |= BF_DUMMY; 2086 buf_clear_file(buf); 2087 clrallmarks(buf); /* clear marks */ 2088 fmarks_check_names(buf); /* check file marks for this file */ 2089 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */ 2090 if (!(flags & BLN_DUMMY)) 2091 { 2092 bufref_T bufref; 2093 2094 /* Tricky: these autocommands may change the buffer list. They could 2095 * also split the window with re-using the one empty buffer. This may 2096 * result in unexpectedly losing the empty buffer. */ 2097 set_bufref(&bufref, buf); 2098 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf) 2099 && !bufref_valid(&bufref)) 2100 return NULL; 2101 if (flags & BLN_LISTED) 2102 { 2103 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf) 2104 && !bufref_valid(&bufref)) 2105 return NULL; 2106 } 2107 #ifdef FEAT_EVAL 2108 if (aborting()) /* autocmds may abort script processing */ 2109 return NULL; 2110 #endif 2111 } 2112 2113 return buf; 2114 } 2115 2116 /* 2117 * Free the memory for the options of a buffer. 2118 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and 2119 * 'fileencoding'. 2120 */ 2121 void 2122 free_buf_options( 2123 buf_T *buf, 2124 int free_p_ff) 2125 { 2126 if (free_p_ff) 2127 { 2128 clear_string_option(&buf->b_p_fenc); 2129 clear_string_option(&buf->b_p_ff); 2130 clear_string_option(&buf->b_p_bh); 2131 clear_string_option(&buf->b_p_bt); 2132 } 2133 #ifdef FEAT_FIND_ID 2134 clear_string_option(&buf->b_p_def); 2135 clear_string_option(&buf->b_p_inc); 2136 # ifdef FEAT_EVAL 2137 clear_string_option(&buf->b_p_inex); 2138 # endif 2139 #endif 2140 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) 2141 clear_string_option(&buf->b_p_inde); 2142 clear_string_option(&buf->b_p_indk); 2143 #endif 2144 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) 2145 clear_string_option(&buf->b_p_bexpr); 2146 #endif 2147 #if defined(FEAT_CRYPT) 2148 clear_string_option(&buf->b_p_cm); 2149 #endif 2150 clear_string_option(&buf->b_p_fp); 2151 #if defined(FEAT_EVAL) 2152 clear_string_option(&buf->b_p_fex); 2153 #endif 2154 #ifdef FEAT_CRYPT 2155 clear_string_option(&buf->b_p_key); 2156 #endif 2157 clear_string_option(&buf->b_p_kp); 2158 clear_string_option(&buf->b_p_mps); 2159 clear_string_option(&buf->b_p_fo); 2160 clear_string_option(&buf->b_p_flp); 2161 clear_string_option(&buf->b_p_isk); 2162 #ifdef FEAT_VARTABS 2163 clear_string_option(&buf->b_p_vsts); 2164 vim_free(buf->b_p_vsts_nopaste); 2165 buf->b_p_vsts_nopaste = NULL; 2166 vim_free(buf->b_p_vsts_array); 2167 buf->b_p_vsts_array = NULL; 2168 clear_string_option(&buf->b_p_vts); 2169 VIM_CLEAR(buf->b_p_vts_array); 2170 #endif 2171 #ifdef FEAT_KEYMAP 2172 clear_string_option(&buf->b_p_keymap); 2173 keymap_clear(&buf->b_kmap_ga); 2174 ga_clear(&buf->b_kmap_ga); 2175 #endif 2176 #ifdef FEAT_COMMENTS 2177 clear_string_option(&buf->b_p_com); 2178 #endif 2179 #ifdef FEAT_FOLDING 2180 clear_string_option(&buf->b_p_cms); 2181 #endif 2182 clear_string_option(&buf->b_p_nf); 2183 #ifdef FEAT_SYN_HL 2184 clear_string_option(&buf->b_p_syn); 2185 clear_string_option(&buf->b_s.b_syn_isk); 2186 #endif 2187 #ifdef FEAT_SPELL 2188 clear_string_option(&buf->b_s.b_p_spc); 2189 clear_string_option(&buf->b_s.b_p_spf); 2190 vim_regfree(buf->b_s.b_cap_prog); 2191 buf->b_s.b_cap_prog = NULL; 2192 clear_string_option(&buf->b_s.b_p_spl); 2193 #endif 2194 #ifdef FEAT_SEARCHPATH 2195 clear_string_option(&buf->b_p_sua); 2196 #endif 2197 clear_string_option(&buf->b_p_ft); 2198 #ifdef FEAT_CINDENT 2199 clear_string_option(&buf->b_p_cink); 2200 clear_string_option(&buf->b_p_cino); 2201 #endif 2202 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT) 2203 clear_string_option(&buf->b_p_cinw); 2204 #endif 2205 #ifdef FEAT_INS_EXPAND 2206 clear_string_option(&buf->b_p_cpt); 2207 #endif 2208 #ifdef FEAT_COMPL_FUNC 2209 clear_string_option(&buf->b_p_cfu); 2210 clear_string_option(&buf->b_p_ofu); 2211 #endif 2212 #ifdef FEAT_QUICKFIX 2213 clear_string_option(&buf->b_p_gp); 2214 clear_string_option(&buf->b_p_mp); 2215 clear_string_option(&buf->b_p_efm); 2216 #endif 2217 clear_string_option(&buf->b_p_ep); 2218 clear_string_option(&buf->b_p_path); 2219 clear_string_option(&buf->b_p_tags); 2220 clear_string_option(&buf->b_p_tc); 2221 #ifdef FEAT_INS_EXPAND 2222 clear_string_option(&buf->b_p_dict); 2223 clear_string_option(&buf->b_p_tsr); 2224 #endif 2225 #ifdef FEAT_TEXTOBJ 2226 clear_string_option(&buf->b_p_qe); 2227 #endif 2228 buf->b_p_ar = -1; 2229 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; 2230 #ifdef FEAT_LISP 2231 clear_string_option(&buf->b_p_lw); 2232 #endif 2233 clear_string_option(&buf->b_p_bkc); 2234 clear_string_option(&buf->b_p_menc); 2235 } 2236 2237 /* 2238 * Get alternate file "n". 2239 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0. 2240 * Also set cursor column to altfpos.col if 'startofline' is not set. 2241 * if (options & GETF_SETMARK) call setpcmark() 2242 * if (options & GETF_ALT) we are jumping to an alternate file. 2243 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping 2244 * 2245 * Return FAIL for failure, OK for success. 2246 */ 2247 int 2248 buflist_getfile( 2249 int n, 2250 linenr_T lnum, 2251 int options, 2252 int forceit) 2253 { 2254 buf_T *buf; 2255 win_T *wp = NULL; 2256 pos_T *fpos; 2257 colnr_T col; 2258 2259 buf = buflist_findnr(n); 2260 if (buf == NULL) 2261 { 2262 if ((options & GETF_ALT) && n == 0) 2263 emsg(_(e_noalt)); 2264 else 2265 semsg(_("E92: Buffer %d not found"), n); 2266 return FAIL; 2267 } 2268 2269 /* if alternate file is the current buffer, nothing to do */ 2270 if (buf == curbuf) 2271 return OK; 2272 2273 if (text_locked()) 2274 { 2275 text_locked_msg(); 2276 return FAIL; 2277 } 2278 if (curbuf_locked()) 2279 return FAIL; 2280 2281 /* altfpos may be changed by getfile(), get it now */ 2282 if (lnum == 0) 2283 { 2284 fpos = buflist_findfpos(buf); 2285 lnum = fpos->lnum; 2286 col = fpos->col; 2287 } 2288 else 2289 col = 0; 2290 2291 if (options & GETF_SWITCH) 2292 { 2293 /* If 'switchbuf' contains "useopen": jump to first window containing 2294 * "buf" if one exists */ 2295 if (swb_flags & SWB_USEOPEN) 2296 wp = buf_jump_open_win(buf); 2297 2298 /* If 'switchbuf' contains "usetab": jump to first window in any tab 2299 * page containing "buf" if one exists */ 2300 if (wp == NULL && (swb_flags & SWB_USETAB)) 2301 wp = buf_jump_open_tab(buf); 2302 2303 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the 2304 * current buffer isn't empty: open new tab or window */ 2305 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB)) 2306 && !BUFEMPTY()) 2307 { 2308 if (swb_flags & SWB_NEWTAB) 2309 tabpage_new(); 2310 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0) 2311 == FAIL) 2312 return FAIL; 2313 RESET_BINDING(curwin); 2314 } 2315 } 2316 2317 ++RedrawingDisabled; 2318 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL, 2319 (options & GETF_SETMARK), lnum, forceit))) 2320 { 2321 --RedrawingDisabled; 2322 2323 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */ 2324 if (!p_sol && col != 0) 2325 { 2326 curwin->w_cursor.col = col; 2327 check_cursor_col(); 2328 curwin->w_cursor.coladd = 0; 2329 curwin->w_set_curswant = TRUE; 2330 } 2331 return OK; 2332 } 2333 --RedrawingDisabled; 2334 return FAIL; 2335 } 2336 2337 /* 2338 * go to the last know line number for the current buffer 2339 */ 2340 void 2341 buflist_getfpos(void) 2342 { 2343 pos_T *fpos; 2344 2345 fpos = buflist_findfpos(curbuf); 2346 2347 curwin->w_cursor.lnum = fpos->lnum; 2348 check_cursor_lnum(); 2349 2350 if (p_sol) 2351 curwin->w_cursor.col = 0; 2352 else 2353 { 2354 curwin->w_cursor.col = fpos->col; 2355 check_cursor_col(); 2356 curwin->w_cursor.coladd = 0; 2357 curwin->w_set_curswant = TRUE; 2358 } 2359 } 2360 2361 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO) 2362 /* 2363 * Find file in buffer list by name (it has to be for the current window). 2364 * Returns NULL if not found. 2365 */ 2366 buf_T * 2367 buflist_findname_exp(char_u *fname) 2368 { 2369 char_u *ffname; 2370 buf_T *buf = NULL; 2371 2372 /* First make the name into a full path name */ 2373 ffname = FullName_save(fname, 2374 #ifdef UNIX 2375 TRUE /* force expansion, get rid of symbolic links */ 2376 #else 2377 FALSE 2378 #endif 2379 ); 2380 if (ffname != NULL) 2381 { 2382 buf = buflist_findname(ffname); 2383 vim_free(ffname); 2384 } 2385 return buf; 2386 } 2387 #endif 2388 2389 /* 2390 * Find file in buffer list by name (it has to be for the current window). 2391 * "ffname" must have a full path. 2392 * Skips dummy buffers. 2393 * Returns NULL if not found. 2394 */ 2395 buf_T * 2396 buflist_findname(char_u *ffname) 2397 { 2398 #ifdef UNIX 2399 stat_T st; 2400 2401 if (mch_stat((char *)ffname, &st) < 0) 2402 st.st_dev = (dev_T)-1; 2403 return buflist_findname_stat(ffname, &st); 2404 } 2405 2406 /* 2407 * Same as buflist_findname(), but pass the stat structure to avoid getting it 2408 * twice for the same file. 2409 * Returns NULL if not found. 2410 */ 2411 static buf_T * 2412 buflist_findname_stat( 2413 char_u *ffname, 2414 stat_T *stp) 2415 { 2416 #endif 2417 buf_T *buf; 2418 2419 /* Start at the last buffer, expect to find a match sooner. */ 2420 for (buf = lastbuf; buf != NULL; buf = buf->b_prev) 2421 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname 2422 #ifdef UNIX 2423 , stp 2424 #endif 2425 )) 2426 return buf; 2427 return NULL; 2428 } 2429 2430 /* 2431 * Find file in buffer list by a regexp pattern. 2432 * Return fnum of the found buffer. 2433 * Return < 0 for error. 2434 */ 2435 int 2436 buflist_findpat( 2437 char_u *pattern, 2438 char_u *pattern_end, /* pointer to first char after pattern */ 2439 int unlisted, /* find unlisted buffers */ 2440 int diffmode UNUSED, /* find diff-mode buffers only */ 2441 int curtab_only) /* find buffers in current tab only */ 2442 { 2443 buf_T *buf; 2444 int match = -1; 2445 int find_listed; 2446 char_u *pat; 2447 char_u *patend; 2448 int attempt; 2449 char_u *p; 2450 int toggledollar; 2451 2452 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#')) 2453 { 2454 if (*pattern == '%') 2455 match = curbuf->b_fnum; 2456 else 2457 match = curwin->w_alt_fnum; 2458 #ifdef FEAT_DIFF 2459 if (diffmode && !diff_mode_buf(buflist_findnr(match))) 2460 match = -1; 2461 #endif 2462 } 2463 2464 /* 2465 * Try four ways of matching a listed buffer: 2466 * attempt == 0: without '^' or '$' (at any position) 2467 * attempt == 1: with '^' at start (only at position 0) 2468 * attempt == 2: with '$' at end (only match at end) 2469 * attempt == 3: with '^' at start and '$' at end (only full match) 2470 * Repeat this for finding an unlisted buffer if there was no matching 2471 * listed buffer. 2472 */ 2473 else 2474 { 2475 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); 2476 if (pat == NULL) 2477 return -1; 2478 patend = pat + STRLEN(pat) - 1; 2479 toggledollar = (patend > pat && *patend == '$'); 2480 2481 /* First try finding a listed buffer. If not found and "unlisted" 2482 * is TRUE, try finding an unlisted buffer. */ 2483 find_listed = TRUE; 2484 for (;;) 2485 { 2486 for (attempt = 0; attempt <= 3; ++attempt) 2487 { 2488 regmatch_T regmatch; 2489 2490 /* may add '^' and '$' */ 2491 if (toggledollar) 2492 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */ 2493 p = pat; 2494 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */ 2495 ++p; 2496 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0); 2497 if (regmatch.regprog == NULL) 2498 { 2499 vim_free(pat); 2500 return -1; 2501 } 2502 2503 for (buf = lastbuf; buf != NULL; buf = buf->b_prev) 2504 if (buf->b_p_bl == find_listed 2505 #ifdef FEAT_DIFF 2506 && (!diffmode || diff_mode_buf(buf)) 2507 #endif 2508 && buflist_match(®match, buf, FALSE) != NULL) 2509 { 2510 if (curtab_only) 2511 { 2512 /* Ignore the match if the buffer is not open in 2513 * the current tab. */ 2514 win_T *wp; 2515 2516 FOR_ALL_WINDOWS(wp) 2517 if (wp->w_buffer == buf) 2518 break; 2519 if (wp == NULL) 2520 continue; 2521 } 2522 if (match >= 0) /* already found a match */ 2523 { 2524 match = -2; 2525 break; 2526 } 2527 match = buf->b_fnum; /* remember first match */ 2528 } 2529 2530 vim_regfree(regmatch.regprog); 2531 if (match >= 0) /* found one match */ 2532 break; 2533 } 2534 2535 /* Only search for unlisted buffers if there was no match with 2536 * a listed buffer. */ 2537 if (!unlisted || !find_listed || match != -1) 2538 break; 2539 find_listed = FALSE; 2540 } 2541 2542 vim_free(pat); 2543 } 2544 2545 if (match == -2) 2546 semsg(_("E93: More than one match for %s"), pattern); 2547 else if (match < 0) 2548 semsg(_("E94: No matching buffer for %s"), pattern); 2549 return match; 2550 } 2551 2552 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) 2553 2554 /* 2555 * Find all buffer names that match. 2556 * For command line expansion of ":buf" and ":sbuf". 2557 * Return OK if matches found, FAIL otherwise. 2558 */ 2559 int 2560 ExpandBufnames( 2561 char_u *pat, 2562 int *num_file, 2563 char_u ***file, 2564 int options) 2565 { 2566 int count = 0; 2567 buf_T *buf; 2568 int round; 2569 char_u *p; 2570 int attempt; 2571 char_u *patc; 2572 2573 *num_file = 0; /* return values in case of FAIL */ 2574 *file = NULL; 2575 2576 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */ 2577 if (*pat == '^') 2578 { 2579 patc = alloc((unsigned)STRLEN(pat) + 11); 2580 if (patc == NULL) 2581 return FAIL; 2582 STRCPY(patc, "\\(^\\|[\\/]\\)"); 2583 STRCPY(patc + 11, pat + 1); 2584 } 2585 else 2586 patc = pat; 2587 2588 /* 2589 * attempt == 0: try match with '\<', match at start of word 2590 * attempt == 1: try match without '\<', match anywhere 2591 */ 2592 for (attempt = 0; attempt <= 1; ++attempt) 2593 { 2594 regmatch_T regmatch; 2595 2596 if (attempt > 0 && patc == pat) 2597 break; /* there was no anchor, no need to try again */ 2598 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); 2599 if (regmatch.regprog == NULL) 2600 { 2601 if (patc != pat) 2602 vim_free(patc); 2603 return FAIL; 2604 } 2605 2606 /* 2607 * round == 1: Count the matches. 2608 * round == 2: Build the array to keep the matches. 2609 */ 2610 for (round = 1; round <= 2; ++round) 2611 { 2612 count = 0; 2613 FOR_ALL_BUFFERS(buf) 2614 { 2615 if (!buf->b_p_bl) /* skip unlisted buffers */ 2616 continue; 2617 p = buflist_match(®match, buf, p_wic); 2618 if (p != NULL) 2619 { 2620 if (round == 1) 2621 ++count; 2622 else 2623 { 2624 if (options & WILD_HOME_REPLACE) 2625 p = home_replace_save(buf, p); 2626 else 2627 p = vim_strsave(p); 2628 (*file)[count++] = p; 2629 } 2630 } 2631 } 2632 if (count == 0) /* no match found, break here */ 2633 break; 2634 if (round == 1) 2635 { 2636 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); 2637 if (*file == NULL) 2638 { 2639 vim_regfree(regmatch.regprog); 2640 if (patc != pat) 2641 vim_free(patc); 2642 return FAIL; 2643 } 2644 } 2645 } 2646 vim_regfree(regmatch.regprog); 2647 if (count) /* match(es) found, break here */ 2648 break; 2649 } 2650 2651 if (patc != pat) 2652 vim_free(patc); 2653 2654 *num_file = count; 2655 return (count == 0 ? FAIL : OK); 2656 } 2657 2658 #endif /* FEAT_CMDL_COMPL */ 2659 2660 /* 2661 * Check for a match on the file name for buffer "buf" with regprog "prog". 2662 */ 2663 static char_u * 2664 buflist_match( 2665 regmatch_T *rmp, 2666 buf_T *buf, 2667 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */ 2668 { 2669 char_u *match; 2670 2671 /* First try the short file name, then the long file name. */ 2672 match = fname_match(rmp, buf->b_sfname, ignore_case); 2673 if (match == NULL) 2674 match = fname_match(rmp, buf->b_ffname, ignore_case); 2675 2676 return match; 2677 } 2678 2679 /* 2680 * Try matching the regexp in "prog" with file name "name". 2681 * Return "name" when there is a match, NULL when not. 2682 */ 2683 static char_u * 2684 fname_match( 2685 regmatch_T *rmp, 2686 char_u *name, 2687 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */ 2688 { 2689 char_u *match = NULL; 2690 char_u *p; 2691 2692 if (name != NULL) 2693 { 2694 /* Ignore case when 'fileignorecase' or the argument is set. */ 2695 rmp->rm_ic = p_fic || ignore_case; 2696 if (vim_regexec(rmp, name, (colnr_T)0)) 2697 match = name; 2698 else 2699 { 2700 /* Replace $(HOME) with '~' and try matching again. */ 2701 p = home_replace_save(NULL, name); 2702 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) 2703 match = name; 2704 vim_free(p); 2705 } 2706 } 2707 2708 return match; 2709 } 2710 2711 /* 2712 * Find a file in the buffer list by buffer number. 2713 */ 2714 buf_T * 2715 buflist_findnr(int nr) 2716 { 2717 char_u key[VIM_SIZEOF_INT * 2 + 1]; 2718 hashitem_T *hi; 2719 2720 if (nr == 0) 2721 nr = curwin->w_alt_fnum; 2722 sprintf((char *)key, "%x", nr); 2723 hi = hash_find(&buf_hashtab, key); 2724 2725 if (!HASHITEM_EMPTY(hi)) 2726 return (buf_T *)(hi->hi_key 2727 - ((unsigned)(curbuf->b_key - (char_u *)curbuf))); 2728 return NULL; 2729 } 2730 2731 /* 2732 * Get name of file 'n' in the buffer list. 2733 * When the file has no name an empty string is returned. 2734 * home_replace() is used to shorten the file name (used for marks). 2735 * Returns a pointer to allocated memory, of NULL when failed. 2736 */ 2737 char_u * 2738 buflist_nr2name( 2739 int n, 2740 int fullname, 2741 int helptail) /* for help buffers return tail only */ 2742 { 2743 buf_T *buf; 2744 2745 buf = buflist_findnr(n); 2746 if (buf == NULL) 2747 return NULL; 2748 return home_replace_save(helptail ? buf : NULL, 2749 fullname ? buf->b_ffname : buf->b_fname); 2750 } 2751 2752 /* 2753 * Set the "lnum" and "col" for the buffer "buf" and the current window. 2754 * When "copy_options" is TRUE save the local window option values. 2755 * When "lnum" is 0 only do the options. 2756 */ 2757 static void 2758 buflist_setfpos( 2759 buf_T *buf, 2760 win_T *win, 2761 linenr_T lnum, 2762 colnr_T col, 2763 int copy_options) 2764 { 2765 wininfo_T *wip; 2766 2767 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) 2768 if (wip->wi_win == win) 2769 break; 2770 if (wip == NULL) 2771 { 2772 /* allocate a new entry */ 2773 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T)); 2774 if (wip == NULL) 2775 return; 2776 wip->wi_win = win; 2777 if (lnum == 0) /* set lnum even when it's 0 */ 2778 lnum = 1; 2779 } 2780 else 2781 { 2782 /* remove the entry from the list */ 2783 if (wip->wi_prev) 2784 wip->wi_prev->wi_next = wip->wi_next; 2785 else 2786 buf->b_wininfo = wip->wi_next; 2787 if (wip->wi_next) 2788 wip->wi_next->wi_prev = wip->wi_prev; 2789 if (copy_options && wip->wi_optset) 2790 { 2791 clear_winopt(&wip->wi_opt); 2792 #ifdef FEAT_FOLDING 2793 deleteFoldRecurse(&wip->wi_folds); 2794 #endif 2795 } 2796 } 2797 if (lnum != 0) 2798 { 2799 wip->wi_fpos.lnum = lnum; 2800 wip->wi_fpos.col = col; 2801 } 2802 if (copy_options) 2803 { 2804 /* Save the window-specific option values. */ 2805 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); 2806 #ifdef FEAT_FOLDING 2807 wip->wi_fold_manual = win->w_fold_manual; 2808 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); 2809 #endif 2810 wip->wi_optset = TRUE; 2811 } 2812 2813 /* insert the entry in front of the list */ 2814 wip->wi_next = buf->b_wininfo; 2815 buf->b_wininfo = wip; 2816 wip->wi_prev = NULL; 2817 if (wip->wi_next) 2818 wip->wi_next->wi_prev = wip; 2819 2820 return; 2821 } 2822 2823 #ifdef FEAT_DIFF 2824 /* 2825 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab 2826 * page. That's because a diff is local to a tab page. 2827 */ 2828 static int 2829 wininfo_other_tab_diff(wininfo_T *wip) 2830 { 2831 win_T *wp; 2832 2833 if (wip->wi_opt.wo_diff) 2834 { 2835 FOR_ALL_WINDOWS(wp) 2836 /* return FALSE when it's a window in the current tab page, thus 2837 * the buffer was in diff mode here */ 2838 if (wip->wi_win == wp) 2839 return FALSE; 2840 return TRUE; 2841 } 2842 return FALSE; 2843 } 2844 #endif 2845 2846 /* 2847 * Find info for the current window in buffer "buf". 2848 * If not found, return the info for the most recently used window. 2849 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in 2850 * another tab page. 2851 * Returns NULL when there isn't any info. 2852 */ 2853 static wininfo_T * 2854 find_wininfo( 2855 buf_T *buf, 2856 int skip_diff_buffer UNUSED) 2857 { 2858 wininfo_T *wip; 2859 2860 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) 2861 if (wip->wi_win == curwin 2862 #ifdef FEAT_DIFF 2863 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip)) 2864 #endif 2865 ) 2866 break; 2867 2868 /* If no wininfo for curwin, use the first in the list (that doesn't have 2869 * 'diff' set and is in another tab page). */ 2870 if (wip == NULL) 2871 { 2872 #ifdef FEAT_DIFF 2873 if (skip_diff_buffer) 2874 { 2875 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) 2876 if (!wininfo_other_tab_diff(wip)) 2877 break; 2878 } 2879 else 2880 #endif 2881 wip = buf->b_wininfo; 2882 } 2883 return wip; 2884 } 2885 2886 /* 2887 * Reset the local window options to the values last used in this window. 2888 * If the buffer wasn't used in this window before, use the values from 2889 * the most recently used window. If the values were never set, use the 2890 * global values for the window. 2891 */ 2892 void 2893 get_winopts(buf_T *buf) 2894 { 2895 wininfo_T *wip; 2896 2897 clear_winopt(&curwin->w_onebuf_opt); 2898 #ifdef FEAT_FOLDING 2899 clearFolding(curwin); 2900 #endif 2901 2902 wip = find_wininfo(buf, TRUE); 2903 if (wip != NULL && wip->wi_win != NULL 2904 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf) 2905 { 2906 /* The buffer is currently displayed in the window: use the actual 2907 * option values instead of the saved (possibly outdated) values. */ 2908 win_T *wp = wip->wi_win; 2909 2910 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt); 2911 #ifdef FEAT_FOLDING 2912 curwin->w_fold_manual = wp->w_fold_manual; 2913 curwin->w_foldinvalid = TRUE; 2914 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds); 2915 #endif 2916 } 2917 else if (wip != NULL && wip->wi_optset) 2918 { 2919 /* the buffer was displayed in the current window earlier */ 2920 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); 2921 #ifdef FEAT_FOLDING 2922 curwin->w_fold_manual = wip->wi_fold_manual; 2923 curwin->w_foldinvalid = TRUE; 2924 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); 2925 #endif 2926 } 2927 else 2928 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); 2929 2930 #ifdef FEAT_FOLDING 2931 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */ 2932 if (p_fdls >= 0) 2933 curwin->w_p_fdl = p_fdls; 2934 #endif 2935 #ifdef FEAT_SYN_HL 2936 check_colorcolumn(curwin); 2937 #endif 2938 } 2939 2940 /* 2941 * Find the position (lnum and col) for the buffer 'buf' for the current 2942 * window. 2943 * Returns a pointer to no_position if no position is found. 2944 */ 2945 pos_T * 2946 buflist_findfpos(buf_T *buf) 2947 { 2948 wininfo_T *wip; 2949 static pos_T no_position = {1, 0, 0}; 2950 2951 wip = find_wininfo(buf, FALSE); 2952 if (wip != NULL) 2953 return &(wip->wi_fpos); 2954 else 2955 return &no_position; 2956 } 2957 2958 /* 2959 * Find the lnum for the buffer 'buf' for the current window. 2960 */ 2961 linenr_T 2962 buflist_findlnum(buf_T *buf) 2963 { 2964 return buflist_findfpos(buf)->lnum; 2965 } 2966 2967 /* 2968 * List all known file names (for :files and :buffers command). 2969 */ 2970 void 2971 buflist_list(exarg_T *eap) 2972 { 2973 buf_T *buf; 2974 int len; 2975 int i; 2976 int ro_char; 2977 int changed_char; 2978 #ifdef FEAT_TERMINAL 2979 int job_running; 2980 int job_none_open; 2981 #endif 2982 2983 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next) 2984 { 2985 #ifdef FEAT_TERMINAL 2986 job_running = term_job_running(buf->b_term); 2987 job_none_open = job_running && term_none_open(buf->b_term); 2988 #endif 2989 /* skip unlisted buffers, unless ! was used */ 2990 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u')) 2991 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl) 2992 || (vim_strchr(eap->arg, '+') 2993 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf))) 2994 || (vim_strchr(eap->arg, 'a') 2995 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0)) 2996 || (vim_strchr(eap->arg, 'h') 2997 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0)) 2998 #ifdef FEAT_TERMINAL 2999 || (vim_strchr(eap->arg, 'R') 3000 && (!job_running || (job_running && job_none_open))) 3001 || (vim_strchr(eap->arg, '?') 3002 && (!job_running || (job_running && !job_none_open))) 3003 || (vim_strchr(eap->arg, 'F') 3004 && (job_running || buf->b_term == NULL)) 3005 #endif 3006 || (vim_strchr(eap->arg, '-') && buf->b_p_ma) 3007 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro) 3008 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR)) 3009 || (vim_strchr(eap->arg, '%') && buf != curbuf) 3010 || (vim_strchr(eap->arg, '#') 3011 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum))) 3012 continue; 3013 if (buf_spname(buf) != NULL) 3014 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); 3015 else 3016 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE); 3017 if (message_filtered(NameBuff)) 3018 continue; 3019 3020 changed_char = (buf->b_flags & BF_READERR) ? 'x' 3021 : (bufIsChanged(buf) ? '+' : ' '); 3022 #ifdef FEAT_TERMINAL 3023 if (term_job_running(buf->b_term)) 3024 { 3025 if (term_none_open(buf->b_term)) 3026 ro_char = '?'; 3027 else 3028 ro_char = 'R'; 3029 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid 3030 * closing, but it's not actually changed. */ 3031 } 3032 else if (buf->b_term != NULL) 3033 ro_char = 'F'; 3034 else 3035 #endif 3036 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '); 3037 3038 msg_putchar('\n'); 3039 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"", 3040 buf->b_fnum, 3041 buf->b_p_bl ? ' ' : 'u', 3042 buf == curbuf ? '%' : 3043 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), 3044 buf->b_ml.ml_mfp == NULL ? ' ' : 3045 (buf->b_nwindows == 0 ? 'h' : 'a'), 3046 ro_char, 3047 changed_char, 3048 NameBuff); 3049 if (len > IOSIZE - 20) 3050 len = IOSIZE - 20; 3051 3052 /* put "line 999" in column 40 or after the file name */ 3053 i = 40 - vim_strsize(IObuff); 3054 do 3055 IObuff[len++] = ' '; 3056 while (--i > 0 && len < IOSIZE - 18); 3057 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len), 3058 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum 3059 : (long)buflist_findlnum(buf)); 3060 msg_outtrans(IObuff); 3061 out_flush(); /* output one line at a time */ 3062 ui_breakcheck(); 3063 } 3064 } 3065 3066 /* 3067 * Get file name and line number for file 'fnum'. 3068 * Used by DoOneCmd() for translating '%' and '#'. 3069 * Used by insert_reg() and cmdline_paste() for '#' register. 3070 * Return FAIL if not found, OK for success. 3071 */ 3072 int 3073 buflist_name_nr( 3074 int fnum, 3075 char_u **fname, 3076 linenr_T *lnum) 3077 { 3078 buf_T *buf; 3079 3080 buf = buflist_findnr(fnum); 3081 if (buf == NULL || buf->b_fname == NULL) 3082 return FAIL; 3083 3084 *fname = buf->b_fname; 3085 *lnum = buflist_findlnum(buf); 3086 3087 return OK; 3088 } 3089 3090 /* 3091 * Set the file name for "buf"' to "ffname_arg", short file name to 3092 * "sfname_arg". 3093 * The file name with the full path is also remembered, for when :cd is used. 3094 * Returns FAIL for failure (file name already in use by other buffer) 3095 * OK otherwise. 3096 */ 3097 int 3098 setfname( 3099 buf_T *buf, 3100 char_u *ffname_arg, 3101 char_u *sfname_arg, 3102 int message) /* give message when buffer already exists */ 3103 { 3104 char_u *ffname = ffname_arg; 3105 char_u *sfname = sfname_arg; 3106 buf_T *obuf = NULL; 3107 #ifdef UNIX 3108 stat_T st; 3109 #endif 3110 3111 if (ffname == NULL || *ffname == NUL) 3112 { 3113 /* Removing the name. */ 3114 if (buf->b_sfname != buf->b_ffname) 3115 VIM_CLEAR(buf->b_sfname); 3116 else 3117 buf->b_sfname = NULL; 3118 VIM_CLEAR(buf->b_ffname); 3119 #ifdef UNIX 3120 st.st_dev = (dev_T)-1; 3121 #endif 3122 } 3123 else 3124 { 3125 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */ 3126 if (ffname == NULL) /* out of memory */ 3127 return FAIL; 3128 3129 /* 3130 * if the file name is already used in another buffer: 3131 * - if the buffer is loaded, fail 3132 * - if the buffer is not loaded, delete it from the list 3133 */ 3134 #ifdef UNIX 3135 if (mch_stat((char *)ffname, &st) < 0) 3136 st.st_dev = (dev_T)-1; 3137 #endif 3138 if (!(buf->b_flags & BF_DUMMY)) 3139 #ifdef UNIX 3140 obuf = buflist_findname_stat(ffname, &st); 3141 #else 3142 obuf = buflist_findname(ffname); 3143 #endif 3144 if (obuf != NULL && obuf != buf) 3145 { 3146 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */ 3147 { 3148 if (message) 3149 emsg(_("E95: Buffer with this name already exists")); 3150 vim_free(ffname); 3151 return FAIL; 3152 } 3153 /* delete from the list */ 3154 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE); 3155 } 3156 sfname = vim_strsave(sfname); 3157 if (ffname == NULL || sfname == NULL) 3158 { 3159 vim_free(sfname); 3160 vim_free(ffname); 3161 return FAIL; 3162 } 3163 #ifdef USE_FNAME_CASE 3164 fname_case(sfname, 0); /* set correct case for short file name */ 3165 #endif 3166 if (buf->b_sfname != buf->b_ffname) 3167 vim_free(buf->b_sfname); 3168 vim_free(buf->b_ffname); 3169 buf->b_ffname = ffname; 3170 buf->b_sfname = sfname; 3171 } 3172 buf->b_fname = buf->b_sfname; 3173 #ifdef UNIX 3174 if (st.st_dev == (dev_T)-1) 3175 buf->b_dev_valid = FALSE; 3176 else 3177 { 3178 buf->b_dev_valid = TRUE; 3179 buf->b_dev = st.st_dev; 3180 buf->b_ino = st.st_ino; 3181 } 3182 #endif 3183 3184 buf->b_shortname = FALSE; 3185 3186 buf_name_changed(buf); 3187 return OK; 3188 } 3189 3190 /* 3191 * Crude way of changing the name of a buffer. Use with care! 3192 * The name should be relative to the current directory. 3193 */ 3194 void 3195 buf_set_name(int fnum, char_u *name) 3196 { 3197 buf_T *buf; 3198 3199 buf = buflist_findnr(fnum); 3200 if (buf != NULL) 3201 { 3202 if (buf->b_sfname != buf->b_ffname) 3203 vim_free(buf->b_sfname); 3204 vim_free(buf->b_ffname); 3205 buf->b_ffname = vim_strsave(name); 3206 buf->b_sfname = NULL; 3207 /* Allocate ffname and expand into full path. Also resolves .lnk 3208 * files on Win32. */ 3209 fname_expand(buf, &buf->b_ffname, &buf->b_sfname); 3210 buf->b_fname = buf->b_sfname; 3211 } 3212 } 3213 3214 /* 3215 * Take care of what needs to be done when the name of buffer "buf" has 3216 * changed. 3217 */ 3218 void 3219 buf_name_changed(buf_T *buf) 3220 { 3221 /* 3222 * If the file name changed, also change the name of the swapfile 3223 */ 3224 if (buf->b_ml.ml_mfp != NULL) 3225 ml_setname(buf); 3226 3227 if (curwin->w_buffer == buf) 3228 check_arg_idx(curwin); /* check file name for arg list */ 3229 #ifdef FEAT_TITLE 3230 maketitle(); /* set window title */ 3231 #endif 3232 status_redraw_all(); /* status lines need to be redrawn */ 3233 fmarks_check_names(buf); /* check named file marks */ 3234 ml_timestamp(buf); /* reset timestamp */ 3235 } 3236 3237 /* 3238 * set alternate file name for current window 3239 * 3240 * Used by do_one_cmd(), do_write() and do_ecmd(). 3241 * Return the buffer. 3242 */ 3243 buf_T * 3244 setaltfname( 3245 char_u *ffname, 3246 char_u *sfname, 3247 linenr_T lnum) 3248 { 3249 buf_T *buf; 3250 3251 /* Create a buffer. 'buflisted' is not set if it's a new buffer */ 3252 buf = buflist_new(ffname, sfname, lnum, 0); 3253 if (buf != NULL && !cmdmod.keepalt) 3254 curwin->w_alt_fnum = buf->b_fnum; 3255 return buf; 3256 } 3257 3258 /* 3259 * Get alternate file name for current window. 3260 * Return NULL if there isn't any, and give error message if requested. 3261 */ 3262 char_u * 3263 getaltfname( 3264 int errmsg) /* give error message */ 3265 { 3266 char_u *fname; 3267 linenr_T dummy; 3268 3269 if (buflist_name_nr(0, &fname, &dummy) == FAIL) 3270 { 3271 if (errmsg) 3272 emsg(_(e_noalt)); 3273 return NULL; 3274 } 3275 return fname; 3276 } 3277 3278 /* 3279 * Add a file name to the buflist and return its number. 3280 * Uses same flags as buflist_new(), except BLN_DUMMY. 3281 * 3282 * used by qf_init(), main() and doarglist() 3283 */ 3284 int 3285 buflist_add(char_u *fname, int flags) 3286 { 3287 buf_T *buf; 3288 3289 buf = buflist_new(fname, NULL, (linenr_T)0, flags); 3290 if (buf != NULL) 3291 return buf->b_fnum; 3292 return 0; 3293 } 3294 3295 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) 3296 /* 3297 * Adjust slashes in file names. Called after 'shellslash' was set. 3298 */ 3299 void 3300 buflist_slash_adjust(void) 3301 { 3302 buf_T *bp; 3303 3304 FOR_ALL_BUFFERS(bp) 3305 { 3306 if (bp->b_ffname != NULL) 3307 slash_adjust(bp->b_ffname); 3308 if (bp->b_sfname != NULL) 3309 slash_adjust(bp->b_sfname); 3310 } 3311 } 3312 #endif 3313 3314 /* 3315 * Set alternate cursor position for the current buffer and window "win". 3316 * Also save the local window option values. 3317 */ 3318 void 3319 buflist_altfpos(win_T *win) 3320 { 3321 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE); 3322 } 3323 3324 /* 3325 * Return TRUE if 'ffname' is not the same file as current file. 3326 * Fname must have a full path (expanded by mch_FullName()). 3327 */ 3328 int 3329 otherfile(char_u *ffname) 3330 { 3331 return otherfile_buf(curbuf, ffname 3332 #ifdef UNIX 3333 , NULL 3334 #endif 3335 ); 3336 } 3337 3338 static int 3339 otherfile_buf( 3340 buf_T *buf, 3341 char_u *ffname 3342 #ifdef UNIX 3343 , stat_T *stp 3344 #endif 3345 ) 3346 { 3347 /* no name is different */ 3348 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) 3349 return TRUE; 3350 if (fnamecmp(ffname, buf->b_ffname) == 0) 3351 return FALSE; 3352 #ifdef UNIX 3353 { 3354 stat_T st; 3355 3356 /* If no stat_T given, get it now */ 3357 if (stp == NULL) 3358 { 3359 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) 3360 st.st_dev = (dev_T)-1; 3361 stp = &st; 3362 } 3363 /* Use dev/ino to check if the files are the same, even when the names 3364 * are different (possible with links). Still need to compare the 3365 * name above, for when the file doesn't exist yet. 3366 * Problem: The dev/ino changes when a file is deleted (and created 3367 * again) and remains the same when renamed/moved. We don't want to 3368 * mch_stat() each buffer each time, that would be too slow. Get the 3369 * dev/ino again when they appear to match, but not when they appear 3370 * to be different: Could skip a buffer when it's actually the same 3371 * file. */ 3372 if (buf_same_ino(buf, stp)) 3373 { 3374 buf_setino(buf); 3375 if (buf_same_ino(buf, stp)) 3376 return FALSE; 3377 } 3378 } 3379 #endif 3380 return TRUE; 3381 } 3382 3383 #if defined(UNIX) || defined(PROTO) 3384 /* 3385 * Set inode and device number for a buffer. 3386 * Must always be called when b_fname is changed!. 3387 */ 3388 void 3389 buf_setino(buf_T *buf) 3390 { 3391 stat_T st; 3392 3393 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) 3394 { 3395 buf->b_dev_valid = TRUE; 3396 buf->b_dev = st.st_dev; 3397 buf->b_ino = st.st_ino; 3398 } 3399 else 3400 buf->b_dev_valid = FALSE; 3401 } 3402 3403 /* 3404 * Return TRUE if dev/ino in buffer "buf" matches with "stp". 3405 */ 3406 static int 3407 buf_same_ino( 3408 buf_T *buf, 3409 stat_T *stp) 3410 { 3411 return (buf->b_dev_valid 3412 && stp->st_dev == buf->b_dev 3413 && stp->st_ino == buf->b_ino); 3414 } 3415 #endif 3416 3417 /* 3418 * Print info about the current buffer. 3419 */ 3420 void 3421 fileinfo( 3422 int fullname, /* when non-zero print full path */ 3423 int shorthelp, 3424 int dont_truncate) 3425 { 3426 char_u *name; 3427 int n; 3428 char *p; 3429 char *buffer; 3430 size_t len; 3431 3432 buffer = (char *)alloc(IOSIZE); 3433 if (buffer == NULL) 3434 return; 3435 3436 if (fullname > 1) /* 2 CTRL-G: include buffer number */ 3437 { 3438 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); 3439 p = buffer + STRLEN(buffer); 3440 } 3441 else 3442 p = buffer; 3443 3444 *p++ = '"'; 3445 if (buf_spname(curbuf) != NULL) 3446 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1); 3447 else 3448 { 3449 if (!fullname && curbuf->b_fname != NULL) 3450 name = curbuf->b_fname; 3451 else 3452 name = curbuf->b_ffname; 3453 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p, 3454 (int)(IOSIZE - (p - buffer)), TRUE); 3455 } 3456 3457 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s", 3458 curbufIsChanged() ? (shortmess(SHM_MOD) 3459 ? " [+]" : _(" [Modified]")) : " ", 3460 (curbuf->b_flags & BF_NOTEDITED) 3461 #ifdef FEAT_QUICKFIX 3462 && !bt_dontwrite(curbuf) 3463 #endif 3464 ? _("[Not edited]") : "", 3465 (curbuf->b_flags & BF_NEW) 3466 #ifdef FEAT_QUICKFIX 3467 && !bt_dontwrite(curbuf) 3468 #endif 3469 ? _("[New file]") : "", 3470 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", 3471 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]") 3472 : _("[readonly]")) : "", 3473 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) 3474 || curbuf->b_p_ro) ? 3475 " " : ""); 3476 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100 3477 * causes an overflow, thus for large numbers divide instead. */ 3478 if (curwin->w_cursor.lnum > 1000000L) 3479 n = (int)(((long)curwin->w_cursor.lnum) / 3480 ((long)curbuf->b_ml.ml_line_count / 100L)); 3481 else 3482 n = (int)(((long)curwin->w_cursor.lnum * 100L) / 3483 (long)curbuf->b_ml.ml_line_count); 3484 if (curbuf->b_ml.ml_flags & ML_EMPTY) 3485 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg)); 3486 #ifdef FEAT_CMDL_INFO 3487 else if (p_ru) 3488 /* Current line and column are already on the screen -- webb */ 3489 vim_snprintf_add(buffer, IOSIZE, 3490 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--", 3491 curbuf->b_ml.ml_line_count), 3492 (long)curbuf->b_ml.ml_line_count, n); 3493 #endif 3494 else 3495 { 3496 vim_snprintf_add(buffer, IOSIZE, 3497 _("line %ld of %ld --%d%%-- col "), 3498 (long)curwin->w_cursor.lnum, 3499 (long)curbuf->b_ml.ml_line_count, 3500 n); 3501 validate_virtcol(); 3502 len = STRLEN(buffer); 3503 col_print((char_u *)buffer + len, IOSIZE - len, 3504 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); 3505 } 3506 3507 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE, 3508 !shortmess(SHM_FILE)); 3509 3510 if (dont_truncate) 3511 { 3512 /* Temporarily set msg_scroll to avoid the message being truncated. 3513 * First call msg_start() to get the message in the right place. */ 3514 msg_start(); 3515 n = msg_scroll; 3516 msg_scroll = TRUE; 3517 msg(buffer); 3518 msg_scroll = n; 3519 } 3520 else 3521 { 3522 p = (char *)msg_trunc_attr(buffer, FALSE, 0); 3523 if (restart_edit != 0 || (msg_scrolled && !need_wait_return)) 3524 /* Need to repeat the message after redrawing when: 3525 * - When restart_edit is set (otherwise there will be a delay 3526 * before redrawing). 3527 * - When the screen was scrolled but there is no wait-return 3528 * prompt. */ 3529 set_keep_msg((char_u *)p, 0); 3530 } 3531 3532 vim_free(buffer); 3533 } 3534 3535 void 3536 col_print( 3537 char_u *buf, 3538 size_t buflen, 3539 int col, 3540 int vcol) 3541 { 3542 if (col == vcol) 3543 vim_snprintf((char *)buf, buflen, "%d", col); 3544 else 3545 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); 3546 } 3547 3548 #if defined(FEAT_TITLE) || defined(PROTO) 3549 static char_u *lasttitle = NULL; 3550 static char_u *lasticon = NULL; 3551 3552 /* 3553 * Put the file name in the title bar and icon of the window. 3554 */ 3555 void 3556 maketitle(void) 3557 { 3558 char_u *p; 3559 char_u *title_str = NULL; 3560 char_u *icon_str = NULL; 3561 int maxlen = 0; 3562 int len; 3563 int mustset; 3564 char_u buf[IOSIZE]; 3565 int off; 3566 3567 if (!redrawing()) 3568 { 3569 /* Postpone updating the title when 'lazyredraw' is set. */ 3570 need_maketitle = TRUE; 3571 return; 3572 } 3573 3574 need_maketitle = FALSE; 3575 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL) 3576 return; // nothing to do 3577 3578 if (p_title) 3579 { 3580 if (p_titlelen > 0) 3581 { 3582 maxlen = p_titlelen * Columns / 100; 3583 if (maxlen < 10) 3584 maxlen = 10; 3585 } 3586 3587 title_str = buf; 3588 if (*p_titlestring != NUL) 3589 { 3590 #ifdef FEAT_STL_OPT 3591 if (stl_syntax & STL_IN_TITLE) 3592 { 3593 int use_sandbox = FALSE; 3594 int save_called_emsg = called_emsg; 3595 3596 # ifdef FEAT_EVAL 3597 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0); 3598 # endif 3599 called_emsg = FALSE; 3600 build_stl_str_hl(curwin, title_str, sizeof(buf), 3601 p_titlestring, use_sandbox, 3602 0, maxlen, NULL, NULL); 3603 if (called_emsg) 3604 set_string_option_direct((char_u *)"titlestring", -1, 3605 (char_u *)"", OPT_FREE, SID_ERROR); 3606 called_emsg |= save_called_emsg; 3607 } 3608 else 3609 #endif 3610 title_str = p_titlestring; 3611 } 3612 else 3613 { 3614 /* format: "fname + (path) (1 of 2) - VIM" */ 3615 3616 #define SPACE_FOR_FNAME (IOSIZE - 100) 3617 #define SPACE_FOR_DIR (IOSIZE - 20) 3618 #define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */ 3619 if (curbuf->b_fname == NULL) 3620 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME); 3621 #ifdef FEAT_TERMINAL 3622 else if (curbuf->b_term != NULL) 3623 { 3624 vim_strncpy(buf, term_get_status_text(curbuf->b_term), 3625 SPACE_FOR_FNAME); 3626 } 3627 #endif 3628 else 3629 { 3630 p = transstr(gettail(curbuf->b_fname)); 3631 vim_strncpy(buf, p, SPACE_FOR_FNAME); 3632 vim_free(p); 3633 } 3634 3635 #ifdef FEAT_TERMINAL 3636 if (curbuf->b_term == NULL) 3637 #endif 3638 switch (bufIsChanged(curbuf) 3639 + (curbuf->b_p_ro * 2) 3640 + (!curbuf->b_p_ma * 4)) 3641 { 3642 case 1: STRCAT(buf, " +"); break; 3643 case 2: STRCAT(buf, " ="); break; 3644 case 3: STRCAT(buf, " =+"); break; 3645 case 4: 3646 case 6: STRCAT(buf, " -"); break; 3647 case 5: 3648 case 7: STRCAT(buf, " -+"); break; 3649 } 3650 3651 if (curbuf->b_fname != NULL 3652 #ifdef FEAT_TERMINAL 3653 && curbuf->b_term == NULL 3654 #endif 3655 ) 3656 { 3657 /* Get path of file, replace home dir with ~ */ 3658 off = (int)STRLEN(buf); 3659 buf[off++] = ' '; 3660 buf[off++] = '('; 3661 home_replace(curbuf, curbuf->b_ffname, 3662 buf + off, SPACE_FOR_DIR - off, TRUE); 3663 #ifdef BACKSLASH_IN_FILENAME 3664 /* avoid "c:/name" to be reduced to "c" */ 3665 if (isalpha(buf[off]) && buf[off + 1] == ':') 3666 off += 2; 3667 #endif 3668 /* remove the file name */ 3669 p = gettail_sep(buf + off); 3670 if (p == buf + off) 3671 { 3672 /* must be a help buffer */ 3673 vim_strncpy(buf + off, (char_u *)_("help"), 3674 (size_t)(SPACE_FOR_DIR - off - 1)); 3675 } 3676 else 3677 *p = NUL; 3678 3679 /* Translate unprintable chars and concatenate. Keep some 3680 * room for the server name. When there is no room (very long 3681 * file name) use (...). */ 3682 if (off < SPACE_FOR_DIR) 3683 { 3684 p = transstr(buf + off); 3685 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off)); 3686 vim_free(p); 3687 } 3688 else 3689 { 3690 vim_strncpy(buf + off, (char_u *)"...", 3691 (size_t)(SPACE_FOR_ARGNR - off)); 3692 } 3693 STRCAT(buf, ")"); 3694 } 3695 3696 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); 3697 3698 #if defined(FEAT_CLIENTSERVER) 3699 if (serverName != NULL) 3700 { 3701 STRCAT(buf, " - "); 3702 vim_strcat(buf, serverName, IOSIZE); 3703 } 3704 else 3705 #endif 3706 STRCAT(buf, " - VIM"); 3707 3708 if (maxlen > 0) 3709 { 3710 /* make it shorter by removing a bit in the middle */ 3711 if (vim_strsize(buf) > maxlen) 3712 trunc_string(buf, buf, maxlen, IOSIZE); 3713 } 3714 } 3715 } 3716 mustset = value_changed(title_str, &lasttitle); 3717 3718 if (p_icon) 3719 { 3720 icon_str = buf; 3721 if (*p_iconstring != NUL) 3722 { 3723 #ifdef FEAT_STL_OPT 3724 if (stl_syntax & STL_IN_ICON) 3725 { 3726 int use_sandbox = FALSE; 3727 int save_called_emsg = called_emsg; 3728 3729 # ifdef FEAT_EVAL 3730 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0); 3731 # endif 3732 called_emsg = FALSE; 3733 build_stl_str_hl(curwin, icon_str, sizeof(buf), 3734 p_iconstring, use_sandbox, 3735 0, 0, NULL, NULL); 3736 if (called_emsg) 3737 set_string_option_direct((char_u *)"iconstring", -1, 3738 (char_u *)"", OPT_FREE, SID_ERROR); 3739 called_emsg |= save_called_emsg; 3740 } 3741 else 3742 #endif 3743 icon_str = p_iconstring; 3744 } 3745 else 3746 { 3747 if (buf_spname(curbuf) != NULL) 3748 p = buf_spname(curbuf); 3749 else /* use file name only in icon */ 3750 p = gettail(curbuf->b_ffname); 3751 *icon_str = NUL; 3752 /* Truncate name at 100 bytes. */ 3753 len = (int)STRLEN(p); 3754 if (len > 100) 3755 { 3756 len -= 100; 3757 if (has_mbyte) 3758 len += (*mb_tail_off)(p, p + len) + 1; 3759 p += len; 3760 } 3761 STRCPY(icon_str, p); 3762 trans_characters(icon_str, IOSIZE); 3763 } 3764 } 3765 3766 mustset |= value_changed(icon_str, &lasticon); 3767 3768 if (mustset) 3769 resettitle(); 3770 } 3771 3772 /* 3773 * Used for title and icon: Check if "str" differs from "*last". Set "*last" 3774 * from "str" if it does. 3775 * Return TRUE if resettitle() is to be called. 3776 */ 3777 static int 3778 value_changed(char_u *str, char_u **last) 3779 { 3780 if ((str == NULL) != (*last == NULL) 3781 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) 3782 { 3783 vim_free(*last); 3784 if (str == NULL) 3785 { 3786 *last = NULL; 3787 mch_restore_title( 3788 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON); 3789 } 3790 else 3791 { 3792 *last = vim_strsave(str); 3793 return TRUE; 3794 } 3795 } 3796 return FALSE; 3797 } 3798 3799 /* 3800 * Put current window title back (used after calling a shell) 3801 */ 3802 void 3803 resettitle(void) 3804 { 3805 mch_settitle(lasttitle, lasticon); 3806 } 3807 3808 # if defined(EXITFREE) || defined(PROTO) 3809 void 3810 free_titles(void) 3811 { 3812 vim_free(lasttitle); 3813 vim_free(lasticon); 3814 } 3815 # endif 3816 3817 #endif /* FEAT_TITLE */ 3818 3819 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO) 3820 /* 3821 * Build a string from the status line items in "fmt". 3822 * Return length of string in screen cells. 3823 * 3824 * Normally works for window "wp", except when working for 'tabline' then it 3825 * is "curwin". 3826 * 3827 * Items are drawn interspersed with the text that surrounds it 3828 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation 3829 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional 3830 * 3831 * If maxwidth is not zero, the string will be filled at any middle marker 3832 * or truncated if too long, fillchar is used for all whitespace. 3833 */ 3834 int 3835 build_stl_str_hl( 3836 win_T *wp, 3837 char_u *out, /* buffer to write into != NameBuff */ 3838 size_t outlen, /* length of out[] */ 3839 char_u *fmt, 3840 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */ 3841 int fillchar, 3842 int maxwidth, 3843 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */ 3844 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */ 3845 { 3846 linenr_T lnum; 3847 size_t len; 3848 char_u *p; 3849 char_u *s; 3850 char_u *t; 3851 int byteval; 3852 #ifdef FEAT_EVAL 3853 win_T *save_curwin; 3854 buf_T *save_curbuf; 3855 #endif 3856 int empty_line; 3857 colnr_T virtcol; 3858 long l; 3859 long n; 3860 int prevchar_isflag; 3861 int prevchar_isitem; 3862 int itemisflag; 3863 int fillable; 3864 char_u *str; 3865 long num; 3866 int width; 3867 int itemcnt; 3868 int curitem; 3869 int group_end_userhl; 3870 int group_start_userhl; 3871 int groupitem[STL_MAX_ITEM]; 3872 int groupdepth; 3873 struct stl_item 3874 { 3875 char_u *start; 3876 int minwid; 3877 int maxwid; 3878 enum 3879 { 3880 Normal, 3881 Empty, 3882 Group, 3883 Middle, 3884 Highlight, 3885 TabPage, 3886 Trunc 3887 } type; 3888 } item[STL_MAX_ITEM]; 3889 int minwid; 3890 int maxwid; 3891 int zeropad; 3892 char_u base; 3893 char_u opt; 3894 #define TMPLEN 70 3895 char_u tmp[TMPLEN]; 3896 char_u *usefmt = fmt; 3897 struct stl_hlrec *sp; 3898 int save_must_redraw = must_redraw; 3899 int save_redr_type = curwin->w_redr_type; 3900 3901 #ifdef FEAT_EVAL 3902 /* 3903 * When the format starts with "%!" then evaluate it as an expression and 3904 * use the result as the actual format string. 3905 */ 3906 if (fmt[0] == '%' && fmt[1] == '!') 3907 { 3908 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox); 3909 if (usefmt == NULL) 3910 usefmt = fmt; 3911 } 3912 #endif 3913 3914 if (fillchar == 0) 3915 fillchar = ' '; 3916 /* Can't handle a multi-byte fill character yet. */ 3917 else if (mb_char2len(fillchar) > 1) 3918 fillchar = '-'; 3919 3920 // The cursor in windows other than the current one isn't always 3921 // up-to-date, esp. because of autocommands and timers. 3922 lnum = wp->w_cursor.lnum; 3923 if (lnum > wp->w_buffer->b_ml.ml_line_count) 3924 { 3925 lnum = wp->w_buffer->b_ml.ml_line_count; 3926 wp->w_cursor.lnum = lnum; 3927 } 3928 3929 // Get line & check if empty (cursorpos will show "0-1"). Note that 3930 // p will become invalid when getting another buffer line. 3931 p = ml_get_buf(wp->w_buffer, lnum, FALSE); 3932 empty_line = (*p == NUL); 3933 3934 // Get the byte value now, in case we need it below. This is more efficient 3935 // than making a copy of the line. 3936 len = STRLEN(p); 3937 if (wp->w_cursor.col > (colnr_T)len) 3938 { 3939 // Line may have changed since checking the cursor column, or the lnum 3940 // was adjusted above. 3941 wp->w_cursor.col = (colnr_T)len; 3942 wp->w_cursor.coladd = 0; 3943 byteval = 0; 3944 } 3945 else 3946 byteval = (*mb_ptr2char)(p + wp->w_cursor.col); 3947 3948 groupdepth = 0; 3949 p = out; 3950 curitem = 0; 3951 prevchar_isflag = TRUE; 3952 prevchar_isitem = FALSE; 3953 for (s = usefmt; *s; ) 3954 { 3955 if (curitem == STL_MAX_ITEM) 3956 { 3957 /* There are too many items. Add the error code to the statusline 3958 * to give the user a hint about what went wrong. */ 3959 if (p + 6 < out + outlen) 3960 { 3961 mch_memmove(p, " E541", (size_t)5); 3962 p += 5; 3963 } 3964 break; 3965 } 3966 3967 if (*s != NUL && *s != '%') 3968 prevchar_isflag = prevchar_isitem = FALSE; 3969 3970 /* 3971 * Handle up to the next '%' or the end. 3972 */ 3973 while (*s != NUL && *s != '%' && p + 1 < out + outlen) 3974 *p++ = *s++; 3975 if (*s == NUL || p + 1 >= out + outlen) 3976 break; 3977 3978 /* 3979 * Handle one '%' item. 3980 */ 3981 s++; 3982 if (*s == NUL) /* ignore trailing % */ 3983 break; 3984 if (*s == '%') 3985 { 3986 if (p + 1 >= out + outlen) 3987 break; 3988 *p++ = *s++; 3989 prevchar_isflag = prevchar_isitem = FALSE; 3990 continue; 3991 } 3992 if (*s == STL_MIDDLEMARK) 3993 { 3994 s++; 3995 if (groupdepth > 0) 3996 continue; 3997 item[curitem].type = Middle; 3998 item[curitem++].start = p; 3999 continue; 4000 } 4001 if (*s == STL_TRUNCMARK) 4002 { 4003 s++; 4004 item[curitem].type = Trunc; 4005 item[curitem++].start = p; 4006 continue; 4007 } 4008 if (*s == ')') 4009 { 4010 s++; 4011 if (groupdepth < 1) 4012 continue; 4013 groupdepth--; 4014 4015 t = item[groupitem[groupdepth]].start; 4016 *p = NUL; 4017 l = vim_strsize(t); 4018 if (curitem > groupitem[groupdepth] + 1 4019 && item[groupitem[groupdepth]].minwid == 0) 4020 { 4021 /* remove group if all items are empty and highlight group 4022 * doesn't change */ 4023 group_start_userhl = group_end_userhl = 0; 4024 for (n = groupitem[groupdepth] - 1; n >= 0; n--) 4025 { 4026 if (item[n].type == Highlight) 4027 { 4028 group_start_userhl = group_end_userhl = item[n].minwid; 4029 break; 4030 } 4031 } 4032 for (n = groupitem[groupdepth] + 1; n < curitem; n++) 4033 { 4034 if (item[n].type == Normal) 4035 break; 4036 if (item[n].type == Highlight) 4037 group_end_userhl = item[n].minwid; 4038 } 4039 if (n == curitem && group_start_userhl == group_end_userhl) 4040 { 4041 p = t; 4042 l = 0; 4043 } 4044 } 4045 if (l > item[groupitem[groupdepth]].maxwid) 4046 { 4047 /* truncate, remove n bytes of text at the start */ 4048 if (has_mbyte) 4049 { 4050 /* Find the first character that should be included. */ 4051 n = 0; 4052 while (l >= item[groupitem[groupdepth]].maxwid) 4053 { 4054 l -= ptr2cells(t + n); 4055 n += (*mb_ptr2len)(t + n); 4056 } 4057 } 4058 else 4059 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1; 4060 4061 *t = '<'; 4062 mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); 4063 p = p - n + 1; 4064 4065 // Fill up space left over by half a double-wide char. 4066 while (++l < item[groupitem[groupdepth]].minwid) 4067 *p++ = fillchar; 4068 4069 /* correct the start of the items for the truncation */ 4070 for (l = groupitem[groupdepth] + 1; l < curitem; l++) 4071 { 4072 item[l].start -= n; 4073 if (item[l].start < t) 4074 item[l].start = t; 4075 } 4076 } 4077 else if (abs(item[groupitem[groupdepth]].minwid) > l) 4078 { 4079 /* fill */ 4080 n = item[groupitem[groupdepth]].minwid; 4081 if (n < 0) 4082 { 4083 /* fill by appending characters */ 4084 n = 0 - n; 4085 while (l++ < n && p + 1 < out + outlen) 4086 *p++ = fillchar; 4087 } 4088 else 4089 { 4090 /* fill by inserting characters */ 4091 mch_memmove(t + n - l, t, (size_t)(p - t)); 4092 l = n - l; 4093 if (p + l >= out + outlen) 4094 l = (long)((out + outlen) - p - 1); 4095 p += l; 4096 for (n = groupitem[groupdepth] + 1; n < curitem; n++) 4097 item[n].start += l; 4098 for ( ; l > 0; l--) 4099 *t++ = fillchar; 4100 } 4101 } 4102 continue; 4103 } 4104 minwid = 0; 4105 maxwid = 9999; 4106 zeropad = FALSE; 4107 l = 1; 4108 if (*s == '0') 4109 { 4110 s++; 4111 zeropad = TRUE; 4112 } 4113 if (*s == '-') 4114 { 4115 s++; 4116 l = -1; 4117 } 4118 if (VIM_ISDIGIT(*s)) 4119 { 4120 minwid = (int)getdigits(&s); 4121 if (minwid < 0) /* overflow */ 4122 minwid = 0; 4123 } 4124 if (*s == STL_USER_HL) 4125 { 4126 item[curitem].type = Highlight; 4127 item[curitem].start = p; 4128 item[curitem].minwid = minwid > 9 ? 1 : minwid; 4129 s++; 4130 curitem++; 4131 continue; 4132 } 4133 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) 4134 { 4135 if (*s == STL_TABCLOSENR) 4136 { 4137 if (minwid == 0) 4138 { 4139 /* %X ends the close label, go back to the previously 4140 * define tab label nr. */ 4141 for (n = curitem - 1; n >= 0; --n) 4142 if (item[n].type == TabPage && item[n].minwid >= 0) 4143 { 4144 minwid = item[n].minwid; 4145 break; 4146 } 4147 } 4148 else 4149 /* close nrs are stored as negative values */ 4150 minwid = - minwid; 4151 } 4152 item[curitem].type = TabPage; 4153 item[curitem].start = p; 4154 item[curitem].minwid = minwid; 4155 s++; 4156 curitem++; 4157 continue; 4158 } 4159 if (*s == '.') 4160 { 4161 s++; 4162 if (VIM_ISDIGIT(*s)) 4163 { 4164 maxwid = (int)getdigits(&s); 4165 if (maxwid <= 0) /* overflow */ 4166 maxwid = 50; 4167 } 4168 } 4169 minwid = (minwid > 50 ? 50 : minwid) * l; 4170 if (*s == '(') 4171 { 4172 groupitem[groupdepth++] = curitem; 4173 item[curitem].type = Group; 4174 item[curitem].start = p; 4175 item[curitem].minwid = minwid; 4176 item[curitem].maxwid = maxwid; 4177 s++; 4178 curitem++; 4179 continue; 4180 } 4181 if (vim_strchr(STL_ALL, *s) == NULL) 4182 { 4183 s++; 4184 continue; 4185 } 4186 opt = *s++; 4187 4188 /* OK - now for the real work */ 4189 base = 'D'; 4190 itemisflag = FALSE; 4191 fillable = TRUE; 4192 num = -1; 4193 str = NULL; 4194 switch (opt) 4195 { 4196 case STL_FILEPATH: 4197 case STL_FULLPATH: 4198 case STL_FILENAME: 4199 fillable = FALSE; /* don't change ' ' to fillchar */ 4200 if (buf_spname(wp->w_buffer) != NULL) 4201 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1); 4202 else 4203 { 4204 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname 4205 : wp->w_buffer->b_fname; 4206 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); 4207 } 4208 trans_characters(NameBuff, MAXPATHL); 4209 if (opt != STL_FILENAME) 4210 str = NameBuff; 4211 else 4212 str = gettail(NameBuff); 4213 break; 4214 4215 case STL_VIM_EXPR: /* '{' */ 4216 itemisflag = TRUE; 4217 t = p; 4218 while (*s != '}' && *s != NUL && p + 1 < out + outlen) 4219 *p++ = *s++; 4220 if (*s != '}') /* missing '}' or out of space */ 4221 break; 4222 s++; 4223 *p = 0; 4224 p = t; 4225 4226 #ifdef FEAT_EVAL 4227 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum); 4228 set_internal_string_var((char_u *)"g:actual_curbuf", tmp); 4229 4230 save_curbuf = curbuf; 4231 save_curwin = curwin; 4232 curwin = wp; 4233 curbuf = wp->w_buffer; 4234 4235 str = eval_to_string_safe(p, &t, use_sandbox); 4236 4237 curwin = save_curwin; 4238 curbuf = save_curbuf; 4239 do_unlet((char_u *)"g:actual_curbuf", TRUE); 4240 4241 if (str != NULL && *str != 0) 4242 { 4243 if (*skipdigits(str) == NUL) 4244 { 4245 num = atoi((char *)str); 4246 VIM_CLEAR(str); 4247 itemisflag = FALSE; 4248 } 4249 } 4250 #endif 4251 break; 4252 4253 case STL_LINE: 4254 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) 4255 ? 0L : (long)(wp->w_cursor.lnum); 4256 break; 4257 4258 case STL_NUMLINES: 4259 num = wp->w_buffer->b_ml.ml_line_count; 4260 break; 4261 4262 case STL_COLUMN: 4263 num = !(State & INSERT) && empty_line 4264 ? 0 : (int)wp->w_cursor.col + 1; 4265 break; 4266 4267 case STL_VIRTCOL: 4268 case STL_VIRTCOL_ALT: 4269 /* In list mode virtcol needs to be recomputed */ 4270 virtcol = wp->w_virtcol; 4271 if (wp->w_p_list && lcs_tab1 == NUL) 4272 { 4273 wp->w_p_list = FALSE; 4274 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); 4275 wp->w_p_list = TRUE; 4276 } 4277 ++virtcol; 4278 /* Don't display %V if it's the same as %c. */ 4279 if (opt == STL_VIRTCOL_ALT 4280 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line 4281 ? 0 : (int)wp->w_cursor.col + 1))) 4282 break; 4283 num = (long)virtcol; 4284 break; 4285 4286 case STL_PERCENTAGE: 4287 num = (int)(((long)wp->w_cursor.lnum * 100L) / 4288 (long)wp->w_buffer->b_ml.ml_line_count); 4289 break; 4290 4291 case STL_ALTPERCENT: 4292 str = tmp; 4293 get_rel_pos(wp, str, TMPLEN); 4294 break; 4295 4296 case STL_ARGLISTSTAT: 4297 fillable = FALSE; 4298 tmp[0] = 0; 4299 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE)) 4300 str = tmp; 4301 break; 4302 4303 case STL_KEYMAP: 4304 fillable = FALSE; 4305 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN)) 4306 str = tmp; 4307 break; 4308 case STL_PAGENUM: 4309 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) 4310 num = printer_page_num; 4311 #else 4312 num = 0; 4313 #endif 4314 break; 4315 4316 case STL_BUFNO: 4317 num = wp->w_buffer->b_fnum; 4318 break; 4319 4320 case STL_OFFSET_X: 4321 base = 'X'; 4322 /* FALLTHROUGH */ 4323 case STL_OFFSET: 4324 #ifdef FEAT_BYTEOFF 4325 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); 4326 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? 4327 0L : l + 1 + (!(State & INSERT) && empty_line ? 4328 0 : (int)wp->w_cursor.col); 4329 #endif 4330 break; 4331 4332 case STL_BYTEVAL_X: 4333 base = 'X'; 4334 /* FALLTHROUGH */ 4335 case STL_BYTEVAL: 4336 num = byteval; 4337 if (num == NL) 4338 num = 0; 4339 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) 4340 num = NL; 4341 break; 4342 4343 case STL_ROFLAG: 4344 case STL_ROFLAG_ALT: 4345 itemisflag = TRUE; 4346 if (wp->w_buffer->b_p_ro) 4347 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]")); 4348 break; 4349 4350 case STL_HELPFLAG: 4351 case STL_HELPFLAG_ALT: 4352 itemisflag = TRUE; 4353 if (wp->w_buffer->b_help) 4354 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" 4355 : _("[Help]")); 4356 break; 4357 4358 case STL_FILETYPE: 4359 if (*wp->w_buffer->b_p_ft != NUL 4360 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) 4361 { 4362 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]", 4363 wp->w_buffer->b_p_ft); 4364 str = tmp; 4365 } 4366 break; 4367 4368 case STL_FILETYPE_ALT: 4369 itemisflag = TRUE; 4370 if (*wp->w_buffer->b_p_ft != NUL 4371 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) 4372 { 4373 vim_snprintf((char *)tmp, sizeof(tmp), ",%s", 4374 wp->w_buffer->b_p_ft); 4375 for (t = tmp; *t != 0; t++) 4376 *t = TOUPPER_LOC(*t); 4377 str = tmp; 4378 } 4379 break; 4380 4381 #if defined(FEAT_QUICKFIX) 4382 case STL_PREVIEWFLAG: 4383 case STL_PREVIEWFLAG_ALT: 4384 itemisflag = TRUE; 4385 if (wp->w_p_pvw) 4386 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" 4387 : _("[Preview]")); 4388 break; 4389 4390 case STL_QUICKFIX: 4391 if (bt_quickfix(wp->w_buffer)) 4392 str = (char_u *)(wp->w_llist_ref 4393 ? _(msg_loclist) 4394 : _(msg_qflist)); 4395 break; 4396 #endif 4397 4398 case STL_MODIFIED: 4399 case STL_MODIFIED_ALT: 4400 itemisflag = TRUE; 4401 switch ((opt == STL_MODIFIED_ALT) 4402 + bufIsChanged(wp->w_buffer) * 2 4403 + (!wp->w_buffer->b_p_ma) * 4) 4404 { 4405 case 2: str = (char_u *)"[+]"; break; 4406 case 3: str = (char_u *)",+"; break; 4407 case 4: str = (char_u *)"[-]"; break; 4408 case 5: str = (char_u *)",-"; break; 4409 case 6: str = (char_u *)"[+-]"; break; 4410 case 7: str = (char_u *)",+-"; break; 4411 } 4412 break; 4413 4414 case STL_HIGHLIGHT: 4415 t = s; 4416 while (*s != '#' && *s != NUL) 4417 ++s; 4418 if (*s == '#') 4419 { 4420 item[curitem].type = Highlight; 4421 item[curitem].start = p; 4422 item[curitem].minwid = -syn_namen2id(t, (int)(s - t)); 4423 curitem++; 4424 } 4425 if (*s != NUL) 4426 ++s; 4427 continue; 4428 } 4429 4430 item[curitem].start = p; 4431 item[curitem].type = Normal; 4432 if (str != NULL && *str) 4433 { 4434 t = str; 4435 if (itemisflag) 4436 { 4437 if ((t[0] && t[1]) 4438 && ((!prevchar_isitem && *t == ',') 4439 || (prevchar_isflag && *t == ' '))) 4440 t++; 4441 prevchar_isflag = TRUE; 4442 } 4443 l = vim_strsize(t); 4444 if (l > 0) 4445 prevchar_isitem = TRUE; 4446 if (l > maxwid) 4447 { 4448 while (l >= maxwid) 4449 if (has_mbyte) 4450 { 4451 l -= ptr2cells(t); 4452 t += (*mb_ptr2len)(t); 4453 } 4454 else 4455 l -= byte2cells(*t++); 4456 if (p + 1 >= out + outlen) 4457 break; 4458 *p++ = '<'; 4459 } 4460 if (minwid > 0) 4461 { 4462 for (; l < minwid && p + 1 < out + outlen; l++) 4463 { 4464 /* Don't put a "-" in front of a digit. */ 4465 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) 4466 *p++ = ' '; 4467 else 4468 *p++ = fillchar; 4469 } 4470 minwid = 0; 4471 } 4472 else 4473 minwid *= -1; 4474 while (*t && p + 1 < out + outlen) 4475 { 4476 *p++ = *t++; 4477 /* Change a space by fillchar, unless fillchar is '-' and a 4478 * digit follows. */ 4479 if (fillable && p[-1] == ' ' 4480 && (!VIM_ISDIGIT(*t) || fillchar != '-')) 4481 p[-1] = fillchar; 4482 } 4483 for (; l < minwid && p + 1 < out + outlen; l++) 4484 *p++ = fillchar; 4485 } 4486 else if (num >= 0) 4487 { 4488 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); 4489 char_u nstr[20]; 4490 4491 if (p + 20 >= out + outlen) 4492 break; /* not sufficient space */ 4493 prevchar_isitem = TRUE; 4494 t = nstr; 4495 if (opt == STL_VIRTCOL_ALT) 4496 { 4497 *t++ = '-'; 4498 minwid--; 4499 } 4500 *t++ = '%'; 4501 if (zeropad) 4502 *t++ = '0'; 4503 *t++ = '*'; 4504 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); 4505 *t = 0; 4506 4507 for (n = num, l = 1; n >= nbase; n /= nbase) 4508 l++; 4509 if (opt == STL_VIRTCOL_ALT) 4510 l++; 4511 if (l > maxwid) 4512 { 4513 l += 2; 4514 n = l - maxwid; 4515 while (l-- > maxwid) 4516 num /= nbase; 4517 *t++ = '>'; 4518 *t++ = '%'; 4519 *t = t[-3]; 4520 *++t = 0; 4521 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, 4522 0, num, n); 4523 } 4524 else 4525 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, 4526 minwid, num); 4527 p += STRLEN(p); 4528 } 4529 else 4530 item[curitem].type = Empty; 4531 4532 if (opt == STL_VIM_EXPR) 4533 vim_free(str); 4534 4535 if (num >= 0 || (!itemisflag && str && *str)) 4536 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */ 4537 curitem++; 4538 } 4539 *p = NUL; 4540 itemcnt = curitem; 4541 4542 #ifdef FEAT_EVAL 4543 if (usefmt != fmt) 4544 vim_free(usefmt); 4545 #endif 4546 4547 width = vim_strsize(out); 4548 if (maxwidth > 0 && width > maxwidth) 4549 { 4550 /* Result is too long, must truncate somewhere. */ 4551 l = 0; 4552 if (itemcnt == 0) 4553 s = out; 4554 else 4555 { 4556 for ( ; l < itemcnt; l++) 4557 if (item[l].type == Trunc) 4558 { 4559 /* Truncate at %< item. */ 4560 s = item[l].start; 4561 break; 4562 } 4563 if (l == itemcnt) 4564 { 4565 /* No %< item, truncate first item. */ 4566 s = item[0].start; 4567 l = 0; 4568 } 4569 } 4570 4571 if (width - vim_strsize(s) >= maxwidth) 4572 { 4573 /* Truncation mark is beyond max length */ 4574 if (has_mbyte) 4575 { 4576 s = out; 4577 width = 0; 4578 for (;;) 4579 { 4580 width += ptr2cells(s); 4581 if (width >= maxwidth) 4582 break; 4583 s += (*mb_ptr2len)(s); 4584 } 4585 /* Fill up for half a double-wide character. */ 4586 while (++width < maxwidth) 4587 *s++ = fillchar; 4588 } 4589 else 4590 s = out + maxwidth - 1; 4591 for (l = 0; l < itemcnt; l++) 4592 if (item[l].start > s) 4593 break; 4594 itemcnt = l; 4595 *s++ = '>'; 4596 *s = 0; 4597 } 4598 else 4599 { 4600 if (has_mbyte) 4601 { 4602 n = 0; 4603 while (width >= maxwidth) 4604 { 4605 width -= ptr2cells(s + n); 4606 n += (*mb_ptr2len)(s + n); 4607 } 4608 } 4609 else 4610 n = width - maxwidth + 1; 4611 p = s + n; 4612 STRMOVE(s + 1, p); 4613 *s = '<'; 4614 4615 /* Fill up for half a double-wide character. */ 4616 while (++width < maxwidth) 4617 { 4618 s = s + STRLEN(s); 4619 *s++ = fillchar; 4620 *s = NUL; 4621 } 4622 4623 --n; /* count the '<' */ 4624 for (; l < itemcnt; l++) 4625 { 4626 if (item[l].start - n >= s) 4627 item[l].start -= n; 4628 else 4629 item[l].start = s; 4630 } 4631 } 4632 width = maxwidth; 4633 } 4634 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) 4635 { 4636 /* Apply STL_MIDDLE if any */ 4637 for (l = 0; l < itemcnt; l++) 4638 if (item[l].type == Middle) 4639 break; 4640 if (l < itemcnt) 4641 { 4642 p = item[l].start + maxwidth - width; 4643 STRMOVE(p, item[l].start); 4644 for (s = item[l].start; s < p; s++) 4645 *s = fillchar; 4646 for (l++; l < itemcnt; l++) 4647 item[l].start += maxwidth - width; 4648 width = maxwidth; 4649 } 4650 } 4651 4652 /* Store the info about highlighting. */ 4653 if (hltab != NULL) 4654 { 4655 sp = hltab; 4656 for (l = 0; l < itemcnt; l++) 4657 { 4658 if (item[l].type == Highlight) 4659 { 4660 sp->start = item[l].start; 4661 sp->userhl = item[l].minwid; 4662 sp++; 4663 } 4664 } 4665 sp->start = NULL; 4666 sp->userhl = 0; 4667 } 4668 4669 /* Store the info about tab pages labels. */ 4670 if (tabtab != NULL) 4671 { 4672 sp = tabtab; 4673 for (l = 0; l < itemcnt; l++) 4674 { 4675 if (item[l].type == TabPage) 4676 { 4677 sp->start = item[l].start; 4678 sp->userhl = item[l].minwid; 4679 sp++; 4680 } 4681 } 4682 sp->start = NULL; 4683 sp->userhl = 0; 4684 } 4685 4686 /* When inside update_screen we do not want redrawing a stausline, ruler, 4687 * title, etc. to trigger another redraw, it may cause an endless loop. */ 4688 if (updating_screen) 4689 { 4690 must_redraw = save_must_redraw; 4691 curwin->w_redr_type = save_redr_type; 4692 } 4693 4694 return width; 4695 } 4696 #endif /* FEAT_STL_OPT */ 4697 4698 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ 4699 || defined(FEAT_GUI_TABLINE) || defined(PROTO) 4700 /* 4701 * Get relative cursor position in window into "buf[buflen]", in the form 99%, 4702 * using "Top", "Bot" or "All" when appropriate. 4703 */ 4704 void 4705 get_rel_pos( 4706 win_T *wp, 4707 char_u *buf, 4708 int buflen) 4709 { 4710 long above; /* number of lines above window */ 4711 long below; /* number of lines below window */ 4712 4713 if (buflen < 3) /* need at least 3 chars for writing */ 4714 return; 4715 above = wp->w_topline - 1; 4716 #ifdef FEAT_DIFF 4717 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; 4718 if (wp->w_topline == 1 && wp->w_topfill >= 1) 4719 above = 0; /* All buffer lines are displayed and there is an 4720 * indication of filler lines, that can be considered 4721 * seeing all lines. */ 4722 #endif 4723 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; 4724 if (below <= 0) 4725 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), 4726 (size_t)(buflen - 1)); 4727 else if (above <= 0) 4728 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); 4729 else 4730 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L 4731 ? (int)(above / ((above + below) / 100L)) 4732 : (int)(above * 100L / (above + below))); 4733 } 4734 #endif 4735 4736 /* 4737 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. 4738 * Return TRUE if it was appended. 4739 */ 4740 static int 4741 append_arg_number( 4742 win_T *wp, 4743 char_u *buf, 4744 int buflen, 4745 int add_file) /* Add "file" before the arg number */ 4746 { 4747 char_u *p; 4748 4749 if (ARGCOUNT <= 1) /* nothing to do */ 4750 return FALSE; 4751 4752 p = buf + STRLEN(buf); /* go to the end of the buffer */ 4753 if (p - buf + 35 >= buflen) /* getting too long */ 4754 return FALSE; 4755 *p++ = ' '; 4756 *p++ = '('; 4757 if (add_file) 4758 { 4759 STRCPY(p, "file "); 4760 p += 5; 4761 } 4762 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), 4763 wp->w_arg_idx_invalid ? "(%d) of %d)" 4764 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); 4765 return TRUE; 4766 } 4767 4768 /* 4769 * If fname is not a full path, make it a full path. 4770 * Returns pointer to allocated memory (NULL for failure). 4771 */ 4772 char_u * 4773 fix_fname(char_u *fname) 4774 { 4775 /* 4776 * Force expanding the path always for Unix, because symbolic links may 4777 * mess up the full path name, even though it starts with a '/'. 4778 * Also expand when there is ".." in the file name, try to remove it, 4779 * because "c:/src/../README" is equal to "c:/README". 4780 * Similarly "c:/src//file" is equal to "c:/src/file". 4781 * For MS-Windows also expand names like "longna~1" to "longname". 4782 */ 4783 #ifdef UNIX 4784 return FullName_save(fname, TRUE); 4785 #else 4786 if (!vim_isAbsName(fname) 4787 || strstr((char *)fname, "..") != NULL 4788 || strstr((char *)fname, "//") != NULL 4789 # ifdef BACKSLASH_IN_FILENAME 4790 || strstr((char *)fname, "\\\\") != NULL 4791 # endif 4792 # if defined(MSWIN) 4793 || vim_strchr(fname, '~') != NULL 4794 # endif 4795 ) 4796 return FullName_save(fname, FALSE); 4797 4798 fname = vim_strsave(fname); 4799 4800 # ifdef USE_FNAME_CASE 4801 if (fname != NULL) 4802 fname_case(fname, 0); /* set correct case for file name */ 4803 # endif 4804 4805 return fname; 4806 #endif 4807 } 4808 4809 /* 4810 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL. 4811 * "*ffname" becomes a pointer to allocated memory (or NULL). 4812 * When resolving a link both "*sfname" and "*ffname" will point to the same 4813 * allocated memory. 4814 * The "*ffname" and "*sfname" pointer values on call will not be freed. 4815 * Note that the resulting "*ffname" pointer should be considered not allocaed. 4816 */ 4817 void 4818 fname_expand( 4819 buf_T *buf UNUSED, 4820 char_u **ffname, 4821 char_u **sfname) 4822 { 4823 if (*ffname == NULL) // no file name given, nothing to do 4824 return; 4825 if (*sfname == NULL) // no short file name given, use ffname 4826 *sfname = *ffname; 4827 *ffname = fix_fname(*ffname); // expand to full path 4828 4829 #ifdef FEAT_SHORTCUT 4830 if (!buf->b_p_bin) 4831 { 4832 char_u *rfname; 4833 4834 // If the file name is a shortcut file, use the file it links to. 4835 rfname = mch_resolve_path(*ffname, FALSE); 4836 if (rfname != NULL) 4837 { 4838 vim_free(*ffname); 4839 *ffname = rfname; 4840 *sfname = rfname; 4841 } 4842 } 4843 #endif 4844 } 4845 4846 /* 4847 * Get the file name for an argument list entry. 4848 */ 4849 char_u * 4850 alist_name(aentry_T *aep) 4851 { 4852 buf_T *bp; 4853 4854 /* Use the name from the associated buffer if it exists. */ 4855 bp = buflist_findnr(aep->ae_fnum); 4856 if (bp == NULL || bp->b_fname == NULL) 4857 return aep->ae_fname; 4858 return bp->b_fname; 4859 } 4860 4861 /* 4862 * do_arg_all(): Open up to 'count' windows, one for each argument. 4863 */ 4864 void 4865 do_arg_all( 4866 int count, 4867 int forceit, /* hide buffers in current windows */ 4868 int keep_tabs) /* keep current tabs, for ":tab drop file" */ 4869 { 4870 int i; 4871 win_T *wp, *wpnext; 4872 char_u *opened; /* Array of weight for which args are open: 4873 * 0: not opened 4874 * 1: opened in other tab 4875 * 2: opened in curtab 4876 * 3: opened in curtab and curwin 4877 */ 4878 int opened_len; /* length of opened[] */ 4879 int use_firstwin = FALSE; /* use first window for arglist */ 4880 int split_ret = OK; 4881 int p_ea_save; 4882 alist_T *alist; /* argument list to be used */ 4883 buf_T *buf; 4884 tabpage_T *tpnext; 4885 int had_tab = cmdmod.tab; 4886 win_T *old_curwin, *last_curwin; 4887 tabpage_T *old_curtab, *last_curtab; 4888 win_T *new_curwin = NULL; 4889 tabpage_T *new_curtab = NULL; 4890 4891 if (ARGCOUNT <= 0) 4892 { 4893 /* Don't give an error message. We don't want it when the ":all" 4894 * command is in the .vimrc. */ 4895 return; 4896 } 4897 setpcmark(); 4898 4899 opened_len = ARGCOUNT; 4900 opened = alloc_clear((unsigned)opened_len); 4901 if (opened == NULL) 4902 return; 4903 4904 /* Autocommands may do anything to the argument list. Make sure it's not 4905 * freed while we are working here by "locking" it. We still have to 4906 * watch out for its size to be changed. */ 4907 alist = curwin->w_alist; 4908 ++alist->al_refcount; 4909 4910 old_curwin = curwin; 4911 old_curtab = curtab; 4912 4913 # ifdef FEAT_GUI 4914 need_mouse_correct = TRUE; 4915 # endif 4916 4917 /* 4918 * Try closing all windows that are not in the argument list. 4919 * Also close windows that are not full width; 4920 * When 'hidden' or "forceit" set the buffer becomes hidden. 4921 * Windows that have a changed buffer and can't be hidden won't be closed. 4922 * When the ":tab" modifier was used do this for all tab pages. 4923 */ 4924 if (had_tab > 0) 4925 goto_tabpage_tp(first_tabpage, TRUE, TRUE); 4926 for (;;) 4927 { 4928 tpnext = curtab->tp_next; 4929 for (wp = firstwin; wp != NULL; wp = wpnext) 4930 { 4931 wpnext = wp->w_next; 4932 buf = wp->w_buffer; 4933 if (buf->b_ffname == NULL 4934 || (!keep_tabs && (buf->b_nwindows > 1 4935 || wp->w_width != Columns))) 4936 i = opened_len; 4937 else 4938 { 4939 /* check if the buffer in this window is in the arglist */ 4940 for (i = 0; i < opened_len; ++i) 4941 { 4942 if (i < alist->al_ga.ga_len 4943 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum 4944 || fullpathcmp(alist_name(&AARGLIST(alist)[i]), 4945 buf->b_ffname, TRUE) & FPC_SAME)) 4946 { 4947 int weight = 1; 4948 4949 if (old_curtab == curtab) 4950 { 4951 ++weight; 4952 if (old_curwin == wp) 4953 ++weight; 4954 } 4955 4956 if (weight > (int)opened[i]) 4957 { 4958 opened[i] = (char_u)weight; 4959 if (i == 0) 4960 { 4961 if (new_curwin != NULL) 4962 new_curwin->w_arg_idx = opened_len; 4963 new_curwin = wp; 4964 new_curtab = curtab; 4965 } 4966 } 4967 else if (keep_tabs) 4968 i = opened_len; 4969 4970 if (wp->w_alist != alist) 4971 { 4972 /* Use the current argument list for all windows 4973 * containing a file from it. */ 4974 alist_unlink(wp->w_alist); 4975 wp->w_alist = alist; 4976 ++wp->w_alist->al_refcount; 4977 } 4978 break; 4979 } 4980 } 4981 } 4982 wp->w_arg_idx = i; 4983 4984 if (i == opened_len && !keep_tabs)/* close this window */ 4985 { 4986 if (buf_hide(buf) || forceit || buf->b_nwindows > 1 4987 || !bufIsChanged(buf)) 4988 { 4989 /* If the buffer was changed, and we would like to hide it, 4990 * try autowriting. */ 4991 if (!buf_hide(buf) && buf->b_nwindows <= 1 4992 && bufIsChanged(buf)) 4993 { 4994 bufref_T bufref; 4995 4996 set_bufref(&bufref, buf); 4997 4998 (void)autowrite(buf, FALSE); 4999 5000 /* check if autocommands removed the window */ 5001 if (!win_valid(wp) || !bufref_valid(&bufref)) 5002 { 5003 wpnext = firstwin; /* start all over... */ 5004 continue; 5005 } 5006 } 5007 /* don't close last window */ 5008 if (ONE_WINDOW 5009 && (first_tabpage->tp_next == NULL || !had_tab)) 5010 use_firstwin = TRUE; 5011 else 5012 { 5013 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf)); 5014 5015 /* check if autocommands removed the next window */ 5016 if (!win_valid(wpnext)) 5017 wpnext = firstwin; /* start all over... */ 5018 } 5019 } 5020 } 5021 } 5022 5023 /* Without the ":tab" modifier only do the current tab page. */ 5024 if (had_tab == 0 || tpnext == NULL) 5025 break; 5026 5027 /* check if autocommands removed the next tab page */ 5028 if (!valid_tabpage(tpnext)) 5029 tpnext = first_tabpage; /* start all over...*/ 5030 5031 goto_tabpage_tp(tpnext, TRUE, TRUE); 5032 } 5033 5034 /* 5035 * Open a window for files in the argument list that don't have one. 5036 * ARGCOUNT may change while doing this, because of autocommands. 5037 */ 5038 if (count > opened_len || count <= 0) 5039 count = opened_len; 5040 5041 /* Don't execute Win/Buf Enter/Leave autocommands here. */ 5042 ++autocmd_no_enter; 5043 ++autocmd_no_leave; 5044 last_curwin = curwin; 5045 last_curtab = curtab; 5046 win_enter(lastwin, FALSE); 5047 /* ":drop all" should re-use an empty window to avoid "--remote-tab" 5048 * leaving an empty tab page when executed locally. */ 5049 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1 5050 && curbuf->b_ffname == NULL && !curbuf->b_changed) 5051 use_firstwin = TRUE; 5052 5053 for (i = 0; i < count && i < opened_len && !got_int; ++i) 5054 { 5055 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1) 5056 arg_had_last = TRUE; 5057 if (opened[i] > 0) 5058 { 5059 /* Move the already present window to below the current window */ 5060 if (curwin->w_arg_idx != i) 5061 { 5062 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next) 5063 { 5064 if (wpnext->w_arg_idx == i) 5065 { 5066 if (keep_tabs) 5067 { 5068 new_curwin = wpnext; 5069 new_curtab = curtab; 5070 } 5071 else 5072 win_move_after(wpnext, curwin); 5073 break; 5074 } 5075 } 5076 } 5077 } 5078 else if (split_ret == OK) 5079 { 5080 if (!use_firstwin) /* split current window */ 5081 { 5082 p_ea_save = p_ea; 5083 p_ea = TRUE; /* use space from all windows */ 5084 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); 5085 p_ea = p_ea_save; 5086 if (split_ret == FAIL) 5087 continue; 5088 } 5089 else /* first window: do autocmd for leaving this buffer */ 5090 --autocmd_no_leave; 5091 5092 /* 5093 * edit file "i" 5094 */ 5095 curwin->w_arg_idx = i; 5096 if (i == 0) 5097 { 5098 new_curwin = curwin; 5099 new_curtab = curtab; 5100 } 5101 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL, 5102 ECMD_ONE, 5103 ((buf_hide(curwin->w_buffer) 5104 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0) 5105 + ECMD_OLDBUF, curwin); 5106 if (use_firstwin) 5107 ++autocmd_no_leave; 5108 use_firstwin = FALSE; 5109 } 5110 ui_breakcheck(); 5111 5112 /* When ":tab" was used open a new tab for a new window repeatedly. */ 5113 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) 5114 cmdmod.tab = 9999; 5115 } 5116 5117 /* Remove the "lock" on the argument list. */ 5118 alist_unlink(alist); 5119 5120 --autocmd_no_enter; 5121 5122 /* restore last referenced tabpage's curwin */ 5123 if (last_curtab != new_curtab) 5124 { 5125 if (valid_tabpage(last_curtab)) 5126 goto_tabpage_tp(last_curtab, TRUE, TRUE); 5127 if (win_valid(last_curwin)) 5128 win_enter(last_curwin, FALSE); 5129 } 5130 /* to window with first arg */ 5131 if (valid_tabpage(new_curtab)) 5132 goto_tabpage_tp(new_curtab, TRUE, TRUE); 5133 if (win_valid(new_curwin)) 5134 win_enter(new_curwin, FALSE); 5135 5136 --autocmd_no_leave; 5137 vim_free(opened); 5138 } 5139 5140 /* 5141 * Open a window for a number of buffers. 5142 */ 5143 void 5144 ex_buffer_all(exarg_T *eap) 5145 { 5146 buf_T *buf; 5147 win_T *wp, *wpnext; 5148 int split_ret = OK; 5149 int p_ea_save; 5150 int open_wins = 0; 5151 int r; 5152 int count; /* Maximum number of windows to open. */ 5153 int all; /* When TRUE also load inactive buffers. */ 5154 int had_tab = cmdmod.tab; 5155 tabpage_T *tpnext; 5156 5157 if (eap->addr_count == 0) /* make as many windows as possible */ 5158 count = 9999; 5159 else 5160 count = eap->line2; /* make as many windows as specified */ 5161 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) 5162 all = FALSE; 5163 else 5164 all = TRUE; 5165 5166 setpcmark(); 5167 5168 #ifdef FEAT_GUI 5169 need_mouse_correct = TRUE; 5170 #endif 5171 5172 /* 5173 * Close superfluous windows (two windows for the same buffer). 5174 * Also close windows that are not full-width. 5175 */ 5176 if (had_tab > 0) 5177 goto_tabpage_tp(first_tabpage, TRUE, TRUE); 5178 for (;;) 5179 { 5180 tpnext = curtab->tp_next; 5181 for (wp = firstwin; wp != NULL; wp = wpnext) 5182 { 5183 wpnext = wp->w_next; 5184 if ((wp->w_buffer->b_nwindows > 1 5185 || ((cmdmod.split & WSP_VERT) 5186 ? wp->w_height + wp->w_status_height < Rows - p_ch 5187 - tabline_height() 5188 : wp->w_width != Columns) 5189 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW 5190 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) 5191 { 5192 win_close(wp, FALSE); 5193 wpnext = firstwin; /* just in case an autocommand does 5194 something strange with windows */ 5195 tpnext = first_tabpage; /* start all over... */ 5196 open_wins = 0; 5197 } 5198 else 5199 ++open_wins; 5200 } 5201 5202 /* Without the ":tab" modifier only do the current tab page. */ 5203 if (had_tab == 0 || tpnext == NULL) 5204 break; 5205 goto_tabpage_tp(tpnext, TRUE, TRUE); 5206 } 5207 5208 /* 5209 * Go through the buffer list. When a buffer doesn't have a window yet, 5210 * open one. Otherwise move the window to the right position. 5211 * Watch out for autocommands that delete buffers or windows! 5212 */ 5213 /* Don't execute Win/Buf Enter/Leave autocommands here. */ 5214 ++autocmd_no_enter; 5215 win_enter(lastwin, FALSE); 5216 ++autocmd_no_leave; 5217 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) 5218 { 5219 /* Check if this buffer needs a window */ 5220 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) 5221 continue; 5222 5223 if (had_tab != 0) 5224 { 5225 /* With the ":tab" modifier don't move the window. */ 5226 if (buf->b_nwindows > 0) 5227 wp = lastwin; /* buffer has a window, skip it */ 5228 else 5229 wp = NULL; 5230 } 5231 else 5232 { 5233 /* Check if this buffer already has a window */ 5234 FOR_ALL_WINDOWS(wp) 5235 if (wp->w_buffer == buf) 5236 break; 5237 /* If the buffer already has a window, move it */ 5238 if (wp != NULL) 5239 win_move_after(wp, curwin); 5240 } 5241 5242 if (wp == NULL && split_ret == OK) 5243 { 5244 bufref_T bufref; 5245 5246 set_bufref(&bufref, buf); 5247 5248 /* Split the window and put the buffer in it */ 5249 p_ea_save = p_ea; 5250 p_ea = TRUE; /* use space from all windows */ 5251 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); 5252 ++open_wins; 5253 p_ea = p_ea_save; 5254 if (split_ret == FAIL) 5255 continue; 5256 5257 /* Open the buffer in this window. */ 5258 #if defined(HAS_SWAP_EXISTS_ACTION) 5259 swap_exists_action = SEA_DIALOG; 5260 #endif 5261 set_curbuf(buf, DOBUF_GOTO); 5262 if (!bufref_valid(&bufref)) 5263 { 5264 /* autocommands deleted the buffer!!! */ 5265 #if defined(HAS_SWAP_EXISTS_ACTION) 5266 swap_exists_action = SEA_NONE; 5267 #endif 5268 break; 5269 } 5270 #if defined(HAS_SWAP_EXISTS_ACTION) 5271 if (swap_exists_action == SEA_QUIT) 5272 { 5273 # if defined(FEAT_EVAL) 5274 cleanup_T cs; 5275 5276 /* Reset the error/interrupt/exception state here so that 5277 * aborting() returns FALSE when closing a window. */ 5278 enter_cleanup(&cs); 5279 # endif 5280 5281 /* User selected Quit at ATTENTION prompt; close this window. */ 5282 win_close(curwin, TRUE); 5283 --open_wins; 5284 swap_exists_action = SEA_NONE; 5285 swap_exists_did_quit = TRUE; 5286 5287 # if defined(FEAT_EVAL) 5288 /* Restore the error/interrupt/exception state if not 5289 * discarded by a new aborting error, interrupt, or uncaught 5290 * exception. */ 5291 leave_cleanup(&cs); 5292 # endif 5293 } 5294 else 5295 handle_swap_exists(NULL); 5296 #endif 5297 } 5298 5299 ui_breakcheck(); 5300 if (got_int) 5301 { 5302 (void)vgetc(); /* only break the file loading, not the rest */ 5303 break; 5304 } 5305 #ifdef FEAT_EVAL 5306 /* Autocommands deleted the buffer or aborted script processing!!! */ 5307 if (aborting()) 5308 break; 5309 #endif 5310 /* When ":tab" was used open a new tab for a new window repeatedly. */ 5311 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) 5312 cmdmod.tab = 9999; 5313 } 5314 --autocmd_no_enter; 5315 win_enter(firstwin, FALSE); /* back to first window */ 5316 --autocmd_no_leave; 5317 5318 /* 5319 * Close superfluous windows. 5320 */ 5321 for (wp = lastwin; open_wins > count; ) 5322 { 5323 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer) 5324 || autowrite(wp->w_buffer, FALSE) == OK); 5325 if (!win_valid(wp)) 5326 { 5327 /* BufWrite Autocommands made the window invalid, start over */ 5328 wp = lastwin; 5329 } 5330 else if (r) 5331 { 5332 win_close(wp, !buf_hide(wp->w_buffer)); 5333 --open_wins; 5334 wp = lastwin; 5335 } 5336 else 5337 { 5338 wp = wp->w_prev; 5339 if (wp == NULL) 5340 break; 5341 } 5342 } 5343 } 5344 5345 5346 static int chk_modeline(linenr_T, int); 5347 5348 /* 5349 * do_modelines() - process mode lines for the current file 5350 * 5351 * "flags" can be: 5352 * OPT_WINONLY only set options local to window 5353 * OPT_NOWIN don't set options local to window 5354 * 5355 * Returns immediately if the "ml" option isn't set. 5356 */ 5357 void 5358 do_modelines(int flags) 5359 { 5360 linenr_T lnum; 5361 int nmlines; 5362 static int entered = 0; 5363 5364 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) 5365 return; 5366 5367 /* Disallow recursive entry here. Can happen when executing a modeline 5368 * triggers an autocommand, which reloads modelines with a ":do". */ 5369 if (entered) 5370 return; 5371 5372 ++entered; 5373 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; 5374 ++lnum) 5375 if (chk_modeline(lnum, flags) == FAIL) 5376 nmlines = 0; 5377 5378 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines 5379 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) 5380 if (chk_modeline(lnum, flags) == FAIL) 5381 nmlines = 0; 5382 --entered; 5383 } 5384 5385 #include "version.h" /* for version number */ 5386 5387 /* 5388 * chk_modeline() - check a single line for a mode string 5389 * Return FAIL if an error encountered. 5390 */ 5391 static int 5392 chk_modeline( 5393 linenr_T lnum, 5394 int flags) /* Same as for do_modelines(). */ 5395 { 5396 char_u *s; 5397 char_u *e; 5398 char_u *linecopy; /* local copy of any modeline found */ 5399 int prev; 5400 int vers; 5401 int end; 5402 int retval = OK; 5403 char_u *save_sourcing_name; 5404 linenr_T save_sourcing_lnum; 5405 #ifdef FEAT_EVAL 5406 sctx_T save_current_sctx; 5407 #endif 5408 5409 prev = -1; 5410 for (s = ml_get(lnum); *s != NUL; ++s) 5411 { 5412 if (prev == -1 || vim_isspace(prev)) 5413 { 5414 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) 5415 || STRNCMP(s, "vi:", (size_t)3) == 0) 5416 break; 5417 /* Accept both "vim" and "Vim". */ 5418 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm') 5419 { 5420 if (s[3] == '<' || s[3] == '=' || s[3] == '>') 5421 e = s + 4; 5422 else 5423 e = s + 3; 5424 vers = getdigits(&e); 5425 if (*e == ':' 5426 && (s[0] != 'V' 5427 || STRNCMP(skipwhite(e + 1), "set", 3) == 0) 5428 && (s[3] == ':' 5429 || (VIM_VERSION_100 >= vers && isdigit(s[3])) 5430 || (VIM_VERSION_100 < vers && s[3] == '<') 5431 || (VIM_VERSION_100 > vers && s[3] == '>') 5432 || (VIM_VERSION_100 == vers && s[3] == '='))) 5433 break; 5434 } 5435 } 5436 prev = *s; 5437 } 5438 5439 if (*s) 5440 { 5441 do /* skip over "ex:", "vi:" or "vim:" */ 5442 ++s; 5443 while (s[-1] != ':'); 5444 5445 s = linecopy = vim_strsave(s); /* copy the line, it will change */ 5446 if (linecopy == NULL) 5447 return FAIL; 5448 5449 save_sourcing_lnum = sourcing_lnum; 5450 save_sourcing_name = sourcing_name; 5451 sourcing_lnum = lnum; /* prepare for emsg() */ 5452 sourcing_name = (char_u *)"modelines"; 5453 5454 end = FALSE; 5455 while (end == FALSE) 5456 { 5457 s = skipwhite(s); 5458 if (*s == NUL) 5459 break; 5460 5461 /* 5462 * Find end of set command: ':' or end of line. 5463 * Skip over "\:", replacing it with ":". 5464 */ 5465 for (e = s; *e != ':' && *e != NUL; ++e) 5466 if (e[0] == '\\' && e[1] == ':') 5467 STRMOVE(e, e + 1); 5468 if (*e == NUL) 5469 end = TRUE; 5470 5471 /* 5472 * If there is a "set" command, require a terminating ':' and 5473 * ignore the stuff after the ':'. 5474 * "vi:set opt opt opt: foo" -- foo not interpreted 5475 * "vi:opt opt opt: foo" -- foo interpreted 5476 * Accept "se" for compatibility with Elvis. 5477 */ 5478 if (STRNCMP(s, "set ", (size_t)4) == 0 5479 || STRNCMP(s, "se ", (size_t)3) == 0) 5480 { 5481 if (*e != ':') /* no terminating ':'? */ 5482 break; 5483 end = TRUE; 5484 s = vim_strchr(s, ' ') + 1; 5485 } 5486 *e = NUL; /* truncate the set command */ 5487 5488 if (*s != NUL) /* skip over an empty "::" */ 5489 { 5490 int secure_save = secure; 5491 #ifdef FEAT_EVAL 5492 save_current_sctx = current_sctx; 5493 current_sctx.sc_sid = SID_MODELINE; 5494 current_sctx.sc_seq = 0; 5495 current_sctx.sc_lnum = 0; 5496 current_sctx.sc_version = 1; 5497 #endif 5498 // Make sure no risky things are executed as a side effect. 5499 secure = 1; 5500 5501 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags); 5502 5503 secure = secure_save; 5504 #ifdef FEAT_EVAL 5505 current_sctx = save_current_sctx; 5506 #endif 5507 if (retval == FAIL) /* stop if error found */ 5508 break; 5509 } 5510 s = e + 1; /* advance to next part */ 5511 } 5512 5513 sourcing_lnum = save_sourcing_lnum; 5514 sourcing_name = save_sourcing_name; 5515 5516 vim_free(linecopy); 5517 } 5518 return retval; 5519 } 5520 5521 #if defined(FEAT_VIMINFO) || defined(PROTO) 5522 int 5523 read_viminfo_bufferlist( 5524 vir_T *virp, 5525 int writing) 5526 { 5527 char_u *tab; 5528 linenr_T lnum; 5529 colnr_T col; 5530 buf_T *buf; 5531 char_u *sfname; 5532 char_u *xline; 5533 5534 /* Handle long line and escaped characters. */ 5535 xline = viminfo_readstring(virp, 1, FALSE); 5536 5537 /* don't read in if there are files on the command-line or if writing: */ 5538 if (xline != NULL && !writing && ARGCOUNT == 0 5539 && find_viminfo_parameter('%') != NULL) 5540 { 5541 /* Format is: <fname> Tab <lnum> Tab <col>. 5542 * Watch out for a Tab in the file name, work from the end. */ 5543 lnum = 0; 5544 col = 0; 5545 tab = vim_strrchr(xline, '\t'); 5546 if (tab != NULL) 5547 { 5548 *tab++ = '\0'; 5549 col = (colnr_T)atoi((char *)tab); 5550 tab = vim_strrchr(xline, '\t'); 5551 if (tab != NULL) 5552 { 5553 *tab++ = '\0'; 5554 lnum = atol((char *)tab); 5555 } 5556 } 5557 5558 /* Expand "~/" in the file name at "line + 1" to a full path. 5559 * Then try shortening it by comparing with the current directory */ 5560 expand_env(xline, NameBuff, MAXPATHL); 5561 sfname = shorten_fname1(NameBuff); 5562 5563 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED); 5564 if (buf != NULL) /* just in case... */ 5565 { 5566 buf->b_last_cursor.lnum = lnum; 5567 buf->b_last_cursor.col = col; 5568 buflist_setfpos(buf, curwin, lnum, col, FALSE); 5569 } 5570 } 5571 vim_free(xline); 5572 5573 return viminfo_readline(virp); 5574 } 5575 5576 void 5577 write_viminfo_bufferlist(FILE *fp) 5578 { 5579 buf_T *buf; 5580 win_T *win; 5581 tabpage_T *tp; 5582 char_u *line; 5583 int max_buffers; 5584 5585 if (find_viminfo_parameter('%') == NULL) 5586 return; 5587 5588 /* Without a number -1 is returned: do all buffers. */ 5589 max_buffers = get_viminfo_parameter('%'); 5590 5591 /* Allocate room for the file name, lnum and col. */ 5592 #define LINE_BUF_LEN (MAXPATHL + 40) 5593 line = alloc(LINE_BUF_LEN); 5594 if (line == NULL) 5595 return; 5596 5597 FOR_ALL_TAB_WINDOWS(tp, win) 5598 set_last_cursor(win); 5599 5600 fputs(_("\n# Buffer list:\n"), fp); 5601 FOR_ALL_BUFFERS(buf) 5602 { 5603 if (buf->b_fname == NULL 5604 || !buf->b_p_bl 5605 #ifdef FEAT_QUICKFIX 5606 || bt_quickfix(buf) 5607 #endif 5608 #ifdef FEAT_TERMINAL 5609 || bt_terminal(buf) 5610 #endif 5611 || removable(buf->b_ffname)) 5612 continue; 5613 5614 if (max_buffers-- == 0) 5615 break; 5616 putc('%', fp); 5617 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE); 5618 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d", 5619 (long)buf->b_last_cursor.lnum, 5620 buf->b_last_cursor.col); 5621 viminfo_writestring(fp, line); 5622 } 5623 vim_free(line); 5624 } 5625 #endif 5626 5627 /* 5628 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty. 5629 */ 5630 int 5631 bt_normal(buf_T *buf) 5632 { 5633 return buf != NULL && buf->b_p_bt[0] == NUL; 5634 } 5635 5636 #if defined(FEAT_QUICKFIX) || defined(PROTO) 5637 /* 5638 * Return TRUE if "buf" is the quickfix buffer. 5639 */ 5640 int 5641 bt_quickfix(buf_T *buf) 5642 { 5643 return buf != NULL && buf->b_p_bt[0] == 'q'; 5644 } 5645 #endif 5646 5647 #if defined(FEAT_TERMINAL) || defined(PROTO) 5648 /* 5649 * Return TRUE if "buf" is a terminal buffer. 5650 */ 5651 int 5652 bt_terminal(buf_T *buf) 5653 { 5654 return buf != NULL && buf->b_p_bt[0] == 't'; 5655 } 5656 #endif 5657 5658 /* 5659 * Return TRUE if "buf" is a help buffer. 5660 */ 5661 int 5662 bt_help(buf_T *buf) 5663 { 5664 return buf != NULL && buf->b_help; 5665 } 5666 5667 /* 5668 * Return TRUE if "buf" is a prompt buffer. 5669 */ 5670 int 5671 bt_prompt(buf_T *buf) 5672 { 5673 return buf != NULL && buf->b_p_bt[0] == 'p'; 5674 } 5675 5676 /* 5677 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt" 5678 * buffer. This means the buffer name is not a file name. 5679 */ 5680 int 5681 bt_nofile(buf_T *buf) 5682 { 5683 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f') 5684 || buf->b_p_bt[0] == 'a' 5685 || buf->b_p_bt[0] == 't' 5686 || buf->b_p_bt[0] == 'p'); 5687 } 5688 5689 /* 5690 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt" 5691 * buffer. 5692 */ 5693 int 5694 bt_dontwrite(buf_T *buf) 5695 { 5696 return buf != NULL && (buf->b_p_bt[0] == 'n' 5697 || buf->b_p_bt[0] == 't' 5698 || buf->b_p_bt[0] == 'p'); 5699 } 5700 5701 #if defined(FEAT_QUICKFIX) || defined(PROTO) 5702 int 5703 bt_dontwrite_msg(buf_T *buf) 5704 { 5705 if (bt_dontwrite(buf)) 5706 { 5707 emsg(_("E382: Cannot write, 'buftype' option is set")); 5708 return TRUE; 5709 } 5710 return FALSE; 5711 } 5712 #endif 5713 5714 /* 5715 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide" 5716 * and 'bufhidden'. 5717 */ 5718 int 5719 buf_hide(buf_T *buf) 5720 { 5721 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */ 5722 switch (buf->b_p_bh[0]) 5723 { 5724 case 'u': /* "unload" */ 5725 case 'w': /* "wipe" */ 5726 case 'd': return FALSE; /* "delete" */ 5727 case 'h': return TRUE; /* "hide" */ 5728 } 5729 return (p_hid || cmdmod.hide); 5730 } 5731 5732 /* 5733 * Return special buffer name. 5734 * Returns NULL when the buffer has a normal file name. 5735 */ 5736 char_u * 5737 buf_spname(buf_T *buf) 5738 { 5739 #if defined(FEAT_QUICKFIX) 5740 if (bt_quickfix(buf)) 5741 { 5742 /* 5743 * Differentiate between the quickfix and location list buffers using 5744 * the buffer number stored in the global quickfix stack. 5745 */ 5746 if (buf->b_fnum == qf_stack_get_bufnr()) 5747 return (char_u *)_(msg_qflist); 5748 else 5749 return (char_u *)_(msg_loclist); 5750 } 5751 #endif 5752 5753 /* There is no _file_ when 'buftype' is "nofile", b_sfname 5754 * contains the name as specified by the user. */ 5755 if (bt_nofile(buf)) 5756 { 5757 #ifdef FEAT_TERMINAL 5758 if (buf->b_term != NULL) 5759 return term_get_status_text(buf->b_term); 5760 #endif 5761 if (buf->b_fname != NULL) 5762 return buf->b_fname; 5763 #ifdef FEAT_JOB_CHANNEL 5764 if (bt_prompt(buf)) 5765 return (char_u *)_("[Prompt]"); 5766 #endif 5767 return (char_u *)_("[Scratch]"); 5768 } 5769 5770 if (buf->b_fname == NULL) 5771 return (char_u *)_("[No Name]"); 5772 return NULL; 5773 } 5774 5775 #if defined(FEAT_JOB_CHANNEL) \ 5776 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \ 5777 || defined(PROTO) 5778 # define SWITCH_TO_WIN 5779 5780 /* 5781 * Find a window that contains "buf" and switch to it. 5782 * If there is no such window, use the current window and change "curbuf". 5783 * Caller must initialize save_curbuf to NULL. 5784 * restore_win_for_buf() MUST be called later! 5785 */ 5786 void 5787 switch_to_win_for_buf( 5788 buf_T *buf, 5789 win_T **save_curwinp, 5790 tabpage_T **save_curtabp, 5791 bufref_T *save_curbuf) 5792 { 5793 win_T *wp; 5794 tabpage_T *tp; 5795 5796 if (find_win_for_buf(buf, &wp, &tp) == FAIL) 5797 switch_buffer(save_curbuf, buf); 5798 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL) 5799 { 5800 restore_win(*save_curwinp, *save_curtabp, TRUE); 5801 switch_buffer(save_curbuf, buf); 5802 } 5803 } 5804 5805 void 5806 restore_win_for_buf( 5807 win_T *save_curwin, 5808 tabpage_T *save_curtab, 5809 bufref_T *save_curbuf) 5810 { 5811 if (save_curbuf->br_buf == NULL) 5812 restore_win(save_curwin, save_curtab, TRUE); 5813 else 5814 restore_buffer(save_curbuf); 5815 } 5816 #endif 5817 5818 #if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO) 5819 /* 5820 * Find a window for buffer "buf". 5821 * If found OK is returned and "wp" and "tp" are set to the window and tabpage. 5822 * If not found FAIL is returned. 5823 */ 5824 int 5825 find_win_for_buf( 5826 buf_T *buf, 5827 win_T **wp, 5828 tabpage_T **tp) 5829 { 5830 FOR_ALL_TAB_WINDOWS(*tp, *wp) 5831 if ((*wp)->w_buffer == buf) 5832 goto win_found; 5833 return FAIL; 5834 win_found: 5835 return OK; 5836 } 5837 #endif 5838 5839 /* 5840 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. 5841 */ 5842 void 5843 set_buflisted(int on) 5844 { 5845 if (on != curbuf->b_p_bl) 5846 { 5847 curbuf->b_p_bl = on; 5848 if (on) 5849 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); 5850 else 5851 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); 5852 } 5853 } 5854 5855 /* 5856 * Read the file for "buf" again and check if the contents changed. 5857 * Return TRUE if it changed or this could not be checked. 5858 */ 5859 int 5860 buf_contents_changed(buf_T *buf) 5861 { 5862 buf_T *newbuf; 5863 int differ = TRUE; 5864 linenr_T lnum; 5865 aco_save_T aco; 5866 exarg_T ea; 5867 5868 /* Allocate a buffer without putting it in the buffer list. */ 5869 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); 5870 if (newbuf == NULL) 5871 return TRUE; 5872 5873 /* Force the 'fileencoding' and 'fileformat' to be equal. */ 5874 if (prep_exarg(&ea, buf) == FAIL) 5875 { 5876 wipe_buffer(newbuf, FALSE); 5877 return TRUE; 5878 } 5879 5880 /* set curwin/curbuf to buf and save a few things */ 5881 aucmd_prepbuf(&aco, newbuf); 5882 5883 if (ml_open(curbuf) == OK 5884 && readfile(buf->b_ffname, buf->b_fname, 5885 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, 5886 &ea, READ_NEW | READ_DUMMY) == OK) 5887 { 5888 /* compare the two files line by line */ 5889 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) 5890 { 5891 differ = FALSE; 5892 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) 5893 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) 5894 { 5895 differ = TRUE; 5896 break; 5897 } 5898 } 5899 } 5900 vim_free(ea.cmd); 5901 5902 /* restore curwin/curbuf and a few other things */ 5903 aucmd_restbuf(&aco); 5904 5905 if (curbuf != newbuf) /* safety check */ 5906 wipe_buffer(newbuf, FALSE); 5907 5908 return differ; 5909 } 5910 5911 /* 5912 * Wipe out a buffer and decrement the last buffer number if it was used for 5913 * this buffer. Call this to wipe out a temp buffer that does not contain any 5914 * marks. 5915 */ 5916 void 5917 wipe_buffer( 5918 buf_T *buf, 5919 int aucmd UNUSED) /* When TRUE trigger autocommands. */ 5920 { 5921 if (buf->b_fnum == top_file_num - 1) 5922 --top_file_num; 5923 5924 if (!aucmd) /* Don't trigger BufDelete autocommands here. */ 5925 block_autocmds(); 5926 5927 close_buffer(NULL, buf, DOBUF_WIPE, FALSE); 5928 5929 if (!aucmd) 5930 unblock_autocmds(); 5931 } 5932