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