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