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