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 | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 254 | do_modelines(FALSE); |
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 | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 750 | do_modelines(FALSE); |
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 | 0f7d31a | 2005-07-02 23:09:03 +0000 | [diff] [blame] | 1716 | clear_string_option(&buf->b_p_spc); |
Bram Moolenaar | 86bc1fb | 2005-06-07 20:58:01 +0000 | [diff] [blame] | 1717 | clear_string_option(&buf->b_p_spf); |
Bram Moolenaar | 0f7d31a | 2005-07-02 23:09:03 +0000 | [diff] [blame] | 1718 | vim_free(buf->b_cap_prog); |
| 1719 | buf->b_cap_prog = NULL; |
Bram Moolenaar | a0dea67 | 2005-03-20 22:23:10 +0000 | [diff] [blame] | 1720 | clear_string_option(&buf->b_p_spl); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1721 | #endif |
| 1722 | #ifdef FEAT_SEARCHPATH |
| 1723 | clear_string_option(&buf->b_p_sua); |
| 1724 | #endif |
| 1725 | #ifdef FEAT_AUTOCMD |
| 1726 | clear_string_option(&buf->b_p_ft); |
| 1727 | #endif |
| 1728 | #ifdef FEAT_OSFILETYPE |
| 1729 | clear_string_option(&buf->b_p_oft); |
| 1730 | #endif |
| 1731 | #ifdef FEAT_CINDENT |
| 1732 | clear_string_option(&buf->b_p_cink); |
| 1733 | clear_string_option(&buf->b_p_cino); |
| 1734 | #endif |
| 1735 | #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT) |
| 1736 | clear_string_option(&buf->b_p_cinw); |
| 1737 | #endif |
| 1738 | #ifdef FEAT_INS_EXPAND |
| 1739 | clear_string_option(&buf->b_p_cpt); |
| 1740 | #endif |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 1741 | #ifdef FEAT_COMPL_FUNC |
| 1742 | clear_string_option(&buf->b_p_cfu); |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 1743 | clear_string_option(&buf->b_p_ofu); |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 1744 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1745 | #ifdef FEAT_QUICKFIX |
| 1746 | clear_string_option(&buf->b_p_gp); |
| 1747 | clear_string_option(&buf->b_p_mp); |
| 1748 | clear_string_option(&buf->b_p_efm); |
| 1749 | #endif |
| 1750 | clear_string_option(&buf->b_p_ep); |
| 1751 | clear_string_option(&buf->b_p_path); |
| 1752 | clear_string_option(&buf->b_p_tags); |
| 1753 | #ifdef FEAT_INS_EXPAND |
| 1754 | clear_string_option(&buf->b_p_dict); |
| 1755 | clear_string_option(&buf->b_p_tsr); |
| 1756 | #endif |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 1757 | #ifdef FEAT_TEXTOBJ |
| 1758 | clear_string_option(&buf->b_p_qe); |
| 1759 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1760 | buf->b_p_ar = -1; |
| 1761 | } |
| 1762 | |
| 1763 | /* |
| 1764 | * get alternate file n |
| 1765 | * set linenr to lnum or altfpos.lnum if lnum == 0 |
| 1766 | * also set cursor column to altfpos.col if 'startofline' is not set. |
| 1767 | * if (options & GETF_SETMARK) call setpcmark() |
| 1768 | * if (options & GETF_ALT) we are jumping to an alternate file. |
| 1769 | * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping |
| 1770 | * |
| 1771 | * return FAIL for failure, OK for success |
| 1772 | */ |
| 1773 | int |
| 1774 | buflist_getfile(n, lnum, options, forceit) |
| 1775 | int n; |
| 1776 | linenr_T lnum; |
| 1777 | int options; |
| 1778 | int forceit; |
| 1779 | { |
| 1780 | buf_T *buf; |
| 1781 | #ifdef FEAT_WINDOWS |
| 1782 | win_T *wp = NULL; |
| 1783 | #endif |
| 1784 | pos_T *fpos; |
| 1785 | colnr_T col; |
| 1786 | |
| 1787 | buf = buflist_findnr(n); |
| 1788 | if (buf == NULL) |
| 1789 | { |
| 1790 | if ((options & GETF_ALT) && n == 0) |
| 1791 | EMSG(_(e_noalt)); |
| 1792 | else |
| 1793 | EMSGN(_("E92: Buffer %ld not found"), n); |
| 1794 | return FAIL; |
| 1795 | } |
| 1796 | |
| 1797 | /* if alternate file is the current buffer, nothing to do */ |
| 1798 | if (buf == curbuf) |
| 1799 | return OK; |
| 1800 | |
Bram Moolenaar | 2d3f489 | 2006-01-20 23:02:51 +0000 | [diff] [blame] | 1801 | if (text_locked()) |
Bram Moolenaar | 05a7bb3 | 2006-01-19 22:09:32 +0000 | [diff] [blame] | 1802 | { |
Bram Moolenaar | 2d3f489 | 2006-01-20 23:02:51 +0000 | [diff] [blame] | 1803 | text_locked_msg(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1804 | return FAIL; |
Bram Moolenaar | 05a7bb3 | 2006-01-19 22:09:32 +0000 | [diff] [blame] | 1805 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1806 | |
| 1807 | /* altfpos may be changed by getfile(), get it now */ |
| 1808 | if (lnum == 0) |
| 1809 | { |
| 1810 | fpos = buflist_findfpos(buf); |
| 1811 | lnum = fpos->lnum; |
| 1812 | col = fpos->col; |
| 1813 | } |
| 1814 | else |
| 1815 | col = 0; |
| 1816 | |
| 1817 | #ifdef FEAT_WINDOWS |
| 1818 | if (options & GETF_SWITCH) |
| 1819 | { |
| 1820 | /* use existing open window for buffer if wanted */ |
| 1821 | if (vim_strchr(p_swb, 'u')) /* useopen */ |
| 1822 | wp = buf_jump_open_win(buf); |
| 1823 | /* split window if wanted ("split") */ |
| 1824 | if (wp == NULL && vim_strchr(p_swb, 't') && !bufempty()) |
| 1825 | { |
| 1826 | if (win_split(0, 0) == FAIL) |
| 1827 | return FAIL; |
| 1828 | # ifdef FEAT_SCROLLBIND |
| 1829 | curwin->w_p_scb = FALSE; |
| 1830 | # endif |
| 1831 | } |
| 1832 | } |
| 1833 | #endif |
| 1834 | |
| 1835 | ++RedrawingDisabled; |
| 1836 | if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK), |
| 1837 | lnum, forceit) <= 0) |
| 1838 | { |
| 1839 | --RedrawingDisabled; |
| 1840 | |
| 1841 | /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */ |
| 1842 | if (!p_sol && col != 0) |
| 1843 | { |
| 1844 | curwin->w_cursor.col = col; |
| 1845 | check_cursor_col(); |
| 1846 | #ifdef FEAT_VIRTUALEDIT |
| 1847 | curwin->w_cursor.coladd = 0; |
| 1848 | #endif |
| 1849 | curwin->w_set_curswant = TRUE; |
| 1850 | } |
| 1851 | return OK; |
| 1852 | } |
| 1853 | --RedrawingDisabled; |
| 1854 | return FAIL; |
| 1855 | } |
| 1856 | |
| 1857 | /* |
| 1858 | * go to the last know line number for the current buffer |
| 1859 | */ |
| 1860 | void |
| 1861 | buflist_getfpos() |
| 1862 | { |
| 1863 | pos_T *fpos; |
| 1864 | |
| 1865 | fpos = buflist_findfpos(curbuf); |
| 1866 | |
| 1867 | curwin->w_cursor.lnum = fpos->lnum; |
| 1868 | check_cursor_lnum(); |
| 1869 | |
| 1870 | if (p_sol) |
| 1871 | curwin->w_cursor.col = 0; |
| 1872 | else |
| 1873 | { |
| 1874 | curwin->w_cursor.col = fpos->col; |
| 1875 | check_cursor_col(); |
| 1876 | #ifdef FEAT_VIRTUALEDIT |
| 1877 | curwin->w_cursor.coladd = 0; |
| 1878 | #endif |
| 1879 | curwin->w_set_curswant = TRUE; |
| 1880 | } |
| 1881 | } |
| 1882 | |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 1883 | #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO) |
| 1884 | /* |
| 1885 | * Find file in buffer list by name (it has to be for the current window). |
| 1886 | * Returns NULL if not found. |
| 1887 | */ |
| 1888 | buf_T * |
| 1889 | buflist_findname_exp(fname) |
| 1890 | char_u *fname; |
| 1891 | { |
| 1892 | char_u *ffname; |
| 1893 | buf_T *buf = NULL; |
| 1894 | |
| 1895 | /* First make the name into a full path name */ |
| 1896 | ffname = FullName_save(fname, |
| 1897 | #ifdef UNIX |
| 1898 | TRUE /* force expansion, get rid of symbolic links */ |
| 1899 | #else |
| 1900 | FALSE |
| 1901 | #endif |
| 1902 | ); |
| 1903 | if (ffname != NULL) |
| 1904 | { |
| 1905 | buf = buflist_findname(ffname); |
| 1906 | vim_free(ffname); |
| 1907 | } |
| 1908 | return buf; |
| 1909 | } |
| 1910 | #endif |
| 1911 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1912 | /* |
| 1913 | * Find file in buffer list by name (it has to be for the current window). |
| 1914 | * "ffname" must have a full path. |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 1915 | * Skips dummy buffers. |
| 1916 | * Returns NULL if not found. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1917 | */ |
| 1918 | buf_T * |
| 1919 | buflist_findname(ffname) |
| 1920 | char_u *ffname; |
| 1921 | { |
| 1922 | #ifdef UNIX |
| 1923 | struct stat st; |
| 1924 | |
| 1925 | if (mch_stat((char *)ffname, &st) < 0) |
| 1926 | st.st_dev = (dev_T)-1; |
| 1927 | return buflist_findname_stat(ffname, &st); |
| 1928 | } |
| 1929 | |
| 1930 | /* |
| 1931 | * Same as buflist_findname(), but pass the stat structure to avoid getting it |
| 1932 | * twice for the same file. |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 1933 | * Returns NULL if not found. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1934 | */ |
| 1935 | static buf_T * |
| 1936 | buflist_findname_stat(ffname, stp) |
| 1937 | char_u *ffname; |
| 1938 | struct stat *stp; |
| 1939 | { |
| 1940 | #endif |
| 1941 | buf_T *buf; |
| 1942 | |
| 1943 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 1944 | if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1945 | #ifdef UNIX |
| 1946 | , stp |
| 1947 | #endif |
| 1948 | )) |
| 1949 | return buf; |
| 1950 | return NULL; |
| 1951 | } |
| 1952 | |
| 1953 | #if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) || defined(PROTO) |
| 1954 | /* |
| 1955 | * Find file in buffer list by a regexp pattern. |
| 1956 | * Return fnum of the found buffer. |
| 1957 | * Return < 0 for error. |
| 1958 | */ |
| 1959 | /*ARGSUSED*/ |
| 1960 | int |
| 1961 | buflist_findpat(pattern, pattern_end, unlisted, diffmode) |
| 1962 | char_u *pattern; |
| 1963 | char_u *pattern_end; /* pointer to first char after pattern */ |
| 1964 | int unlisted; /* find unlisted buffers */ |
| 1965 | int diffmode; /* find diff-mode buffers only */ |
| 1966 | { |
| 1967 | buf_T *buf; |
| 1968 | regprog_T *prog; |
| 1969 | int match = -1; |
| 1970 | int find_listed; |
| 1971 | char_u *pat; |
| 1972 | char_u *patend; |
| 1973 | int attempt; |
| 1974 | char_u *p; |
| 1975 | int toggledollar; |
| 1976 | |
| 1977 | if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#')) |
| 1978 | { |
| 1979 | if (*pattern == '%') |
| 1980 | match = curbuf->b_fnum; |
| 1981 | else |
| 1982 | match = curwin->w_alt_fnum; |
| 1983 | #ifdef FEAT_DIFF |
| 1984 | if (diffmode && !diff_mode_buf(buflist_findnr(match))) |
| 1985 | match = -1; |
| 1986 | #endif |
| 1987 | } |
| 1988 | |
| 1989 | /* |
| 1990 | * Try four ways of matching a listed buffer: |
| 1991 | * attempt == 0: without '^' or '$' (at any position) |
| 1992 | * attempt == 1: with '^' at start (only at postion 0) |
| 1993 | * attempt == 2: with '$' at end (only match at end) |
| 1994 | * attempt == 3: with '^' at start and '$' at end (only full match) |
| 1995 | * Repeat this for finding an unlisted buffer if there was no matching |
| 1996 | * listed buffer. |
| 1997 | */ |
| 1998 | else |
| 1999 | { |
| 2000 | pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); |
| 2001 | if (pat == NULL) |
| 2002 | return -1; |
| 2003 | patend = pat + STRLEN(pat) - 1; |
| 2004 | toggledollar = (patend > pat && *patend == '$'); |
| 2005 | |
| 2006 | /* First try finding a listed buffer. If not found and "unlisted" |
| 2007 | * is TRUE, try finding an unlisted buffer. */ |
| 2008 | find_listed = TRUE; |
| 2009 | for (;;) |
| 2010 | { |
| 2011 | for (attempt = 0; attempt <= 3; ++attempt) |
| 2012 | { |
| 2013 | /* may add '^' and '$' */ |
| 2014 | if (toggledollar) |
| 2015 | *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */ |
| 2016 | p = pat; |
| 2017 | if (*p == '^' && !(attempt & 1)) /* add/remove '^' */ |
| 2018 | ++p; |
| 2019 | prog = vim_regcomp(p, p_magic ? RE_MAGIC : 0); |
| 2020 | if (prog == NULL) |
| 2021 | { |
| 2022 | vim_free(pat); |
| 2023 | return -1; |
| 2024 | } |
| 2025 | |
| 2026 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2027 | if (buf->b_p_bl == find_listed |
| 2028 | #ifdef FEAT_DIFF |
| 2029 | && (!diffmode || diff_mode_buf(buf)) |
| 2030 | #endif |
| 2031 | && buflist_match(prog, buf) != NULL) |
| 2032 | { |
| 2033 | if (match >= 0) /* already found a match */ |
| 2034 | { |
| 2035 | match = -2; |
| 2036 | break; |
| 2037 | } |
| 2038 | match = buf->b_fnum; /* remember first match */ |
| 2039 | } |
| 2040 | |
| 2041 | vim_free(prog); |
| 2042 | if (match >= 0) /* found one match */ |
| 2043 | break; |
| 2044 | } |
| 2045 | |
| 2046 | /* Only search for unlisted buffers if there was no match with |
| 2047 | * a listed buffer. */ |
| 2048 | if (!unlisted || !find_listed || match != -1) |
| 2049 | break; |
| 2050 | find_listed = FALSE; |
| 2051 | } |
| 2052 | |
| 2053 | vim_free(pat); |
| 2054 | } |
| 2055 | |
| 2056 | if (match == -2) |
| 2057 | EMSG2(_("E93: More than one match for %s"), pattern); |
| 2058 | else if (match < 0) |
| 2059 | EMSG2(_("E94: No matching buffer for %s"), pattern); |
| 2060 | return match; |
| 2061 | } |
| 2062 | #endif |
| 2063 | |
| 2064 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 2065 | |
| 2066 | /* |
| 2067 | * Find all buffer names that match. |
| 2068 | * For command line expansion of ":buf" and ":sbuf". |
| 2069 | * Return OK if matches found, FAIL otherwise. |
| 2070 | */ |
| 2071 | int |
| 2072 | ExpandBufnames(pat, num_file, file, options) |
| 2073 | char_u *pat; |
| 2074 | int *num_file; |
| 2075 | char_u ***file; |
| 2076 | int options; |
| 2077 | { |
| 2078 | int count = 0; |
| 2079 | buf_T *buf; |
| 2080 | int round; |
| 2081 | char_u *p; |
| 2082 | int attempt; |
| 2083 | regprog_T *prog; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2084 | char_u *patc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2085 | |
| 2086 | *num_file = 0; /* return values in case of FAIL */ |
| 2087 | *file = NULL; |
| 2088 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2089 | /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */ |
| 2090 | if (*pat == '^') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2091 | { |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2092 | patc = alloc((unsigned)STRLEN(pat) + 11); |
| 2093 | if (patc == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2094 | return FAIL; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2095 | STRCPY(patc, "\\(^\\|[\\/]\\)"); |
| 2096 | STRCPY(patc + 11, pat + 1); |
| 2097 | } |
| 2098 | else |
| 2099 | patc = pat; |
| 2100 | |
| 2101 | /* |
| 2102 | * attempt == 0: try match with '\<', match at start of word |
Bram Moolenaar | d8a4e56 | 2005-05-18 22:06:55 +0000 | [diff] [blame] | 2103 | * attempt == 1: try match without '\<', match anywhere |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2104 | */ |
Bram Moolenaar | d8a4e56 | 2005-05-18 22:06:55 +0000 | [diff] [blame] | 2105 | for (attempt = 0; attempt <= 1; ++attempt) |
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 | if (attempt > 0 && patc == pat) |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2108 | break; /* there was no anchor, no need to try again */ |
Bram Moolenaar | d8a4e56 | 2005-05-18 22:06:55 +0000 | [diff] [blame] | 2109 | prog = vim_regcomp(patc + attempt * 11, RE_MAGIC); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2110 | if (prog == NULL) |
| 2111 | { |
| 2112 | if (patc != pat) |
| 2113 | vim_free(patc); |
| 2114 | return FAIL; |
| 2115 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2116 | |
| 2117 | /* |
| 2118 | * round == 1: Count the matches. |
| 2119 | * round == 2: Build the array to keep the matches. |
| 2120 | */ |
| 2121 | for (round = 1; round <= 2; ++round) |
| 2122 | { |
| 2123 | count = 0; |
| 2124 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2125 | { |
| 2126 | if (!buf->b_p_bl) /* skip unlisted buffers */ |
| 2127 | continue; |
| 2128 | p = buflist_match(prog, buf); |
| 2129 | if (p != NULL) |
| 2130 | { |
| 2131 | if (round == 1) |
| 2132 | ++count; |
| 2133 | else |
| 2134 | { |
| 2135 | if (options & WILD_HOME_REPLACE) |
| 2136 | p = home_replace_save(buf, p); |
| 2137 | else |
| 2138 | p = vim_strsave(p); |
| 2139 | (*file)[count++] = p; |
| 2140 | } |
| 2141 | } |
| 2142 | } |
| 2143 | if (count == 0) /* no match found, break here */ |
| 2144 | break; |
| 2145 | if (round == 1) |
| 2146 | { |
| 2147 | *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); |
| 2148 | if (*file == NULL) |
| 2149 | { |
| 2150 | vim_free(prog); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2151 | if (patc != pat) |
| 2152 | vim_free(patc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2153 | return FAIL; |
| 2154 | } |
| 2155 | } |
| 2156 | } |
| 2157 | vim_free(prog); |
| 2158 | if (count) /* match(es) found, break here */ |
| 2159 | break; |
| 2160 | } |
| 2161 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2162 | if (patc != pat) |
| 2163 | vim_free(patc); |
| 2164 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2165 | *num_file = count; |
| 2166 | return (count == 0 ? FAIL : OK); |
| 2167 | } |
| 2168 | |
| 2169 | #endif /* FEAT_CMDL_COMPL */ |
| 2170 | |
| 2171 | #ifdef HAVE_BUFLIST_MATCH |
| 2172 | /* |
| 2173 | * Check for a match on the file name for buffer "buf" with regprog "prog". |
| 2174 | */ |
| 2175 | static char_u * |
| 2176 | buflist_match(prog, buf) |
| 2177 | regprog_T *prog; |
| 2178 | buf_T *buf; |
| 2179 | { |
| 2180 | char_u *match; |
| 2181 | |
| 2182 | /* First try the short file name, then the long file name. */ |
| 2183 | match = fname_match(prog, buf->b_sfname); |
| 2184 | if (match == NULL) |
| 2185 | match = fname_match(prog, buf->b_ffname); |
| 2186 | |
| 2187 | return match; |
| 2188 | } |
| 2189 | |
| 2190 | /* |
| 2191 | * Try matching the regexp in "prog" with file name "name". |
| 2192 | * Return "name" when there is a match, NULL when not. |
| 2193 | */ |
| 2194 | static char_u * |
| 2195 | fname_match(prog, name) |
| 2196 | regprog_T *prog; |
| 2197 | char_u *name; |
| 2198 | { |
| 2199 | char_u *match = NULL; |
| 2200 | char_u *p; |
| 2201 | regmatch_T regmatch; |
| 2202 | |
| 2203 | if (name != NULL) |
| 2204 | { |
| 2205 | regmatch.regprog = prog; |
| 2206 | #ifdef CASE_INSENSITIVE_FILENAME |
| 2207 | regmatch.rm_ic = TRUE; /* Always ignore case */ |
| 2208 | #else |
| 2209 | regmatch.rm_ic = FALSE; /* Never ignore case */ |
| 2210 | #endif |
| 2211 | |
| 2212 | if (vim_regexec(®match, name, (colnr_T)0)) |
| 2213 | match = name; |
| 2214 | else |
| 2215 | { |
| 2216 | /* Replace $(HOME) with '~' and try matching again. */ |
| 2217 | p = home_replace_save(NULL, name); |
| 2218 | if (p != NULL && vim_regexec(®match, p, (colnr_T)0)) |
| 2219 | match = name; |
| 2220 | vim_free(p); |
| 2221 | } |
| 2222 | } |
| 2223 | |
| 2224 | return match; |
| 2225 | } |
| 2226 | #endif |
| 2227 | |
| 2228 | /* |
| 2229 | * find file in buffer list by number |
| 2230 | */ |
| 2231 | buf_T * |
| 2232 | buflist_findnr(nr) |
| 2233 | int nr; |
| 2234 | { |
| 2235 | buf_T *buf; |
| 2236 | |
| 2237 | if (nr == 0) |
| 2238 | nr = curwin->w_alt_fnum; |
| 2239 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2240 | if (buf->b_fnum == nr) |
| 2241 | return (buf); |
| 2242 | return NULL; |
| 2243 | } |
| 2244 | |
| 2245 | /* |
| 2246 | * Get name of file 'n' in the buffer list. |
| 2247 | * When the file has no name an empty string is returned. |
| 2248 | * home_replace() is used to shorten the file name (used for marks). |
| 2249 | * Returns a pointer to allocated memory, of NULL when failed. |
| 2250 | */ |
| 2251 | char_u * |
| 2252 | buflist_nr2name(n, fullname, helptail) |
| 2253 | int n; |
| 2254 | int fullname; |
| 2255 | int helptail; /* for help buffers return tail only */ |
| 2256 | { |
| 2257 | buf_T *buf; |
| 2258 | |
| 2259 | buf = buflist_findnr(n); |
| 2260 | if (buf == NULL) |
| 2261 | return NULL; |
| 2262 | return home_replace_save(helptail ? buf : NULL, |
| 2263 | fullname ? buf->b_ffname : buf->b_fname); |
| 2264 | } |
| 2265 | |
| 2266 | /* |
| 2267 | * Set the "lnum" and "col" for the buffer "buf" and the current window. |
| 2268 | * When "copy_options" is TRUE save the local window option values. |
| 2269 | * When "lnum" is 0 only do the options. |
| 2270 | */ |
| 2271 | static void |
| 2272 | buflist_setfpos(buf, win, lnum, col, copy_options) |
| 2273 | buf_T *buf; |
| 2274 | win_T *win; |
| 2275 | linenr_T lnum; |
| 2276 | colnr_T col; |
| 2277 | int copy_options; |
| 2278 | { |
| 2279 | wininfo_T *wip; |
| 2280 | |
| 2281 | for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) |
| 2282 | if (wip->wi_win == win) |
| 2283 | break; |
| 2284 | if (wip == NULL) |
| 2285 | { |
| 2286 | /* allocate a new entry */ |
| 2287 | wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T)); |
| 2288 | if (wip == NULL) |
| 2289 | return; |
| 2290 | wip->wi_win = win; |
| 2291 | if (lnum == 0) /* set lnum even when it's 0 */ |
| 2292 | lnum = 1; |
| 2293 | } |
| 2294 | else |
| 2295 | { |
| 2296 | /* remove the entry from the list */ |
| 2297 | if (wip->wi_prev) |
| 2298 | wip->wi_prev->wi_next = wip->wi_next; |
| 2299 | else |
| 2300 | buf->b_wininfo = wip->wi_next; |
| 2301 | if (wip->wi_next) |
| 2302 | wip->wi_next->wi_prev = wip->wi_prev; |
| 2303 | if (copy_options && wip->wi_optset) |
| 2304 | { |
| 2305 | clear_winopt(&wip->wi_opt); |
| 2306 | #ifdef FEAT_FOLDING |
| 2307 | deleteFoldRecurse(&wip->wi_folds); |
| 2308 | #endif |
| 2309 | } |
| 2310 | } |
| 2311 | if (lnum != 0) |
| 2312 | { |
| 2313 | wip->wi_fpos.lnum = lnum; |
| 2314 | wip->wi_fpos.col = col; |
| 2315 | } |
| 2316 | if (copy_options) |
| 2317 | { |
| 2318 | /* Save the window-specific option values. */ |
| 2319 | copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); |
| 2320 | #ifdef FEAT_FOLDING |
| 2321 | wip->wi_fold_manual = win->w_fold_manual; |
| 2322 | cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); |
| 2323 | #endif |
| 2324 | wip->wi_optset = TRUE; |
| 2325 | } |
| 2326 | |
| 2327 | /* insert the entry in front of the list */ |
| 2328 | wip->wi_next = buf->b_wininfo; |
| 2329 | buf->b_wininfo = wip; |
| 2330 | wip->wi_prev = NULL; |
| 2331 | if (wip->wi_next) |
| 2332 | wip->wi_next->wi_prev = wip; |
| 2333 | |
| 2334 | return; |
| 2335 | } |
| 2336 | |
| 2337 | /* |
| 2338 | * Find info for the current window in buffer "buf". |
| 2339 | * If not found, return the info for the most recently used window. |
| 2340 | * Returns NULL when there isn't any info. |
| 2341 | */ |
| 2342 | static wininfo_T * |
| 2343 | find_wininfo(buf) |
| 2344 | buf_T *buf; |
| 2345 | { |
| 2346 | wininfo_T *wip; |
| 2347 | |
| 2348 | for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) |
| 2349 | if (wip->wi_win == curwin) |
| 2350 | break; |
| 2351 | if (wip == NULL) /* if no fpos for curwin, use the first in the list */ |
| 2352 | wip = buf->b_wininfo; |
| 2353 | return wip; |
| 2354 | } |
| 2355 | |
| 2356 | /* |
| 2357 | * Reset the local window options to the values last used in this window. |
| 2358 | * If the buffer wasn't used in this window before, use the values from |
| 2359 | * the most recently used window. If the values were never set, use the |
| 2360 | * global values for the window. |
| 2361 | */ |
| 2362 | void |
| 2363 | get_winopts(buf) |
| 2364 | buf_T *buf; |
| 2365 | { |
| 2366 | wininfo_T *wip; |
| 2367 | |
| 2368 | clear_winopt(&curwin->w_onebuf_opt); |
| 2369 | #ifdef FEAT_FOLDING |
| 2370 | clearFolding(curwin); |
| 2371 | #endif |
| 2372 | |
| 2373 | wip = find_wininfo(buf); |
| 2374 | if (wip != NULL && wip->wi_optset) |
| 2375 | { |
| 2376 | copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); |
| 2377 | #ifdef FEAT_FOLDING |
| 2378 | curwin->w_fold_manual = wip->wi_fold_manual; |
| 2379 | curwin->w_foldinvalid = TRUE; |
| 2380 | cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); |
| 2381 | #endif |
| 2382 | } |
| 2383 | else |
| 2384 | copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); |
| 2385 | |
| 2386 | #ifdef FEAT_FOLDING |
| 2387 | /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */ |
| 2388 | if (p_fdls >= 0) |
| 2389 | curwin->w_p_fdl = p_fdls; |
| 2390 | #endif |
Bram Moolenaar | 8fef2ad | 2005-04-23 20:42:23 +0000 | [diff] [blame] | 2391 | |
| 2392 | #ifdef FEAT_SYN_HL |
| 2393 | if (curwin->w_p_spell && *buf->b_p_spl != NUL) |
| 2394 | did_set_spelllang(buf); |
| 2395 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2396 | } |
| 2397 | |
| 2398 | /* |
| 2399 | * Find the position (lnum and col) for the buffer 'buf' for the current |
| 2400 | * window. |
| 2401 | * Returns a pointer to no_position if no position is found. |
| 2402 | */ |
| 2403 | pos_T * |
| 2404 | buflist_findfpos(buf) |
| 2405 | buf_T *buf; |
| 2406 | { |
| 2407 | wininfo_T *wip; |
| 2408 | static pos_T no_position = {1, 0}; |
| 2409 | |
| 2410 | wip = find_wininfo(buf); |
| 2411 | if (wip != NULL) |
| 2412 | return &(wip->wi_fpos); |
| 2413 | else |
| 2414 | return &no_position; |
| 2415 | } |
| 2416 | |
| 2417 | /* |
| 2418 | * Find the lnum for the buffer 'buf' for the current window. |
| 2419 | */ |
| 2420 | linenr_T |
| 2421 | buflist_findlnum(buf) |
| 2422 | buf_T *buf; |
| 2423 | { |
| 2424 | return buflist_findfpos(buf)->lnum; |
| 2425 | } |
| 2426 | |
| 2427 | #if defined(FEAT_LISTCMDS) || defined(PROTO) |
| 2428 | /* |
| 2429 | * List all know file names (for :files and :buffers command). |
| 2430 | */ |
| 2431 | /*ARGSUSED*/ |
| 2432 | void |
| 2433 | buflist_list(eap) |
| 2434 | exarg_T *eap; |
| 2435 | { |
| 2436 | buf_T *buf; |
| 2437 | int len; |
| 2438 | int i; |
| 2439 | |
| 2440 | for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next) |
| 2441 | { |
| 2442 | /* skip unlisted buffers, unless ! was used */ |
| 2443 | if (!buf->b_p_bl && !eap->forceit) |
| 2444 | continue; |
| 2445 | msg_putchar('\n'); |
| 2446 | if (buf_spname(buf) != NULL) |
| 2447 | STRCPY(NameBuff, buf_spname(buf)); |
| 2448 | else |
| 2449 | home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE); |
| 2450 | |
Bram Moolenaar | 50cde82 | 2005-06-05 21:54:54 +0000 | [diff] [blame] | 2451 | 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] | 2452 | buf->b_fnum, |
| 2453 | buf->b_p_bl ? ' ' : 'u', |
| 2454 | buf == curbuf ? '%' : |
| 2455 | (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), |
| 2456 | buf->b_ml.ml_mfp == NULL ? ' ' : |
| 2457 | (buf->b_nwindows == 0 ? 'h' : 'a'), |
| 2458 | !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '), |
| 2459 | (buf->b_flags & BF_READERR) ? 'x' |
Bram Moolenaar | 51485f0 | 2005-06-04 21:55:20 +0000 | [diff] [blame] | 2460 | : (bufIsChanged(buf) ? '+' : ' '), |
| 2461 | NameBuff); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2462 | |
| 2463 | /* put "line 999" in column 40 or after the file name */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2464 | i = 40 - vim_strsize(IObuff); |
| 2465 | do |
| 2466 | { |
| 2467 | IObuff[len++] = ' '; |
| 2468 | } while (--i > 0 && len < IOSIZE - 18); |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2469 | vim_snprintf((char *)IObuff + len, IOSIZE - len, _("line %ld"), |
| 2470 | buf == curbuf ? curwin->w_cursor.lnum |
| 2471 | : (long)buflist_findlnum(buf)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2472 | msg_outtrans(IObuff); |
| 2473 | out_flush(); /* output one line at a time */ |
| 2474 | ui_breakcheck(); |
| 2475 | } |
| 2476 | } |
| 2477 | #endif |
| 2478 | |
| 2479 | /* |
| 2480 | * Get file name and line number for file 'fnum'. |
| 2481 | * Used by DoOneCmd() for translating '%' and '#'. |
| 2482 | * Used by insert_reg() and cmdline_paste() for '#' register. |
| 2483 | * Return FAIL if not found, OK for success. |
| 2484 | */ |
| 2485 | int |
| 2486 | buflist_name_nr(fnum, fname, lnum) |
| 2487 | int fnum; |
| 2488 | char_u **fname; |
| 2489 | linenr_T *lnum; |
| 2490 | { |
| 2491 | buf_T *buf; |
| 2492 | |
| 2493 | buf = buflist_findnr(fnum); |
| 2494 | if (buf == NULL || buf->b_fname == NULL) |
| 2495 | return FAIL; |
| 2496 | |
| 2497 | *fname = buf->b_fname; |
| 2498 | *lnum = buflist_findlnum(buf); |
| 2499 | |
| 2500 | return OK; |
| 2501 | } |
| 2502 | |
| 2503 | /* |
| 2504 | * Set the file name for "buf"' to 'ffname', short file name to 'sfname'. |
| 2505 | * The file name with the full path is also remembered, for when :cd is used. |
| 2506 | * Returns FAIL for failure (file name already in use by other buffer) |
| 2507 | * OK otherwise. |
| 2508 | */ |
| 2509 | int |
| 2510 | setfname(buf, ffname, sfname, message) |
| 2511 | buf_T *buf; |
| 2512 | char_u *ffname, *sfname; |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 2513 | int message; /* give message when buffer already exists */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2514 | { |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 2515 | buf_T *obuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2516 | #ifdef UNIX |
| 2517 | struct stat st; |
| 2518 | #endif |
| 2519 | |
| 2520 | if (ffname == NULL || *ffname == NUL) |
| 2521 | { |
| 2522 | /* Removing the name. */ |
| 2523 | vim_free(buf->b_ffname); |
| 2524 | vim_free(buf->b_sfname); |
| 2525 | buf->b_ffname = NULL; |
| 2526 | buf->b_sfname = NULL; |
| 2527 | #ifdef UNIX |
| 2528 | st.st_dev = (dev_T)-1; |
| 2529 | #endif |
| 2530 | } |
| 2531 | else |
| 2532 | { |
| 2533 | fname_expand(buf, &ffname, &sfname); /* will allocate ffname */ |
| 2534 | if (ffname == NULL) /* out of memory */ |
| 2535 | return FAIL; |
| 2536 | |
| 2537 | /* |
| 2538 | * if the file name is already used in another buffer: |
| 2539 | * - if the buffer is loaded, fail |
| 2540 | * - if the buffer is not loaded, delete it from the list |
| 2541 | */ |
| 2542 | #ifdef UNIX |
| 2543 | if (mch_stat((char *)ffname, &st) < 0) |
| 2544 | st.st_dev = (dev_T)-1; |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 2545 | #endif |
| 2546 | if (!(buf->b_flags & BF_DUMMY)) |
| 2547 | #ifdef UNIX |
| 2548 | obuf = buflist_findname_stat(ffname, &st); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2549 | #else |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 2550 | obuf = buflist_findname(ffname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2551 | #endif |
| 2552 | if (obuf != NULL && obuf != buf) |
| 2553 | { |
| 2554 | if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */ |
| 2555 | { |
| 2556 | if (message) |
| 2557 | EMSG(_("E95: Buffer with this name already exists")); |
| 2558 | vim_free(ffname); |
| 2559 | return FAIL; |
| 2560 | } |
| 2561 | close_buffer(NULL, obuf, DOBUF_WIPE); /* delete from the list */ |
| 2562 | } |
| 2563 | sfname = vim_strsave(sfname); |
| 2564 | if (ffname == NULL || sfname == NULL) |
| 2565 | { |
| 2566 | vim_free(sfname); |
| 2567 | vim_free(ffname); |
| 2568 | return FAIL; |
| 2569 | } |
| 2570 | #ifdef USE_FNAME_CASE |
| 2571 | # ifdef USE_LONG_FNAME |
| 2572 | if (USE_LONG_FNAME) |
| 2573 | # endif |
| 2574 | fname_case(sfname, 0); /* set correct case for short file name */ |
| 2575 | #endif |
| 2576 | vim_free(buf->b_ffname); |
| 2577 | vim_free(buf->b_sfname); |
| 2578 | buf->b_ffname = ffname; |
| 2579 | buf->b_sfname = sfname; |
| 2580 | } |
| 2581 | buf->b_fname = buf->b_sfname; |
| 2582 | #ifdef UNIX |
| 2583 | if (st.st_dev == (dev_T)-1) |
| 2584 | buf->b_dev = -1; |
| 2585 | else |
| 2586 | { |
| 2587 | buf->b_dev = st.st_dev; |
| 2588 | buf->b_ino = st.st_ino; |
| 2589 | } |
| 2590 | #endif |
| 2591 | |
| 2592 | #ifndef SHORT_FNAME |
| 2593 | buf->b_shortname = FALSE; |
| 2594 | #endif |
| 2595 | |
| 2596 | buf_name_changed(buf); |
| 2597 | return OK; |
| 2598 | } |
| 2599 | |
| 2600 | /* |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 2601 | * Crude way of changing the name of a buffer. Use with care! |
| 2602 | * The name should be relative to the current directory. |
| 2603 | */ |
| 2604 | void |
| 2605 | buf_set_name(fnum, name) |
| 2606 | int fnum; |
| 2607 | char_u *name; |
| 2608 | { |
| 2609 | buf_T *buf; |
| 2610 | |
| 2611 | buf = buflist_findnr(fnum); |
| 2612 | if (buf != NULL) |
| 2613 | { |
| 2614 | vim_free(buf->b_sfname); |
| 2615 | vim_free(buf->b_ffname); |
| 2616 | buf->b_sfname = vim_strsave(name); |
| 2617 | buf->b_ffname = FullName_save(buf->b_sfname, FALSE); |
| 2618 | buf->b_fname = buf->b_sfname; |
| 2619 | } |
| 2620 | } |
| 2621 | |
| 2622 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2623 | * Take care of what needs to be done when the name of buffer "buf" has |
| 2624 | * changed. |
| 2625 | */ |
| 2626 | void |
| 2627 | buf_name_changed(buf) |
| 2628 | buf_T *buf; |
| 2629 | { |
| 2630 | /* |
| 2631 | * If the file name changed, also change the name of the swapfile |
| 2632 | */ |
| 2633 | if (buf->b_ml.ml_mfp != NULL) |
| 2634 | ml_setname(buf); |
| 2635 | |
| 2636 | if (curwin->w_buffer == buf) |
| 2637 | check_arg_idx(curwin); /* check file name for arg list */ |
| 2638 | #ifdef FEAT_TITLE |
| 2639 | maketitle(); /* set window title */ |
| 2640 | #endif |
| 2641 | #ifdef FEAT_WINDOWS |
| 2642 | status_redraw_all(); /* status lines need to be redrawn */ |
| 2643 | #endif |
| 2644 | fmarks_check_names(buf); /* check named file marks */ |
| 2645 | ml_timestamp(buf); /* reset timestamp */ |
| 2646 | } |
| 2647 | |
| 2648 | /* |
| 2649 | * set alternate file name for current window |
| 2650 | * |
| 2651 | * Used by do_one_cmd(), do_write() and do_ecmd(). |
| 2652 | * Return the buffer. |
| 2653 | */ |
| 2654 | buf_T * |
| 2655 | setaltfname(ffname, sfname, lnum) |
| 2656 | char_u *ffname; |
| 2657 | char_u *sfname; |
| 2658 | linenr_T lnum; |
| 2659 | { |
| 2660 | buf_T *buf; |
| 2661 | |
| 2662 | /* Create a buffer. 'buflisted' is not set if it's a new buffer */ |
| 2663 | buf = buflist_new(ffname, sfname, lnum, 0); |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 2664 | if (buf != NULL && !cmdmod.keepalt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2665 | curwin->w_alt_fnum = buf->b_fnum; |
| 2666 | return buf; |
| 2667 | } |
| 2668 | |
| 2669 | /* |
| 2670 | * Get alternate file name for current window. |
| 2671 | * Return NULL if there isn't any, and give error message if requested. |
| 2672 | */ |
| 2673 | char_u * |
| 2674 | getaltfname(errmsg) |
| 2675 | int errmsg; /* give error message */ |
| 2676 | { |
| 2677 | char_u *fname; |
| 2678 | linenr_T dummy; |
| 2679 | |
| 2680 | if (buflist_name_nr(0, &fname, &dummy) == FAIL) |
| 2681 | { |
| 2682 | if (errmsg) |
| 2683 | EMSG(_(e_noalt)); |
| 2684 | return NULL; |
| 2685 | } |
| 2686 | return fname; |
| 2687 | } |
| 2688 | |
| 2689 | /* |
| 2690 | * Add a file name to the buflist and return its number. |
| 2691 | * Uses same flags as buflist_new(), except BLN_DUMMY. |
| 2692 | * |
| 2693 | * used by qf_init(), main() and doarglist() |
| 2694 | */ |
| 2695 | int |
| 2696 | buflist_add(fname, flags) |
| 2697 | char_u *fname; |
| 2698 | int flags; |
| 2699 | { |
| 2700 | buf_T *buf; |
| 2701 | |
| 2702 | buf = buflist_new(fname, NULL, (linenr_T)0, flags); |
| 2703 | if (buf != NULL) |
| 2704 | return buf->b_fnum; |
| 2705 | return 0; |
| 2706 | } |
| 2707 | |
| 2708 | #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) |
| 2709 | /* |
| 2710 | * Adjust slashes in file names. Called after 'shellslash' was set. |
| 2711 | */ |
| 2712 | void |
| 2713 | buflist_slash_adjust() |
| 2714 | { |
| 2715 | buf_T *bp; |
| 2716 | |
| 2717 | for (bp = firstbuf; bp != NULL; bp = bp->b_next) |
| 2718 | { |
| 2719 | if (bp->b_ffname != NULL) |
| 2720 | slash_adjust(bp->b_ffname); |
| 2721 | if (bp->b_sfname != NULL) |
| 2722 | slash_adjust(bp->b_sfname); |
| 2723 | } |
| 2724 | } |
| 2725 | #endif |
| 2726 | |
| 2727 | /* |
| 2728 | * Set alternate cursor position for current window. |
| 2729 | * Also save the local window option values. |
| 2730 | */ |
| 2731 | void |
| 2732 | buflist_altfpos() |
| 2733 | { |
| 2734 | buflist_setfpos(curbuf, curwin, curwin->w_cursor.lnum, |
| 2735 | curwin->w_cursor.col, TRUE); |
| 2736 | } |
| 2737 | |
| 2738 | /* |
| 2739 | * Return TRUE if 'ffname' is not the same file as current file. |
| 2740 | * Fname must have a full path (expanded by mch_FullName()). |
| 2741 | */ |
| 2742 | int |
| 2743 | otherfile(ffname) |
| 2744 | char_u *ffname; |
| 2745 | { |
| 2746 | return otherfile_buf(curbuf, ffname |
| 2747 | #ifdef UNIX |
| 2748 | , NULL |
| 2749 | #endif |
| 2750 | ); |
| 2751 | } |
| 2752 | |
| 2753 | static int |
| 2754 | otherfile_buf(buf, ffname |
| 2755 | #ifdef UNIX |
| 2756 | , stp |
| 2757 | #endif |
| 2758 | ) |
| 2759 | buf_T *buf; |
| 2760 | char_u *ffname; |
| 2761 | #ifdef UNIX |
| 2762 | struct stat *stp; |
| 2763 | #endif |
| 2764 | { |
| 2765 | /* no name is different */ |
| 2766 | if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) |
| 2767 | return TRUE; |
| 2768 | if (fnamecmp(ffname, buf->b_ffname) == 0) |
| 2769 | return FALSE; |
| 2770 | #ifdef UNIX |
| 2771 | { |
| 2772 | struct stat st; |
| 2773 | |
| 2774 | /* If no struct stat given, get it now */ |
| 2775 | if (stp == NULL) |
| 2776 | { |
| 2777 | if (buf->b_dev < 0 || mch_stat((char *)ffname, &st) < 0) |
| 2778 | st.st_dev = (dev_T)-1; |
| 2779 | stp = &st; |
| 2780 | } |
| 2781 | /* Use dev/ino to check if the files are the same, even when the names |
| 2782 | * are different (possible with links). Still need to compare the |
| 2783 | * name above, for when the file doesn't exist yet. |
| 2784 | * Problem: The dev/ino changes when a file is deleted (and created |
| 2785 | * again) and remains the same when renamed/moved. We don't want to |
| 2786 | * mch_stat() each buffer each time, that would be too slow. Get the |
| 2787 | * dev/ino again when they appear to match, but not when they appear |
| 2788 | * to be different: Could skip a buffer when it's actually the same |
| 2789 | * file. */ |
| 2790 | if (buf_same_ino(buf, stp)) |
| 2791 | { |
| 2792 | buf_setino(buf); |
| 2793 | if (buf_same_ino(buf, stp)) |
| 2794 | return FALSE; |
| 2795 | } |
| 2796 | } |
| 2797 | #endif |
| 2798 | return TRUE; |
| 2799 | } |
| 2800 | |
| 2801 | #if defined(UNIX) || defined(PROTO) |
| 2802 | /* |
| 2803 | * Set inode and device number for a buffer. |
| 2804 | * Must always be called when b_fname is changed!. |
| 2805 | */ |
| 2806 | void |
| 2807 | buf_setino(buf) |
| 2808 | buf_T *buf; |
| 2809 | { |
| 2810 | struct stat st; |
| 2811 | |
| 2812 | if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) |
| 2813 | { |
| 2814 | buf->b_dev = st.st_dev; |
| 2815 | buf->b_ino = st.st_ino; |
| 2816 | } |
| 2817 | else |
| 2818 | buf->b_dev = -1; |
| 2819 | } |
| 2820 | |
| 2821 | /* |
| 2822 | * Return TRUE if dev/ino in buffer "buf" matches with "stp". |
| 2823 | */ |
| 2824 | static int |
| 2825 | buf_same_ino(buf, stp) |
| 2826 | buf_T *buf; |
| 2827 | struct stat *stp; |
| 2828 | { |
| 2829 | return (buf->b_dev >= 0 |
| 2830 | && stp->st_dev == buf->b_dev |
| 2831 | && stp->st_ino == buf->b_ino); |
| 2832 | } |
| 2833 | #endif |
| 2834 | |
Bram Moolenaar | 1d2ba7f | 2006-02-14 22:29:30 +0000 | [diff] [blame] | 2835 | /* |
| 2836 | * Print info about the current buffer. |
| 2837 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2838 | void |
| 2839 | fileinfo(fullname, shorthelp, dont_truncate) |
Bram Moolenaar | 1d2ba7f | 2006-02-14 22:29:30 +0000 | [diff] [blame] | 2840 | int fullname; /* when non-zero print full path */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2841 | int shorthelp; |
| 2842 | int dont_truncate; |
| 2843 | { |
| 2844 | char_u *name; |
| 2845 | int n; |
| 2846 | char_u *p; |
| 2847 | char_u *buffer; |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2848 | size_t len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2849 | |
| 2850 | buffer = alloc(IOSIZE); |
| 2851 | if (buffer == NULL) |
| 2852 | return; |
| 2853 | |
| 2854 | if (fullname > 1) /* 2 CTRL-G: include buffer number */ |
| 2855 | { |
| 2856 | sprintf((char *)buffer, "buf %d: ", curbuf->b_fnum); |
| 2857 | p = buffer + STRLEN(buffer); |
| 2858 | } |
| 2859 | else |
| 2860 | p = buffer; |
| 2861 | |
| 2862 | *p++ = '"'; |
| 2863 | if (buf_spname(curbuf) != NULL) |
| 2864 | STRCPY(p, buf_spname(curbuf)); |
| 2865 | else |
| 2866 | { |
| 2867 | if (!fullname && curbuf->b_fname != NULL) |
| 2868 | name = curbuf->b_fname; |
| 2869 | else |
| 2870 | name = curbuf->b_ffname; |
| 2871 | home_replace(shorthelp ? curbuf : NULL, name, p, |
| 2872 | (int)(IOSIZE - (p - buffer)), TRUE); |
| 2873 | } |
| 2874 | |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2875 | len = STRLEN(buffer); |
| 2876 | vim_snprintf((char *)buffer + len, IOSIZE - len, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2877 | "\"%s%s%s%s%s%s", |
| 2878 | curbufIsChanged() ? (shortmess(SHM_MOD) |
| 2879 | ? " [+]" : _(" [Modified]")) : " ", |
| 2880 | (curbuf->b_flags & BF_NOTEDITED) |
| 2881 | #ifdef FEAT_QUICKFIX |
| 2882 | && !bt_dontwrite(curbuf) |
| 2883 | #endif |
| 2884 | ? _("[Not edited]") : "", |
| 2885 | (curbuf->b_flags & BF_NEW) |
| 2886 | #ifdef FEAT_QUICKFIX |
| 2887 | && !bt_dontwrite(curbuf) |
| 2888 | #endif |
| 2889 | ? _("[New file]") : "", |
| 2890 | (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", |
| 2891 | curbuf->b_p_ro ? (shortmess(SHM_RO) ? "[RO]" |
| 2892 | : _("[readonly]")) : "", |
| 2893 | (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) |
| 2894 | || curbuf->b_p_ro) ? |
| 2895 | " " : ""); |
| 2896 | /* With 32 bit longs and more than 21,474,836 lines multiplying by 100 |
| 2897 | * causes an overflow, thus for large numbers divide instead. */ |
| 2898 | if (curwin->w_cursor.lnum > 1000000L) |
| 2899 | n = (int)(((long)curwin->w_cursor.lnum) / |
| 2900 | ((long)curbuf->b_ml.ml_line_count / 100L)); |
| 2901 | else |
| 2902 | n = (int)(((long)curwin->w_cursor.lnum * 100L) / |
| 2903 | (long)curbuf->b_ml.ml_line_count); |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2904 | len = STRLEN(buffer); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2905 | if (curbuf->b_ml.ml_flags & ML_EMPTY) |
| 2906 | { |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2907 | vim_snprintf((char *)buffer + len, IOSIZE - len, "%s", _(no_lines_msg)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2908 | } |
| 2909 | #ifdef FEAT_CMDL_INFO |
| 2910 | else if (p_ru) |
| 2911 | { |
| 2912 | /* Current line and column are already on the screen -- webb */ |
| 2913 | if (curbuf->b_ml.ml_line_count == 1) |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2914 | vim_snprintf((char *)buffer + len, IOSIZE - len, |
| 2915 | _("1 line --%d%%--"), n); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2916 | else |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2917 | vim_snprintf((char *)buffer + len, IOSIZE - len, |
| 2918 | _("%ld lines --%d%%--"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2919 | (long)curbuf->b_ml.ml_line_count, n); |
| 2920 | } |
| 2921 | #endif |
| 2922 | else |
| 2923 | { |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 2924 | vim_snprintf((char *)buffer + len, IOSIZE - len, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2925 | _("line %ld of %ld --%d%%-- col "), |
| 2926 | (long)curwin->w_cursor.lnum, |
| 2927 | (long)curbuf->b_ml.ml_line_count, |
| 2928 | n); |
| 2929 | validate_virtcol(); |
| 2930 | col_print(buffer + STRLEN(buffer), |
| 2931 | (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); |
| 2932 | } |
| 2933 | |
| 2934 | (void)append_arg_number(curwin, buffer, !shortmess(SHM_FILE), IOSIZE); |
| 2935 | |
| 2936 | if (dont_truncate) |
| 2937 | { |
| 2938 | /* Temporarily set msg_scroll to avoid the message being truncated. |
| 2939 | * First call msg_start() to get the message in the right place. */ |
| 2940 | msg_start(); |
| 2941 | n = msg_scroll; |
| 2942 | msg_scroll = TRUE; |
| 2943 | msg(buffer); |
| 2944 | msg_scroll = n; |
| 2945 | } |
| 2946 | else |
| 2947 | { |
| 2948 | p = msg_trunc_attr(buffer, FALSE, 0); |
| 2949 | if (restart_edit != 0 || (msg_scrolled && !need_wait_return)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2950 | /* Need to repeat the message after redrawing when: |
| 2951 | * - When restart_edit is set (otherwise there will be a delay |
| 2952 | * before redrawing). |
| 2953 | * - When the screen was scrolled but there is no wait-return |
| 2954 | * prompt. */ |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 2955 | set_keep_msg(p, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2956 | } |
| 2957 | |
| 2958 | vim_free(buffer); |
| 2959 | } |
| 2960 | |
| 2961 | void |
| 2962 | col_print(buf, col, vcol) |
| 2963 | char_u *buf; |
| 2964 | int col; |
| 2965 | int vcol; |
| 2966 | { |
| 2967 | if (col == vcol) |
| 2968 | sprintf((char *)buf, "%d", col); |
| 2969 | else |
| 2970 | sprintf((char *)buf, "%d-%d", col, vcol); |
| 2971 | } |
| 2972 | |
| 2973 | #if defined(FEAT_TITLE) || defined(PROTO) |
| 2974 | /* |
| 2975 | * put file name in title bar of window and in icon title |
| 2976 | */ |
| 2977 | |
| 2978 | static char_u *lasttitle = NULL; |
| 2979 | static char_u *lasticon = NULL; |
| 2980 | |
| 2981 | void |
| 2982 | maketitle() |
| 2983 | { |
| 2984 | char_u *p; |
| 2985 | char_u *t_str = NULL; |
| 2986 | char_u *i_name; |
| 2987 | char_u *i_str = NULL; |
| 2988 | int maxlen = 0; |
| 2989 | int len; |
| 2990 | int mustset; |
| 2991 | char_u buf[IOSIZE]; |
| 2992 | int off; |
| 2993 | |
| 2994 | if (!redrawing()) |
| 2995 | { |
| 2996 | /* Postpone updating the title when 'lazyredraw' is set. */ |
| 2997 | need_maketitle = TRUE; |
| 2998 | return; |
| 2999 | } |
| 3000 | |
| 3001 | need_maketitle = FALSE; |
| 3002 | if (!p_title && !p_icon) |
| 3003 | return; |
| 3004 | |
| 3005 | if (p_title) |
| 3006 | { |
| 3007 | if (p_titlelen > 0) |
| 3008 | { |
| 3009 | maxlen = p_titlelen * Columns / 100; |
| 3010 | if (maxlen < 10) |
| 3011 | maxlen = 10; |
| 3012 | } |
| 3013 | |
| 3014 | t_str = buf; |
| 3015 | if (*p_titlestring != NUL) |
| 3016 | { |
| 3017 | #ifdef FEAT_STL_OPT |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3018 | int use_sandbox = FALSE; |
| 3019 | |
| 3020 | # ifdef FEAT_EVAL |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3021 | use_sandbox = was_set_insecurely((char_u *)"titlestring", 0); |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3022 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3023 | if (stl_syntax & STL_IN_TITLE) |
| 3024 | build_stl_str_hl(curwin, t_str, sizeof(buf), |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3025 | p_titlestring, use_sandbox, |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3026 | 0, maxlen, NULL, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3027 | else |
| 3028 | #endif |
| 3029 | t_str = p_titlestring; |
| 3030 | } |
| 3031 | else |
| 3032 | { |
| 3033 | /* format: "fname + (path) (1 of 2) - VIM" */ |
| 3034 | |
| 3035 | if (curbuf->b_fname == NULL) |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 3036 | STRCPY(buf, _("[No Name]")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3037 | else |
| 3038 | { |
| 3039 | p = transstr(gettail(curbuf->b_fname)); |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 3040 | vim_strncpy(buf, p, IOSIZE - 100); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3041 | vim_free(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3042 | } |
| 3043 | |
| 3044 | switch (bufIsChanged(curbuf) |
| 3045 | + (curbuf->b_p_ro * 2) |
| 3046 | + (!curbuf->b_p_ma * 4)) |
| 3047 | { |
| 3048 | case 1: STRCAT(buf, " +"); break; |
| 3049 | case 2: STRCAT(buf, " ="); break; |
| 3050 | case 3: STRCAT(buf, " =+"); break; |
| 3051 | case 4: |
| 3052 | case 6: STRCAT(buf, " -"); break; |
| 3053 | case 5: |
| 3054 | case 7: STRCAT(buf, " -+"); break; |
| 3055 | } |
| 3056 | |
| 3057 | if (curbuf->b_fname != NULL) |
| 3058 | { |
| 3059 | /* Get path of file, replace home dir with ~ */ |
| 3060 | off = (int)STRLEN(buf); |
| 3061 | buf[off++] = ' '; |
| 3062 | buf[off++] = '('; |
| 3063 | home_replace(curbuf, curbuf->b_ffname, |
| 3064 | buf + off, IOSIZE - off, TRUE); |
| 3065 | #ifdef BACKSLASH_IN_FILENAME |
| 3066 | /* avoid "c:/name" to be reduced to "c" */ |
| 3067 | if (isalpha(buf[off]) && buf[off + 1] == ':') |
| 3068 | off += 2; |
| 3069 | #endif |
| 3070 | /* remove the file name */ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 3071 | p = gettail_sep(buf + off); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3072 | if (p == buf + off) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3073 | /* must be a help buffer */ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 3074 | vim_strncpy(buf + off, (char_u *)_("help"), |
| 3075 | IOSIZE - off - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3076 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3077 | *p = NUL; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 3078 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3079 | /* translate unprintable chars */ |
| 3080 | p = transstr(buf + off); |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 3081 | vim_strncpy(buf + off, p, IOSIZE - off - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3082 | vim_free(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3083 | STRCAT(buf, ")"); |
| 3084 | } |
| 3085 | |
| 3086 | append_arg_number(curwin, buf, FALSE, IOSIZE); |
| 3087 | |
| 3088 | #if defined(FEAT_CLIENTSERVER) |
| 3089 | if (serverName != NULL) |
| 3090 | { |
| 3091 | STRCAT(buf, " - "); |
| 3092 | STRCAT(buf, serverName); |
| 3093 | } |
| 3094 | else |
| 3095 | #endif |
| 3096 | STRCAT(buf, " - VIM"); |
| 3097 | |
| 3098 | if (maxlen > 0) |
| 3099 | { |
| 3100 | /* make it shorter by removing a bit in the middle */ |
| 3101 | len = vim_strsize(buf); |
| 3102 | if (len > maxlen) |
| 3103 | trunc_string(buf, buf, maxlen); |
| 3104 | } |
| 3105 | } |
| 3106 | } |
| 3107 | mustset = ti_change(t_str, &lasttitle); |
| 3108 | |
| 3109 | if (p_icon) |
| 3110 | { |
| 3111 | i_str = buf; |
| 3112 | if (*p_iconstring != NUL) |
| 3113 | { |
| 3114 | #ifdef FEAT_STL_OPT |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3115 | int use_sandbox = FALSE; |
| 3116 | |
| 3117 | # ifdef FEAT_EVAL |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3118 | use_sandbox = was_set_insecurely((char_u *)"iconstring", 0); |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3119 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3120 | if (stl_syntax & STL_IN_ICON) |
| 3121 | build_stl_str_hl(curwin, i_str, sizeof(buf), |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3122 | p_iconstring, use_sandbox, |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3123 | 0, 0, NULL, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3124 | else |
| 3125 | #endif |
| 3126 | i_str = p_iconstring; |
| 3127 | } |
| 3128 | else |
| 3129 | { |
| 3130 | if (buf_spname(curbuf) != NULL) |
| 3131 | i_name = (char_u *)buf_spname(curbuf); |
| 3132 | else /* use file name only in icon */ |
| 3133 | i_name = gettail(curbuf->b_ffname); |
| 3134 | *i_str = NUL; |
| 3135 | /* Truncate name at 100 bytes. */ |
| 3136 | len = STRLEN(i_name); |
| 3137 | if (len > 100) |
| 3138 | { |
| 3139 | len -= 100; |
| 3140 | #ifdef FEAT_MBYTE |
| 3141 | if (has_mbyte) |
| 3142 | len += (*mb_tail_off)(i_name, i_name + len) + 1; |
| 3143 | #endif |
| 3144 | i_name += len; |
| 3145 | } |
| 3146 | STRCPY(i_str, i_name); |
| 3147 | trans_characters(i_str, IOSIZE); |
| 3148 | } |
| 3149 | } |
| 3150 | |
| 3151 | mustset |= ti_change(i_str, &lasticon); |
| 3152 | |
| 3153 | if (mustset) |
| 3154 | resettitle(); |
| 3155 | } |
| 3156 | |
| 3157 | /* |
| 3158 | * Used for title and icon: Check if "str" differs from "*last". Set "*last" |
| 3159 | * from "str" if it does. |
| 3160 | * Return TRUE when "*last" changed. |
| 3161 | */ |
| 3162 | static int |
| 3163 | ti_change(str, last) |
| 3164 | char_u *str; |
| 3165 | char_u **last; |
| 3166 | { |
| 3167 | if ((str == NULL) != (*last == NULL) |
| 3168 | || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) |
| 3169 | { |
| 3170 | vim_free(*last); |
| 3171 | if (str == NULL) |
| 3172 | *last = NULL; |
| 3173 | else |
| 3174 | *last = vim_strsave(str); |
| 3175 | return TRUE; |
| 3176 | } |
| 3177 | return FALSE; |
| 3178 | } |
| 3179 | |
| 3180 | /* |
| 3181 | * Put current window title back (used after calling a shell) |
| 3182 | */ |
| 3183 | void |
| 3184 | resettitle() |
| 3185 | { |
| 3186 | mch_settitle(lasttitle, lasticon); |
| 3187 | } |
Bram Moolenaar | ea40885 | 2005-06-25 22:49:46 +0000 | [diff] [blame] | 3188 | |
| 3189 | # if defined(EXITFREE) || defined(PROTO) |
| 3190 | void |
| 3191 | free_titles() |
| 3192 | { |
| 3193 | vim_free(lasttitle); |
| 3194 | vim_free(lasticon); |
| 3195 | } |
| 3196 | # endif |
| 3197 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3198 | #endif /* FEAT_TITLE */ |
| 3199 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 3200 | #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3201 | /* |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3202 | * Build a string from the status line items in "fmt". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3203 | * Return length of string in screen cells. |
| 3204 | * |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3205 | * Normally works for window "wp", except when working for 'tabline' then it |
| 3206 | * is "curwin". |
| 3207 | * |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3208 | * Items are drawn interspersed with the text that surrounds it |
| 3209 | * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation |
| 3210 | * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional |
| 3211 | * |
| 3212 | * If maxwidth is not zero, the string will be filled at any middle marker |
| 3213 | * or truncated if too long, fillchar is used for all whitespace. |
| 3214 | */ |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 3215 | /*ARGSUSED*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3216 | int |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3217 | 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] | 3218 | win_T *wp; |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 3219 | char_u *out; /* buffer to write into != NameBuff */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3220 | size_t outlen; /* length of out[] */ |
| 3221 | char_u *fmt; |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3222 | int use_sandbox; /* "fmt" was set insecurely, use sandbox */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3223 | int fillchar; |
| 3224 | int maxwidth; |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3225 | struct stl_hlrec *hltab; /* return: HL attributes (can be NULL) */ |
| 3226 | struct stl_hlrec *tabtab; /* return: tab page nrs (can be NULL) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3227 | { |
| 3228 | char_u *p; |
| 3229 | char_u *s; |
| 3230 | char_u *t; |
| 3231 | char_u *linecont; |
| 3232 | #ifdef FEAT_EVAL |
| 3233 | win_T *o_curwin; |
| 3234 | buf_T *o_curbuf; |
| 3235 | #endif |
| 3236 | int empty_line; |
| 3237 | colnr_T virtcol; |
| 3238 | long l; |
| 3239 | long n; |
| 3240 | int prevchar_isflag; |
| 3241 | int prevchar_isitem; |
| 3242 | int itemisflag; |
| 3243 | int fillable; |
| 3244 | char_u *str; |
| 3245 | long num; |
| 3246 | int width; |
| 3247 | int itemcnt; |
| 3248 | int curitem; |
| 3249 | int groupitem[STL_MAX_ITEM]; |
| 3250 | int groupdepth; |
| 3251 | struct stl_item |
| 3252 | { |
| 3253 | char_u *start; |
| 3254 | int minwid; |
| 3255 | int maxwid; |
| 3256 | enum |
| 3257 | { |
| 3258 | Normal, |
| 3259 | Empty, |
| 3260 | Group, |
| 3261 | Middle, |
| 3262 | Highlight, |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3263 | TabPage, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3264 | Trunc |
| 3265 | } type; |
| 3266 | } item[STL_MAX_ITEM]; |
| 3267 | int minwid; |
| 3268 | int maxwid; |
| 3269 | int zeropad; |
| 3270 | char_u base; |
| 3271 | char_u opt; |
| 3272 | #define TMPLEN 70 |
| 3273 | char_u tmp[TMPLEN]; |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 3274 | char_u *usefmt = fmt; |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3275 | struct stl_hlrec *sp; |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 3276 | |
| 3277 | #ifdef FEAT_EVAL |
| 3278 | /* |
| 3279 | * When the format starts with "%!" then evaluate it as an expression and |
| 3280 | * use the result as the actual format string. |
| 3281 | */ |
| 3282 | if (fmt[0] == '%' && fmt[1] == '!') |
| 3283 | { |
| 3284 | usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox); |
| 3285 | if (usefmt == NULL) |
| 3286 | usefmt = (char_u *)""; |
| 3287 | } |
| 3288 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3289 | |
| 3290 | if (fillchar == 0) |
| 3291 | fillchar = ' '; |
| 3292 | /* |
| 3293 | * Get line & check if empty (cursorpos will show "0-1"). |
| 3294 | * If inversion is possible we use it. Else '=' characters are used. |
| 3295 | */ |
| 3296 | linecont = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE); |
| 3297 | empty_line = (*linecont == NUL); |
| 3298 | |
| 3299 | groupdepth = 0; |
| 3300 | p = out; |
| 3301 | curitem = 0; |
| 3302 | prevchar_isflag = TRUE; |
| 3303 | prevchar_isitem = FALSE; |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 3304 | for (s = usefmt; *s; ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3305 | { |
| 3306 | if (*s != NUL && *s != '%') |
| 3307 | prevchar_isflag = prevchar_isitem = FALSE; |
| 3308 | |
| 3309 | /* |
| 3310 | * Handle up to the next '%' or the end. |
| 3311 | */ |
| 3312 | while (*s != NUL && *s != '%' && p + 1 < out + outlen) |
| 3313 | *p++ = *s++; |
| 3314 | if (*s == NUL || p + 1 >= out + outlen) |
| 3315 | break; |
| 3316 | |
| 3317 | /* |
| 3318 | * Handle one '%' item. |
| 3319 | */ |
| 3320 | s++; |
| 3321 | if (*s == '%') |
| 3322 | { |
| 3323 | if (p + 1 >= out + outlen) |
| 3324 | break; |
| 3325 | *p++ = *s++; |
| 3326 | prevchar_isflag = prevchar_isitem = FALSE; |
| 3327 | continue; |
| 3328 | } |
| 3329 | if (*s == STL_MIDDLEMARK) |
| 3330 | { |
| 3331 | s++; |
| 3332 | if (groupdepth > 0) |
| 3333 | continue; |
| 3334 | item[curitem].type = Middle; |
| 3335 | item[curitem++].start = p; |
| 3336 | continue; |
| 3337 | } |
| 3338 | if (*s == STL_TRUNCMARK) |
| 3339 | { |
| 3340 | s++; |
| 3341 | item[curitem].type = Trunc; |
| 3342 | item[curitem++].start = p; |
| 3343 | continue; |
| 3344 | } |
| 3345 | if (*s == ')') |
| 3346 | { |
| 3347 | s++; |
| 3348 | if (groupdepth < 1) |
| 3349 | continue; |
| 3350 | groupdepth--; |
| 3351 | |
| 3352 | t = item[groupitem[groupdepth]].start; |
| 3353 | *p = NUL; |
| 3354 | l = vim_strsize(t); |
| 3355 | if (curitem > groupitem[groupdepth] + 1 |
| 3356 | && item[groupitem[groupdepth]].minwid == 0) |
| 3357 | { |
| 3358 | /* remove group if all items are empty */ |
| 3359 | for (n = groupitem[groupdepth] + 1; n < curitem; n++) |
| 3360 | if (item[n].type == Normal) |
| 3361 | break; |
| 3362 | if (n == curitem) |
| 3363 | { |
| 3364 | p = t; |
| 3365 | l = 0; |
| 3366 | } |
| 3367 | } |
| 3368 | if (l > item[groupitem[groupdepth]].maxwid) |
| 3369 | { |
| 3370 | /* truncate, remove n bytes of text at the start */ |
| 3371 | #ifdef FEAT_MBYTE |
| 3372 | if (has_mbyte) |
| 3373 | { |
| 3374 | /* Find the first character that should be included. */ |
| 3375 | n = 0; |
| 3376 | while (l >= item[groupitem[groupdepth]].maxwid) |
| 3377 | { |
| 3378 | l -= ptr2cells(t + n); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3379 | n += (*mb_ptr2len)(t + n); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3380 | } |
| 3381 | } |
| 3382 | else |
| 3383 | #endif |
| 3384 | n = (p - t) - item[groupitem[groupdepth]].maxwid + 1; |
| 3385 | |
| 3386 | *t = '<'; |
| 3387 | mch_memmove(t + 1, t + n, p - (t + n)); |
| 3388 | p = p - n + 1; |
| 3389 | #ifdef FEAT_MBYTE |
| 3390 | /* Fill up space left over by half a double-wide char. */ |
| 3391 | while (++l < item[groupitem[groupdepth]].minwid) |
| 3392 | *p++ = fillchar; |
| 3393 | #endif |
| 3394 | |
| 3395 | /* correct the start of the items for the truncation */ |
| 3396 | for (l = groupitem[groupdepth] + 1; l < curitem; l++) |
| 3397 | { |
| 3398 | item[l].start -= n; |
| 3399 | if (item[l].start < t) |
| 3400 | item[l].start = t; |
| 3401 | } |
| 3402 | } |
| 3403 | else if (abs(item[groupitem[groupdepth]].minwid) > l) |
| 3404 | { |
| 3405 | /* fill */ |
| 3406 | n = item[groupitem[groupdepth]].minwid; |
| 3407 | if (n < 0) |
| 3408 | { |
| 3409 | /* fill by appending characters */ |
| 3410 | n = 0 - n; |
| 3411 | while (l++ < n && p + 1 < out + outlen) |
| 3412 | *p++ = fillchar; |
| 3413 | } |
| 3414 | else |
| 3415 | { |
| 3416 | /* fill by inserting characters */ |
| 3417 | mch_memmove(t + n - l, t, p - t); |
| 3418 | l = n - l; |
| 3419 | if (p + l >= out + outlen) |
| 3420 | l = (out + outlen) - p - 1; |
| 3421 | p += l; |
| 3422 | for (n = groupitem[groupdepth] + 1; n < curitem; n++) |
| 3423 | item[n].start += l; |
| 3424 | for ( ; l > 0; l--) |
| 3425 | *t++ = fillchar; |
| 3426 | } |
| 3427 | } |
| 3428 | continue; |
| 3429 | } |
| 3430 | minwid = 0; |
| 3431 | maxwid = 9999; |
| 3432 | zeropad = FALSE; |
| 3433 | l = 1; |
| 3434 | if (*s == '0') |
| 3435 | { |
| 3436 | s++; |
| 3437 | zeropad = TRUE; |
| 3438 | } |
| 3439 | if (*s == '-') |
| 3440 | { |
| 3441 | s++; |
| 3442 | l = -1; |
| 3443 | } |
| 3444 | if (VIM_ISDIGIT(*s)) |
| 3445 | { |
| 3446 | minwid = (int)getdigits(&s); |
| 3447 | if (minwid < 0) /* overflow */ |
| 3448 | minwid = 0; |
| 3449 | } |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 3450 | if (*s == STL_USER_HL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3451 | { |
| 3452 | item[curitem].type = Highlight; |
| 3453 | item[curitem].start = p; |
| 3454 | item[curitem].minwid = minwid > 9 ? 1 : minwid; |
| 3455 | s++; |
| 3456 | curitem++; |
| 3457 | continue; |
| 3458 | } |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3459 | if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) |
| 3460 | { |
| 3461 | if (*s == STL_TABCLOSENR) |
| 3462 | { |
| 3463 | if (minwid == 0) |
| 3464 | { |
| 3465 | /* %X ends the close label, go back to the previously |
| 3466 | * define tab label nr. */ |
| 3467 | for (n = curitem - 1; n >= 0; --n) |
| 3468 | if (item[n].type == TabPage && item[n].minwid >= 0) |
| 3469 | { |
| 3470 | minwid = item[n].minwid; |
| 3471 | break; |
| 3472 | } |
| 3473 | } |
| 3474 | else |
| 3475 | /* close nrs are stored as negative values */ |
| 3476 | minwid = - minwid; |
| 3477 | } |
| 3478 | item[curitem].type = TabPage; |
| 3479 | item[curitem].start = p; |
| 3480 | item[curitem].minwid = minwid; |
| 3481 | s++; |
| 3482 | curitem++; |
| 3483 | continue; |
| 3484 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3485 | if (*s == '.') |
| 3486 | { |
| 3487 | s++; |
| 3488 | if (VIM_ISDIGIT(*s)) |
| 3489 | { |
| 3490 | maxwid = (int)getdigits(&s); |
| 3491 | if (maxwid <= 0) /* overflow */ |
| 3492 | maxwid = 50; |
| 3493 | } |
| 3494 | } |
| 3495 | minwid = (minwid > 50 ? 50 : minwid) * l; |
| 3496 | if (*s == '(') |
| 3497 | { |
| 3498 | groupitem[groupdepth++] = curitem; |
| 3499 | item[curitem].type = Group; |
| 3500 | item[curitem].start = p; |
| 3501 | item[curitem].minwid = minwid; |
| 3502 | item[curitem].maxwid = maxwid; |
| 3503 | s++; |
| 3504 | curitem++; |
| 3505 | continue; |
| 3506 | } |
| 3507 | if (vim_strchr(STL_ALL, *s) == NULL) |
| 3508 | { |
| 3509 | s++; |
| 3510 | continue; |
| 3511 | } |
| 3512 | opt = *s++; |
| 3513 | |
| 3514 | /* OK - now for the real work */ |
| 3515 | base = 'D'; |
| 3516 | itemisflag = FALSE; |
| 3517 | fillable = TRUE; |
| 3518 | num = -1; |
| 3519 | str = NULL; |
| 3520 | switch (opt) |
| 3521 | { |
| 3522 | case STL_FILEPATH: |
| 3523 | case STL_FULLPATH: |
| 3524 | case STL_FILENAME: |
| 3525 | fillable = FALSE; /* don't change ' ' to fillchar */ |
| 3526 | if (buf_spname(wp->w_buffer) != NULL) |
| 3527 | STRCPY(NameBuff, buf_spname(wp->w_buffer)); |
| 3528 | else |
| 3529 | { |
| 3530 | t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname |
Bram Moolenaar | 1d2ba7f | 2006-02-14 22:29:30 +0000 | [diff] [blame] | 3531 | : wp->w_buffer->b_fname; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3532 | home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); |
| 3533 | } |
| 3534 | trans_characters(NameBuff, MAXPATHL); |
| 3535 | if (opt != STL_FILENAME) |
| 3536 | str = NameBuff; |
| 3537 | else |
| 3538 | str = gettail(NameBuff); |
| 3539 | break; |
| 3540 | |
| 3541 | case STL_VIM_EXPR: /* '{' */ |
| 3542 | itemisflag = TRUE; |
| 3543 | t = p; |
| 3544 | while (*s != '}' && *s != NUL && p + 1 < out + outlen) |
| 3545 | *p++ = *s++; |
| 3546 | if (*s != '}') /* missing '}' or out of space */ |
| 3547 | break; |
| 3548 | s++; |
| 3549 | *p = 0; |
| 3550 | p = t; |
| 3551 | |
| 3552 | #ifdef FEAT_EVAL |
| 3553 | sprintf((char *)tmp, "%d", curbuf->b_fnum); |
| 3554 | set_internal_string_var((char_u *)"actual_curbuf", tmp); |
| 3555 | |
| 3556 | o_curbuf = curbuf; |
| 3557 | o_curwin = curwin; |
| 3558 | curwin = wp; |
| 3559 | curbuf = wp->w_buffer; |
| 3560 | |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 3561 | str = eval_to_string_safe(p, &t, use_sandbox); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3562 | |
| 3563 | curwin = o_curwin; |
| 3564 | curbuf = o_curbuf; |
Bram Moolenaar | 0182465 | 2005-01-31 18:58:23 +0000 | [diff] [blame] | 3565 | do_unlet((char_u *)"g:actual_curbuf", TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3566 | |
| 3567 | if (str != NULL && *str != 0) |
| 3568 | { |
| 3569 | if (*skipdigits(str) == NUL) |
| 3570 | { |
| 3571 | num = atoi((char *)str); |
| 3572 | vim_free(str); |
| 3573 | str = NULL; |
| 3574 | itemisflag = FALSE; |
| 3575 | } |
| 3576 | } |
| 3577 | #endif |
| 3578 | break; |
| 3579 | |
| 3580 | case STL_LINE: |
| 3581 | num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) |
| 3582 | ? 0L : (long)(wp->w_cursor.lnum); |
| 3583 | break; |
| 3584 | |
| 3585 | case STL_NUMLINES: |
| 3586 | num = wp->w_buffer->b_ml.ml_line_count; |
| 3587 | break; |
| 3588 | |
| 3589 | case STL_COLUMN: |
| 3590 | num = !(State & INSERT) && empty_line |
| 3591 | ? 0 : (int)wp->w_cursor.col + 1; |
| 3592 | break; |
| 3593 | |
| 3594 | case STL_VIRTCOL: |
| 3595 | case STL_VIRTCOL_ALT: |
| 3596 | /* In list mode virtcol needs to be recomputed */ |
| 3597 | virtcol = wp->w_virtcol; |
| 3598 | if (wp->w_p_list && lcs_tab1 == NUL) |
| 3599 | { |
| 3600 | wp->w_p_list = FALSE; |
| 3601 | getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); |
| 3602 | wp->w_p_list = TRUE; |
| 3603 | } |
| 3604 | ++virtcol; |
| 3605 | /* Don't display %V if it's the same as %c. */ |
| 3606 | if (opt == STL_VIRTCOL_ALT |
| 3607 | && (virtcol == (colnr_T)(!(State & INSERT) && empty_line |
| 3608 | ? 0 : (int)wp->w_cursor.col + 1))) |
| 3609 | break; |
| 3610 | num = (long)virtcol; |
| 3611 | break; |
| 3612 | |
| 3613 | case STL_PERCENTAGE: |
| 3614 | num = (int)(((long)wp->w_cursor.lnum * 100L) / |
| 3615 | (long)wp->w_buffer->b_ml.ml_line_count); |
| 3616 | break; |
| 3617 | |
| 3618 | case STL_ALTPERCENT: |
| 3619 | str = tmp; |
| 3620 | get_rel_pos(wp, str); |
| 3621 | break; |
| 3622 | |
| 3623 | case STL_ARGLISTSTAT: |
| 3624 | fillable = FALSE; |
| 3625 | tmp[0] = 0; |
| 3626 | if (append_arg_number(wp, tmp, FALSE, (int)sizeof(tmp))) |
| 3627 | str = tmp; |
| 3628 | break; |
| 3629 | |
| 3630 | case STL_KEYMAP: |
| 3631 | fillable = FALSE; |
| 3632 | if (get_keymap_str(wp, tmp, TMPLEN)) |
| 3633 | str = tmp; |
| 3634 | break; |
| 3635 | case STL_PAGENUM: |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 3636 | #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 3637 | num = printer_page_num; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3638 | #else |
| 3639 | num = 0; |
| 3640 | #endif |
| 3641 | break; |
| 3642 | |
| 3643 | case STL_BUFNO: |
| 3644 | num = wp->w_buffer->b_fnum; |
| 3645 | break; |
| 3646 | |
| 3647 | case STL_OFFSET_X: |
| 3648 | base = 'X'; |
| 3649 | case STL_OFFSET: |
| 3650 | #ifdef FEAT_BYTEOFF |
| 3651 | l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); |
| 3652 | num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? |
| 3653 | 0L : l + 1 + (!(State & INSERT) && empty_line ? |
| 3654 | 0 : (int)wp->w_cursor.col); |
| 3655 | #endif |
| 3656 | break; |
| 3657 | |
| 3658 | case STL_BYTEVAL_X: |
| 3659 | base = 'X'; |
| 3660 | case STL_BYTEVAL: |
| 3661 | if (((State & INSERT) && wp == curwin) || empty_line) |
| 3662 | num = 0; |
| 3663 | else |
| 3664 | { |
| 3665 | #ifdef FEAT_MBYTE |
| 3666 | num = (*mb_ptr2char)(linecont + wp->w_cursor.col); |
| 3667 | #else |
| 3668 | num = linecont[wp->w_cursor.col]; |
| 3669 | #endif |
| 3670 | } |
| 3671 | if (num == NL) |
| 3672 | num = 0; |
| 3673 | else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) |
| 3674 | num = NL; |
| 3675 | break; |
| 3676 | |
| 3677 | case STL_ROFLAG: |
| 3678 | case STL_ROFLAG_ALT: |
| 3679 | itemisflag = TRUE; |
| 3680 | if (wp->w_buffer->b_p_ro) |
| 3681 | str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : "[RO]"); |
| 3682 | break; |
| 3683 | |
| 3684 | case STL_HELPFLAG: |
| 3685 | case STL_HELPFLAG_ALT: |
| 3686 | itemisflag = TRUE; |
| 3687 | if (wp->w_buffer->b_help) |
| 3688 | str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" |
| 3689 | : _("[help]")); |
| 3690 | break; |
| 3691 | |
| 3692 | #ifdef FEAT_AUTOCMD |
| 3693 | case STL_FILETYPE: |
| 3694 | if (*wp->w_buffer->b_p_ft != NUL |
| 3695 | && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) |
| 3696 | { |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 3697 | vim_snprintf((char *)tmp, sizeof(tmp), "[%s]", |
| 3698 | wp->w_buffer->b_p_ft); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3699 | str = tmp; |
| 3700 | } |
| 3701 | break; |
| 3702 | |
| 3703 | case STL_FILETYPE_ALT: |
| 3704 | itemisflag = TRUE; |
| 3705 | if (*wp->w_buffer->b_p_ft != NUL |
| 3706 | && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) |
| 3707 | { |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 3708 | vim_snprintf((char *)tmp, sizeof(tmp), ",%s", |
| 3709 | wp->w_buffer->b_p_ft); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3710 | for (t = tmp; *t != 0; t++) |
| 3711 | *t = TOUPPER_LOC(*t); |
| 3712 | str = tmp; |
| 3713 | } |
| 3714 | break; |
| 3715 | #endif |
| 3716 | |
| 3717 | #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) |
| 3718 | case STL_PREVIEWFLAG: |
| 3719 | case STL_PREVIEWFLAG_ALT: |
| 3720 | itemisflag = TRUE; |
| 3721 | if (wp->w_p_pvw) |
| 3722 | str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" |
| 3723 | : _("[Preview]")); |
| 3724 | break; |
| 3725 | #endif |
| 3726 | |
| 3727 | case STL_MODIFIED: |
| 3728 | case STL_MODIFIED_ALT: |
| 3729 | itemisflag = TRUE; |
| 3730 | switch ((opt == STL_MODIFIED_ALT) |
| 3731 | + bufIsChanged(wp->w_buffer) * 2 |
| 3732 | + (!wp->w_buffer->b_p_ma) * 4) |
| 3733 | { |
| 3734 | case 2: str = (char_u *)"[+]"; break; |
| 3735 | case 3: str = (char_u *)",+"; break; |
| 3736 | case 4: str = (char_u *)"[-]"; break; |
| 3737 | case 5: str = (char_u *)",-"; break; |
| 3738 | case 6: str = (char_u *)"[+-]"; break; |
| 3739 | case 7: str = (char_u *)",+-"; break; |
| 3740 | } |
| 3741 | break; |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 3742 | |
| 3743 | case STL_HIGHLIGHT: |
| 3744 | t = s; |
| 3745 | while (*s != '#' && *s != NUL) |
| 3746 | ++s; |
| 3747 | if (*s == '#') |
| 3748 | { |
| 3749 | item[curitem].type = Highlight; |
| 3750 | item[curitem].start = p; |
| 3751 | item[curitem].minwid = -syn_namen2id(t, s - t); |
| 3752 | curitem++; |
| 3753 | } |
| 3754 | ++s; |
| 3755 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3756 | } |
| 3757 | |
| 3758 | item[curitem].start = p; |
| 3759 | item[curitem].type = Normal; |
| 3760 | if (str != NULL && *str) |
| 3761 | { |
| 3762 | t = str; |
| 3763 | if (itemisflag) |
| 3764 | { |
| 3765 | if ((t[0] && t[1]) |
| 3766 | && ((!prevchar_isitem && *t == ',') |
| 3767 | || (prevchar_isflag && *t == ' '))) |
| 3768 | t++; |
| 3769 | prevchar_isflag = TRUE; |
| 3770 | } |
| 3771 | l = vim_strsize(t); |
| 3772 | if (l > 0) |
| 3773 | prevchar_isitem = TRUE; |
| 3774 | if (l > maxwid) |
| 3775 | { |
| 3776 | while (l >= maxwid) |
| 3777 | #ifdef FEAT_MBYTE |
| 3778 | if (has_mbyte) |
| 3779 | { |
| 3780 | l -= ptr2cells(t); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3781 | t += (*mb_ptr2len)(t); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3782 | } |
| 3783 | else |
| 3784 | #endif |
| 3785 | l -= byte2cells(*t++); |
| 3786 | if (p + 1 >= out + outlen) |
| 3787 | break; |
| 3788 | *p++ = '<'; |
| 3789 | } |
| 3790 | if (minwid > 0) |
| 3791 | { |
| 3792 | for (; l < minwid && p + 1 < out + outlen; l++) |
| 3793 | { |
| 3794 | /* Don't put a "-" in front of a digit. */ |
| 3795 | if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) |
| 3796 | *p++ = ' '; |
| 3797 | else |
| 3798 | *p++ = fillchar; |
| 3799 | } |
| 3800 | minwid = 0; |
| 3801 | } |
| 3802 | else |
| 3803 | minwid *= -1; |
| 3804 | while (*t && p + 1 < out + outlen) |
| 3805 | { |
| 3806 | *p++ = *t++; |
| 3807 | /* Change a space by fillchar, unless fillchar is '-' and a |
| 3808 | * digit follows. */ |
| 3809 | if (fillable && p[-1] == ' ' |
| 3810 | && (!VIM_ISDIGIT(*t) || fillchar != '-')) |
| 3811 | p[-1] = fillchar; |
| 3812 | } |
| 3813 | for (; l < minwid && p + 1 < out + outlen; l++) |
| 3814 | *p++ = fillchar; |
| 3815 | } |
| 3816 | else if (num >= 0) |
| 3817 | { |
| 3818 | int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); |
| 3819 | char_u nstr[20]; |
| 3820 | |
| 3821 | if (p + 20 >= out + outlen) |
| 3822 | break; /* not sufficient space */ |
| 3823 | prevchar_isitem = TRUE; |
| 3824 | t = nstr; |
| 3825 | if (opt == STL_VIRTCOL_ALT) |
| 3826 | { |
| 3827 | *t++ = '-'; |
| 3828 | minwid--; |
| 3829 | } |
| 3830 | *t++ = '%'; |
| 3831 | if (zeropad) |
| 3832 | *t++ = '0'; |
| 3833 | *t++ = '*'; |
| 3834 | *t++ = nbase == 16 ? base : (nbase == 8 ? 'o' : 'd'); |
| 3835 | *t = 0; |
| 3836 | |
| 3837 | for (n = num, l = 1; n >= nbase; n /= nbase) |
| 3838 | l++; |
| 3839 | if (opt == STL_VIRTCOL_ALT) |
| 3840 | l++; |
| 3841 | if (l > maxwid) |
| 3842 | { |
| 3843 | l += 2; |
| 3844 | n = l - maxwid; |
| 3845 | while (l-- > maxwid) |
| 3846 | num /= nbase; |
| 3847 | *t++ = '>'; |
| 3848 | *t++ = '%'; |
| 3849 | *t = t[-3]; |
| 3850 | *++t = 0; |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 3851 | vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
| 3852 | 0, num, n); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3853 | } |
| 3854 | else |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 3855 | vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
| 3856 | minwid, num); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3857 | p += STRLEN(p); |
| 3858 | } |
| 3859 | else |
| 3860 | item[curitem].type = Empty; |
| 3861 | |
| 3862 | if (opt == STL_VIM_EXPR) |
| 3863 | vim_free(str); |
| 3864 | |
| 3865 | if (num >= 0 || (!itemisflag && str && *str)) |
| 3866 | prevchar_isflag = FALSE; /* Item not NULL, but not a flag */ |
| 3867 | curitem++; |
| 3868 | } |
| 3869 | *p = NUL; |
| 3870 | itemcnt = curitem; |
| 3871 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 3872 | #ifdef FEAT_EVAL |
| 3873 | if (usefmt != fmt) |
| 3874 | vim_free(usefmt); |
| 3875 | #endif |
| 3876 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3877 | width = vim_strsize(out); |
| 3878 | if (maxwidth > 0 && width > maxwidth) |
| 3879 | { |
| 3880 | /* Result is too long, must trunctate somewhere. */ |
| 3881 | l = 0; |
| 3882 | if (itemcnt == 0) |
| 3883 | s = out; |
| 3884 | else |
| 3885 | { |
| 3886 | for ( ; l < itemcnt; l++) |
| 3887 | if (item[l].type == Trunc) |
| 3888 | { |
| 3889 | /* Truncate at %< item. */ |
| 3890 | s = item[l].start; |
| 3891 | break; |
| 3892 | } |
| 3893 | if (l == itemcnt) |
| 3894 | { |
| 3895 | /* No %< item, truncate first item. */ |
| 3896 | s = item[0].start; |
| 3897 | l = 0; |
| 3898 | } |
| 3899 | } |
| 3900 | |
| 3901 | if (width - vim_strsize(s) >= maxwidth) |
| 3902 | { |
| 3903 | /* Truncation mark is beyond max length */ |
| 3904 | #ifdef FEAT_MBYTE |
| 3905 | if (has_mbyte) |
| 3906 | { |
| 3907 | s = out; |
| 3908 | width = 0; |
| 3909 | for (;;) |
| 3910 | { |
| 3911 | width += ptr2cells(s); |
| 3912 | if (width >= maxwidth) |
| 3913 | break; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3914 | s += (*mb_ptr2len)(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3915 | } |
| 3916 | /* Fill up for half a double-wide character. */ |
| 3917 | while (++width < maxwidth) |
| 3918 | *s++ = fillchar; |
| 3919 | } |
| 3920 | else |
| 3921 | #endif |
| 3922 | s = out + maxwidth - 1; |
| 3923 | for (l = 0; l < itemcnt; l++) |
| 3924 | if (item[l].start > s) |
| 3925 | break; |
| 3926 | itemcnt = l; |
| 3927 | *s++ = '>'; |
| 3928 | *s = 0; |
| 3929 | } |
| 3930 | else |
| 3931 | { |
| 3932 | #ifdef FEAT_MBYTE |
| 3933 | if (has_mbyte) |
| 3934 | { |
| 3935 | n = 0; |
| 3936 | while (width >= maxwidth) |
| 3937 | { |
| 3938 | width -= ptr2cells(s + n); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3939 | n += (*mb_ptr2len)(s + n); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3940 | } |
| 3941 | } |
| 3942 | else |
| 3943 | #endif |
| 3944 | n = width - maxwidth + 1; |
| 3945 | p = s + n; |
| 3946 | mch_memmove(s + 1, p, STRLEN(p) + 1); |
| 3947 | *s = '<'; |
| 3948 | |
| 3949 | /* Fill up for half a double-wide character. */ |
| 3950 | while (++width < maxwidth) |
| 3951 | { |
| 3952 | s = s + STRLEN(s); |
| 3953 | *s++ = fillchar; |
| 3954 | *s = NUL; |
| 3955 | } |
| 3956 | |
| 3957 | --n; /* count the '<' */ |
| 3958 | for (; l < itemcnt; l++) |
| 3959 | { |
| 3960 | if (item[l].start - n >= s) |
| 3961 | item[l].start -= n; |
| 3962 | else |
| 3963 | item[l].start = s; |
| 3964 | } |
| 3965 | } |
| 3966 | width = maxwidth; |
| 3967 | } |
| 3968 | else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) |
| 3969 | { |
| 3970 | /* Apply STL_MIDDLE if any */ |
| 3971 | for (l = 0; l < itemcnt; l++) |
| 3972 | if (item[l].type == Middle) |
| 3973 | break; |
| 3974 | if (l < itemcnt) |
| 3975 | { |
| 3976 | p = item[l].start + maxwidth - width; |
| 3977 | mch_memmove(p, item[l].start, STRLEN(item[l].start) + 1); |
| 3978 | for (s = item[l].start; s < p; s++) |
| 3979 | *s = fillchar; |
| 3980 | for (l++; l < itemcnt; l++) |
| 3981 | item[l].start += maxwidth - width; |
| 3982 | width = maxwidth; |
| 3983 | } |
| 3984 | } |
| 3985 | |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3986 | /* Store the info about highlighting. */ |
| 3987 | if (hltab != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3988 | { |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3989 | sp = hltab; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3990 | for (l = 0; l < itemcnt; l++) |
| 3991 | { |
| 3992 | if (item[l].type == Highlight) |
| 3993 | { |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3994 | sp->start = item[l].start; |
| 3995 | sp->userhl = item[l].minwid; |
| 3996 | sp++; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3997 | } |
| 3998 | } |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 3999 | sp->start = NULL; |
| 4000 | sp->userhl = 0; |
| 4001 | } |
| 4002 | |
| 4003 | /* Store the info about tab pages labels. */ |
| 4004 | if (tabtab != NULL) |
| 4005 | { |
| 4006 | sp = tabtab; |
| 4007 | for (l = 0; l < itemcnt; l++) |
| 4008 | { |
| 4009 | if (item[l].type == TabPage) |
| 4010 | { |
| 4011 | sp->start = item[l].start; |
| 4012 | sp->userhl = item[l].minwid; |
| 4013 | sp++; |
| 4014 | } |
| 4015 | } |
| 4016 | sp->start = NULL; |
| 4017 | sp->userhl = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4018 | } |
| 4019 | |
| 4020 | return width; |
| 4021 | } |
| 4022 | #endif /* FEAT_STL_OPT */ |
| 4023 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 4024 | #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ |
| 4025 | || defined(FEAT_GUI_TABLINE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4026 | /* |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 4027 | * Get relative cursor position in window into "str[]", in the form 99%, using |
| 4028 | * "Top", "Bot" or "All" when appropriate. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4029 | */ |
| 4030 | void |
| 4031 | get_rel_pos(wp, str) |
| 4032 | win_T *wp; |
| 4033 | char_u *str; |
| 4034 | { |
| 4035 | long above; /* number of lines above window */ |
| 4036 | long below; /* number of lines below window */ |
| 4037 | |
| 4038 | above = wp->w_topline - 1; |
| 4039 | #ifdef FEAT_DIFF |
| 4040 | above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; |
| 4041 | #endif |
| 4042 | below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; |
| 4043 | if (below <= 0) |
| 4044 | STRCPY(str, above == 0 ? _("All") : _("Bot")); |
| 4045 | else if (above <= 0) |
| 4046 | STRCPY(str, _("Top")); |
| 4047 | else |
| 4048 | sprintf((char *)str, "%2d%%", above > 1000000L |
| 4049 | ? (int)(above / ((above + below) / 100L)) |
| 4050 | : (int)(above * 100L / (above + below))); |
| 4051 | } |
| 4052 | #endif |
| 4053 | |
| 4054 | /* |
| 4055 | * Append (file 2 of 8) to 'buf', if editing more than one file. |
| 4056 | * Return TRUE if it was appended. |
| 4057 | */ |
| 4058 | int |
| 4059 | append_arg_number(wp, buf, add_file, maxlen) |
| 4060 | win_T *wp; |
| 4061 | char_u *buf; |
| 4062 | int add_file; /* Add "file" before the arg number */ |
| 4063 | int maxlen; /* maximum nr of chars in buf or zero*/ |
| 4064 | { |
| 4065 | char_u *p; |
| 4066 | |
| 4067 | if (ARGCOUNT <= 1) /* nothing to do */ |
| 4068 | return FALSE; |
| 4069 | |
| 4070 | p = buf + STRLEN(buf); /* go to the end of the buffer */ |
| 4071 | if (maxlen && p - buf + 35 >= maxlen) /* getting too long */ |
| 4072 | return FALSE; |
| 4073 | *p++ = ' '; |
| 4074 | *p++ = '('; |
| 4075 | if (add_file) |
| 4076 | { |
| 4077 | STRCPY(p, "file "); |
| 4078 | p += 5; |
| 4079 | } |
| 4080 | sprintf((char *)p, wp->w_arg_idx_invalid ? "(%d) of %d)" |
| 4081 | : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); |
| 4082 | return TRUE; |
| 4083 | } |
| 4084 | |
| 4085 | /* |
| 4086 | * If fname is not a full path, make it a full path. |
| 4087 | * Returns pointer to allocated memory (NULL for failure). |
| 4088 | */ |
| 4089 | char_u * |
| 4090 | fix_fname(fname) |
| 4091 | char_u *fname; |
| 4092 | { |
| 4093 | /* |
| 4094 | * Force expanding the path always for Unix, because symbolic links may |
| 4095 | * mess up the full path name, even though it starts with a '/'. |
| 4096 | * Also expand when there is ".." in the file name, try to remove it, |
| 4097 | * because "c:/src/../README" is equal to "c:/README". |
| 4098 | * For MS-Windows also expand names like "longna~1" to "longname". |
| 4099 | */ |
| 4100 | #ifdef UNIX |
| 4101 | return FullName_save(fname, TRUE); |
| 4102 | #else |
| 4103 | if (!vim_isAbsName(fname) || strstr((char *)fname, "..") != NULL |
| 4104 | #if defined(MSWIN) || defined(DJGPP) |
| 4105 | || vim_strchr(fname, '~') != NULL |
| 4106 | #endif |
| 4107 | ) |
| 4108 | return FullName_save(fname, FALSE); |
| 4109 | |
| 4110 | fname = vim_strsave(fname); |
| 4111 | |
| 4112 | #ifdef USE_FNAME_CASE |
| 4113 | # ifdef USE_LONG_FNAME |
| 4114 | if (USE_LONG_FNAME) |
| 4115 | # endif |
| 4116 | { |
| 4117 | if (fname != NULL) |
| 4118 | fname_case(fname, 0); /* set correct case for file name */ |
| 4119 | } |
| 4120 | #endif |
| 4121 | |
| 4122 | return fname; |
| 4123 | #endif |
| 4124 | } |
| 4125 | |
| 4126 | /* |
| 4127 | * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL. |
| 4128 | * "ffname" becomes a pointer to allocated memory (or NULL). |
| 4129 | */ |
| 4130 | /*ARGSUSED*/ |
| 4131 | void |
| 4132 | fname_expand(buf, ffname, sfname) |
| 4133 | buf_T *buf; |
| 4134 | char_u **ffname; |
| 4135 | char_u **sfname; |
| 4136 | { |
| 4137 | if (*ffname == NULL) /* if no file name given, nothing to do */ |
| 4138 | return; |
| 4139 | if (*sfname == NULL) /* if no short file name given, use ffname */ |
| 4140 | *sfname = *ffname; |
| 4141 | *ffname = fix_fname(*ffname); /* expand to full path */ |
| 4142 | |
| 4143 | #ifdef FEAT_SHORTCUT |
| 4144 | if (!buf->b_p_bin) |
| 4145 | { |
| 4146 | char_u *rfname = NULL; |
| 4147 | |
| 4148 | /* If the file name is a shortcut file, use the file it links to. */ |
| 4149 | rfname = mch_resolve_shortcut(*ffname); |
| 4150 | if (rfname) |
| 4151 | { |
| 4152 | vim_free(*ffname); |
| 4153 | *ffname = rfname; |
| 4154 | *sfname = rfname; |
| 4155 | } |
| 4156 | } |
| 4157 | #endif |
| 4158 | } |
| 4159 | |
| 4160 | /* |
| 4161 | * Get the file name for an argument list entry. |
| 4162 | */ |
| 4163 | char_u * |
| 4164 | alist_name(aep) |
| 4165 | aentry_T *aep; |
| 4166 | { |
| 4167 | buf_T *bp; |
| 4168 | |
| 4169 | /* Use the name from the associated buffer if it exists. */ |
| 4170 | bp = buflist_findnr(aep->ae_fnum); |
| 4171 | if (bp == NULL) |
| 4172 | return aep->ae_fname; |
| 4173 | return bp->b_fname; |
| 4174 | } |
| 4175 | |
| 4176 | #if defined(FEAT_WINDOWS) || defined(PROTO) |
| 4177 | /* |
| 4178 | * do_arg_all(): Open up to 'count' windows, one for each argument. |
| 4179 | */ |
| 4180 | void |
| 4181 | do_arg_all(count, forceit) |
| 4182 | int count; |
| 4183 | int forceit; /* hide buffers in current windows */ |
| 4184 | { |
| 4185 | int i; |
| 4186 | win_T *wp, *wpnext; |
| 4187 | char_u *opened; /* array of flags for which args are open */ |
| 4188 | int opened_len; /* lenght of opened[] */ |
| 4189 | int use_firstwin = FALSE; /* use first window for arglist */ |
| 4190 | int split_ret = OK; |
| 4191 | int p_ea_save; |
| 4192 | alist_T *alist; /* argument list to be used */ |
| 4193 | buf_T *buf; |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4194 | tabpage_T *tpnext; |
| 4195 | int had_tab = cmdmod.tab; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4196 | |
| 4197 | if (ARGCOUNT <= 0) |
| 4198 | { |
| 4199 | /* Don't give an error message. We don't want it when the ":all" |
| 4200 | * command is in the .vimrc. */ |
| 4201 | return; |
| 4202 | } |
| 4203 | setpcmark(); |
| 4204 | |
| 4205 | opened_len = ARGCOUNT; |
| 4206 | opened = alloc_clear((unsigned)opened_len); |
| 4207 | if (opened == NULL) |
| 4208 | return; |
| 4209 | |
| 4210 | #ifdef FEAT_GUI |
| 4211 | need_mouse_correct = TRUE; |
| 4212 | #endif |
| 4213 | |
| 4214 | /* |
| 4215 | * Try closing all windows that are not in the argument list. |
| 4216 | * Also close windows that are not full width; |
| 4217 | * When 'hidden' or "forceit" set the buffer becomes hidden. |
| 4218 | * 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] | 4219 | * When the ":tab" modifier was used do this for all tab pages. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4220 | */ |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4221 | if (had_tab > 0) |
| 4222 | goto_tabpage_tp(first_tabpage); |
| 4223 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4224 | { |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4225 | tpnext = curtab->tp_next; |
| 4226 | for (wp = firstwin; wp != NULL; wp = wpnext) |
| 4227 | { |
| 4228 | wpnext = wp->w_next; |
| 4229 | buf = wp->w_buffer; |
| 4230 | if (buf->b_ffname == NULL |
| 4231 | || buf->b_nwindows > 1 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4232 | #ifdef FEAT_VERTSPLIT |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4233 | || wp->w_width != Columns |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4234 | #endif |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4235 | ) |
| 4236 | i = ARGCOUNT; |
| 4237 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4238 | { |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4239 | /* check if the buffer in this window is in the arglist */ |
| 4240 | for (i = 0; i < ARGCOUNT; ++i) |
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 (ARGLIST[i].ae_fnum == buf->b_fnum |
| 4243 | || fullpathcmp(alist_name(&ARGLIST[i]), |
| 4244 | buf->b_ffname, TRUE) & FPC_SAME) |
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 | if (i < opened_len) |
| 4247 | opened[i] = TRUE; |
| 4248 | if (wp->w_alist != curwin->w_alist) |
| 4249 | { |
| 4250 | /* Use the current argument list for all windows |
| 4251 | * containing a file from it. */ |
| 4252 | alist_unlink(wp->w_alist); |
| 4253 | wp->w_alist = curwin->w_alist; |
| 4254 | ++wp->w_alist->al_refcount; |
| 4255 | } |
| 4256 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4257 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4258 | } |
| 4259 | } |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4260 | wp->w_arg_idx = i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4261 | |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4262 | if (i == ARGCOUNT) /* close this window */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4263 | { |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4264 | if (P_HID(buf) || forceit || buf->b_nwindows > 1 |
| 4265 | || !bufIsChanged(buf)) |
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 the buffer was changed, and we would like to hide it, |
| 4268 | * try autowriting. */ |
| 4269 | if (!P_HID(buf) && buf->b_nwindows <= 1 && bufIsChanged(buf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4270 | { |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4271 | (void)autowrite(buf, FALSE); |
| 4272 | #ifdef FEAT_AUTOCMD |
| 4273 | /* check if autocommands removed the window */ |
| 4274 | if (!win_valid(wp) || !buf_valid(buf)) |
| 4275 | { |
| 4276 | wpnext = firstwin; /* start all over... */ |
| 4277 | continue; |
| 4278 | } |
| 4279 | #endif |
| 4280 | } |
| 4281 | #ifdef FEAT_WINDOWS |
| 4282 | if (firstwin == lastwin) /* don't close last window */ |
| 4283 | #endif |
| 4284 | use_firstwin = TRUE; |
| 4285 | #ifdef FEAT_WINDOWS |
| 4286 | else |
| 4287 | { |
| 4288 | win_close(wp, !P_HID(buf) && !bufIsChanged(buf)); |
| 4289 | # ifdef FEAT_AUTOCMD |
| 4290 | /* check if autocommands removed the next window */ |
| 4291 | if (!win_valid(wpnext)) |
| 4292 | wpnext = firstwin; /* start all over... */ |
| 4293 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4294 | } |
| 4295 | #endif |
| 4296 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4297 | } |
| 4298 | } |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4299 | |
| 4300 | /* Without the ":tab" modifier only do the current tab page. */ |
| 4301 | if (had_tab == 0 || tpnext == NULL) |
| 4302 | break; |
| 4303 | |
| 4304 | # ifdef FEAT_AUTOCMD |
| 4305 | /* check if autocommands removed the next tab page */ |
| 4306 | if (!valid_tabpage(tpnext)) |
| 4307 | tpnext = first_tabpage; /* start all over...*/ |
| 4308 | # endif |
| 4309 | goto_tabpage_tp(tpnext); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4310 | } |
| 4311 | |
| 4312 | /* |
| 4313 | * Open a window for files in the argument list that don't have one. |
| 4314 | * ARGCOUNT may change while doing this, because of autocommands. |
| 4315 | */ |
| 4316 | if (count > ARGCOUNT || count <= 0) |
| 4317 | count = ARGCOUNT; |
| 4318 | |
| 4319 | /* Autocommands may do anything to the argument list. Make sure it's not |
| 4320 | * freed while we are working here by "locking" it. We still have to |
| 4321 | * watch out for its size to be changed. */ |
| 4322 | alist = curwin->w_alist; |
| 4323 | ++alist->al_refcount; |
| 4324 | |
| 4325 | #ifdef FEAT_AUTOCMD |
| 4326 | /* Don't execute Win/Buf Enter/Leave autocommands here. */ |
| 4327 | ++autocmd_no_enter; |
| 4328 | ++autocmd_no_leave; |
| 4329 | #endif |
| 4330 | win_enter(lastwin, FALSE); |
| 4331 | for (i = 0; i < count && i < alist->al_ga.ga_len && !got_int; ++i) |
| 4332 | { |
| 4333 | if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1) |
| 4334 | arg_had_last = TRUE; |
| 4335 | if (i < opened_len && opened[i]) |
| 4336 | { |
| 4337 | /* Move the already present window to below the current window */ |
| 4338 | if (curwin->w_arg_idx != i) |
| 4339 | { |
| 4340 | for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next) |
| 4341 | { |
| 4342 | if (wpnext->w_arg_idx == i) |
| 4343 | { |
| 4344 | win_move_after(wpnext, curwin); |
| 4345 | break; |
| 4346 | } |
| 4347 | } |
| 4348 | } |
| 4349 | } |
| 4350 | else if (split_ret == OK) |
| 4351 | { |
| 4352 | if (!use_firstwin) /* split current window */ |
| 4353 | { |
| 4354 | p_ea_save = p_ea; |
| 4355 | p_ea = TRUE; /* use space from all windows */ |
| 4356 | split_ret = win_split(0, WSP_ROOM | WSP_BELOW); |
| 4357 | p_ea = p_ea_save; |
| 4358 | if (split_ret == FAIL) |
| 4359 | continue; |
| 4360 | } |
| 4361 | #ifdef FEAT_AUTOCMD |
| 4362 | else /* first window: do autocmd for leaving this buffer */ |
| 4363 | --autocmd_no_leave; |
| 4364 | #endif |
| 4365 | |
| 4366 | /* |
| 4367 | * edit file i |
| 4368 | */ |
| 4369 | curwin->w_arg_idx = i; |
| 4370 | (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL, |
| 4371 | ECMD_ONE, |
| 4372 | ((P_HID(curwin->w_buffer) |
| 4373 | || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0) |
| 4374 | + ECMD_OLDBUF); |
| 4375 | #ifdef FEAT_AUTOCMD |
| 4376 | if (use_firstwin) |
| 4377 | ++autocmd_no_leave; |
| 4378 | #endif |
| 4379 | use_firstwin = FALSE; |
| 4380 | } |
| 4381 | ui_breakcheck(); |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4382 | |
| 4383 | /* When ":tab" was used open a new tab for a new window repeatedly. */ |
| 4384 | if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) |
| 4385 | cmdmod.tab = 9999; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4386 | } |
| 4387 | |
| 4388 | /* Remove the "lock" on the argument list. */ |
| 4389 | alist_unlink(alist); |
| 4390 | |
| 4391 | #ifdef FEAT_AUTOCMD |
| 4392 | --autocmd_no_enter; |
| 4393 | #endif |
| 4394 | win_enter(firstwin, FALSE); /* back to first window */ |
| 4395 | #ifdef FEAT_AUTOCMD |
| 4396 | --autocmd_no_leave; |
| 4397 | #endif |
| 4398 | vim_free(opened); |
| 4399 | } |
| 4400 | |
| 4401 | # if defined(FEAT_LISTCMDS) || defined(PROTO) |
| 4402 | /* |
| 4403 | * Open a window for a number of buffers. |
| 4404 | */ |
| 4405 | void |
| 4406 | ex_buffer_all(eap) |
| 4407 | exarg_T *eap; |
| 4408 | { |
| 4409 | buf_T *buf; |
| 4410 | win_T *wp, *wpnext; |
| 4411 | int split_ret = OK; |
| 4412 | int p_ea_save; |
| 4413 | int open_wins = 0; |
| 4414 | int r; |
| 4415 | int count; /* Maximum number of windows to open. */ |
| 4416 | int all; /* When TRUE also load inactive buffers. */ |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4417 | #ifdef FEAT_WINDOWS |
| 4418 | int had_tab = cmdmod.tab; |
| 4419 | tabpage_T *tpnext; |
| 4420 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4421 | |
| 4422 | if (eap->addr_count == 0) /* make as many windows as possible */ |
| 4423 | count = 9999; |
| 4424 | else |
| 4425 | count = eap->line2; /* make as many windows as specified */ |
| 4426 | if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) |
| 4427 | all = FALSE; |
| 4428 | else |
| 4429 | all = TRUE; |
| 4430 | |
| 4431 | setpcmark(); |
| 4432 | |
| 4433 | #ifdef FEAT_GUI |
| 4434 | need_mouse_correct = TRUE; |
| 4435 | #endif |
| 4436 | |
| 4437 | /* |
| 4438 | * Close superfluous windows (two windows for the same buffer). |
| 4439 | * Also close windows that are not full-width. |
| 4440 | */ |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4441 | #ifdef FEAT_WINDOWS |
| 4442 | if (had_tab > 0) |
| 4443 | goto_tabpage_tp(first_tabpage); |
| 4444 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4445 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4446 | #endif |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4447 | tpnext = curtab->tp_next; |
| 4448 | for (wp = firstwin; wp != NULL; wp = wpnext) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4449 | { |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4450 | wpnext = wp->w_next; |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 4451 | if ((wp->w_buffer->b_nwindows > 1 |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4452 | #ifdef FEAT_VERTSPLIT |
| 4453 | || ((cmdmod.split & WSP_VERT) |
| 4454 | ? wp->w_height + wp->w_status_height < Rows - p_ch |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 4455 | - tabline_height() |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4456 | : wp->w_width != Columns) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4457 | #endif |
Bram Moolenaar | b475fb9 | 2006-03-02 22:40:52 +0000 | [diff] [blame] | 4458 | #ifdef FEAT_WINDOWS |
| 4459 | || (had_tab > 0 && wp != firstwin) |
| 4460 | #endif |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 4461 | ) && firstwin != lastwin) |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4462 | { |
| 4463 | win_close(wp, FALSE); |
| 4464 | #ifdef FEAT_AUTOCMD |
| 4465 | wpnext = firstwin; /* just in case an autocommand does |
| 4466 | something strange with windows */ |
Bram Moolenaar | b475fb9 | 2006-03-02 22:40:52 +0000 | [diff] [blame] | 4467 | tpnext = first_tabpage; /* start all over...*/ |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4468 | open_wins = 0; |
| 4469 | #endif |
| 4470 | } |
| 4471 | else |
| 4472 | ++open_wins; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4473 | } |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4474 | |
| 4475 | #ifdef FEAT_WINDOWS |
| 4476 | /* Without the ":tab" modifier only do the current tab page. */ |
| 4477 | if (had_tab == 0 || tpnext == NULL) |
| 4478 | break; |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4479 | goto_tabpage_tp(tpnext); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4480 | } |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4481 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4482 | |
| 4483 | /* |
| 4484 | * Go through the buffer list. When a buffer doesn't have a window yet, |
| 4485 | * open one. Otherwise move the window to the right position. |
| 4486 | * Watch out for autocommands that delete buffers or windows! |
| 4487 | */ |
| 4488 | #ifdef FEAT_AUTOCMD |
| 4489 | /* Don't execute Win/Buf Enter/Leave autocommands here. */ |
| 4490 | ++autocmd_no_enter; |
| 4491 | #endif |
| 4492 | win_enter(lastwin, FALSE); |
| 4493 | #ifdef FEAT_AUTOCMD |
| 4494 | ++autocmd_no_leave; |
| 4495 | #endif |
| 4496 | for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) |
| 4497 | { |
| 4498 | /* Check if this buffer needs a window */ |
| 4499 | if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) |
| 4500 | continue; |
| 4501 | |
Bram Moolenaar | b475fb9 | 2006-03-02 22:40:52 +0000 | [diff] [blame] | 4502 | #ifdef FEAT_WINDOWS |
| 4503 | if (had_tab != 0) |
| 4504 | { |
| 4505 | /* With the ":tab" modifier don't move the window. */ |
| 4506 | if (buf->b_nwindows > 0) |
| 4507 | wp = lastwin; /* buffer has a window, skip it */ |
| 4508 | else |
| 4509 | wp = NULL; |
| 4510 | } |
| 4511 | else |
| 4512 | #endif |
| 4513 | { |
| 4514 | /* Check if this buffer already has a window */ |
| 4515 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 4516 | if (wp->w_buffer == buf) |
| 4517 | break; |
| 4518 | /* If the buffer already has a window, move it */ |
| 4519 | if (wp != NULL) |
| 4520 | win_move_after(wp, curwin); |
| 4521 | } |
| 4522 | |
| 4523 | if (wp == NULL && split_ret == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4524 | { |
| 4525 | /* Split the window and put the buffer in it */ |
| 4526 | p_ea_save = p_ea; |
| 4527 | p_ea = TRUE; /* use space from all windows */ |
| 4528 | split_ret = win_split(0, WSP_ROOM | WSP_BELOW); |
| 4529 | ++open_wins; |
| 4530 | p_ea = p_ea_save; |
| 4531 | if (split_ret == FAIL) |
| 4532 | continue; |
| 4533 | |
| 4534 | /* Open the buffer in this window. */ |
Bram Moolenaar | e64ac77 | 2005-12-07 20:54:59 +0000 | [diff] [blame] | 4535 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4536 | swap_exists_action = SEA_DIALOG; |
| 4537 | #endif |
| 4538 | set_curbuf(buf, DOBUF_GOTO); |
| 4539 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4540 | if (!buf_valid(buf)) /* autocommands deleted the buffer!!! */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4541 | { |
Bram Moolenaar | e64ac77 | 2005-12-07 20:54:59 +0000 | [diff] [blame] | 4542 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4543 | swap_exists_action = SEA_NONE; |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4544 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4545 | break; |
| 4546 | } |
| 4547 | #endif |
Bram Moolenaar | e64ac77 | 2005-12-07 20:54:59 +0000 | [diff] [blame] | 4548 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4549 | if (swap_exists_action == SEA_QUIT) |
| 4550 | { |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 4551 | # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 4552 | cleanup_T cs; |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4553 | |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 4554 | /* Reset the error/interrupt/exception state here so that |
| 4555 | * aborting() returns FALSE when closing a window. */ |
| 4556 | enter_cleanup(&cs); |
| 4557 | # endif |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4558 | |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 4559 | /* User selected Quit at ATTENTION prompt; close this window. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4560 | win_close(curwin, TRUE); |
| 4561 | --open_wins; |
| 4562 | swap_exists_action = SEA_NONE; |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4563 | swap_exists_did_quit = TRUE; |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 4564 | |
| 4565 | # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 4566 | /* Restore the error/interrupt/exception state if not |
| 4567 | * discarded by a new aborting error, interrupt, or uncaught |
| 4568 | * exception. */ |
| 4569 | leave_cleanup(&cs); |
| 4570 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4571 | } |
| 4572 | else |
| 4573 | handle_swap_exists(NULL); |
| 4574 | #endif |
| 4575 | } |
| 4576 | |
| 4577 | ui_breakcheck(); |
| 4578 | if (got_int) |
| 4579 | { |
| 4580 | (void)vgetc(); /* only break the file loading, not the rest */ |
| 4581 | break; |
| 4582 | } |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4583 | #ifdef FEAT_EVAL |
| 4584 | /* Autocommands deleted the buffer or aborted script processing!!! */ |
| 4585 | if (aborting()) |
| 4586 | break; |
| 4587 | #endif |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 4588 | #ifdef FEAT_WINDOWS |
| 4589 | /* When ":tab" was used open a new tab for a new window repeatedly. */ |
| 4590 | if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) |
| 4591 | cmdmod.tab = 9999; |
| 4592 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4593 | } |
| 4594 | #ifdef FEAT_AUTOCMD |
| 4595 | --autocmd_no_enter; |
| 4596 | #endif |
| 4597 | win_enter(firstwin, FALSE); /* back to first window */ |
| 4598 | #ifdef FEAT_AUTOCMD |
| 4599 | --autocmd_no_leave; |
| 4600 | #endif |
| 4601 | |
| 4602 | /* |
| 4603 | * Close superfluous windows. |
| 4604 | */ |
| 4605 | for (wp = lastwin; open_wins > count; ) |
| 4606 | { |
| 4607 | r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer) |
| 4608 | || autowrite(wp->w_buffer, FALSE) == OK); |
| 4609 | #ifdef FEAT_AUTOCMD |
| 4610 | if (!win_valid(wp)) |
| 4611 | { |
| 4612 | /* BufWrite Autocommands made the window invalid, start over */ |
| 4613 | wp = lastwin; |
| 4614 | } |
| 4615 | else |
| 4616 | #endif |
| 4617 | if (r) |
| 4618 | { |
| 4619 | win_close(wp, !P_HID(wp->w_buffer)); |
| 4620 | --open_wins; |
| 4621 | wp = lastwin; |
| 4622 | } |
| 4623 | else |
| 4624 | { |
| 4625 | wp = wp->w_prev; |
| 4626 | if (wp == NULL) |
| 4627 | break; |
| 4628 | } |
| 4629 | } |
| 4630 | } |
| 4631 | # endif /* FEAT_LISTCMDS */ |
| 4632 | |
| 4633 | #endif /* FEAT_WINDOWS */ |
| 4634 | |
| 4635 | /* |
| 4636 | * do_modelines() - process mode lines for the current file |
| 4637 | * |
| 4638 | * Returns immediately if the "ml" option isn't set. |
| 4639 | */ |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4640 | static int chk_modeline __ARGS((linenr_T, int)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4641 | |
| 4642 | void |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4643 | do_modelines(win_only) |
| 4644 | int win_only; /* Only do window-local options. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4645 | { |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4646 | linenr_T lnum; |
| 4647 | int nmlines; |
| 4648 | static int entered = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4649 | |
| 4650 | if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) |
| 4651 | return; |
| 4652 | |
| 4653 | /* Disallow recursive entry here. Can happen when executing a modeline |
| 4654 | * triggers an autocommand, which reloads modelines with a ":do". */ |
| 4655 | if (entered) |
| 4656 | return; |
| 4657 | |
| 4658 | ++entered; |
| 4659 | for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; |
| 4660 | ++lnum) |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4661 | if (chk_modeline(lnum, win_only) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4662 | nmlines = 0; |
| 4663 | |
| 4664 | for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines |
| 4665 | && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4666 | if (chk_modeline(lnum, win_only) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4667 | nmlines = 0; |
| 4668 | --entered; |
| 4669 | } |
| 4670 | |
| 4671 | #include "version.h" /* for version number */ |
| 4672 | |
| 4673 | /* |
| 4674 | * chk_modeline() - check a single line for a mode string |
| 4675 | * Return FAIL if an error encountered. |
| 4676 | */ |
| 4677 | static int |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4678 | chk_modeline(lnum, win_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4679 | linenr_T lnum; |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4680 | int win_only; /* Only do window-local options. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4681 | { |
| 4682 | char_u *s; |
| 4683 | char_u *e; |
| 4684 | char_u *linecopy; /* local copy of any modeline found */ |
| 4685 | int prev; |
| 4686 | int vers; |
| 4687 | int end; |
| 4688 | int retval = OK; |
| 4689 | char_u *save_sourcing_name; |
| 4690 | linenr_T save_sourcing_lnum; |
| 4691 | #ifdef FEAT_EVAL |
| 4692 | scid_T save_SID; |
| 4693 | #endif |
| 4694 | |
| 4695 | prev = -1; |
| 4696 | for (s = ml_get(lnum); *s != NUL; ++s) |
| 4697 | { |
| 4698 | if (prev == -1 || vim_isspace(prev)) |
| 4699 | { |
| 4700 | if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) |
| 4701 | || STRNCMP(s, "vi:", (size_t)3) == 0) |
| 4702 | break; |
| 4703 | if (STRNCMP(s, "vim", 3) == 0) |
| 4704 | { |
| 4705 | if (s[3] == '<' || s[3] == '=' || s[3] == '>') |
| 4706 | e = s + 4; |
| 4707 | else |
| 4708 | e = s + 3; |
| 4709 | vers = getdigits(&e); |
| 4710 | if (*e == ':' |
| 4711 | && (s[3] == ':' |
| 4712 | || (VIM_VERSION_100 >= vers && isdigit(s[3])) |
| 4713 | || (VIM_VERSION_100 < vers && s[3] == '<') |
| 4714 | || (VIM_VERSION_100 > vers && s[3] == '>') |
| 4715 | || (VIM_VERSION_100 == vers && s[3] == '='))) |
| 4716 | break; |
| 4717 | } |
| 4718 | } |
| 4719 | prev = *s; |
| 4720 | } |
| 4721 | |
| 4722 | if (*s) |
| 4723 | { |
| 4724 | do /* skip over "ex:", "vi:" or "vim:" */ |
| 4725 | ++s; |
| 4726 | while (s[-1] != ':'); |
| 4727 | |
| 4728 | s = linecopy = vim_strsave(s); /* copy the line, it will change */ |
| 4729 | if (linecopy == NULL) |
| 4730 | return FAIL; |
| 4731 | |
| 4732 | save_sourcing_lnum = sourcing_lnum; |
| 4733 | save_sourcing_name = sourcing_name; |
| 4734 | sourcing_lnum = lnum; /* prepare for emsg() */ |
| 4735 | sourcing_name = (char_u *)"modelines"; |
| 4736 | |
| 4737 | end = FALSE; |
| 4738 | while (end == FALSE) |
| 4739 | { |
| 4740 | s = skipwhite(s); |
| 4741 | if (*s == NUL) |
| 4742 | break; |
| 4743 | |
| 4744 | /* |
| 4745 | * Find end of set command: ':' or end of line. |
| 4746 | * Skip over "\:", replacing it with ":". |
| 4747 | */ |
| 4748 | for (e = s; *e != ':' && *e != NUL; ++e) |
| 4749 | if (e[0] == '\\' && e[1] == ':') |
| 4750 | STRCPY(e, e + 1); |
| 4751 | if (*e == NUL) |
| 4752 | end = TRUE; |
| 4753 | |
| 4754 | /* |
| 4755 | * If there is a "set" command, require a terminating ':' and |
| 4756 | * ignore the stuff after the ':'. |
| 4757 | * "vi:set opt opt opt: foo" -- foo not interpreted |
| 4758 | * "vi:opt opt opt: foo" -- foo interpreted |
| 4759 | * Accept "se" for compatibility with Elvis. |
| 4760 | */ |
| 4761 | if (STRNCMP(s, "set ", (size_t)4) == 0 |
| 4762 | || STRNCMP(s, "se ", (size_t)3) == 0) |
| 4763 | { |
| 4764 | if (*e != ':') /* no terminating ':'? */ |
| 4765 | break; |
| 4766 | end = TRUE; |
| 4767 | s = vim_strchr(s, ' ') + 1; |
| 4768 | } |
| 4769 | *e = NUL; /* truncate the set command */ |
| 4770 | |
| 4771 | if (*s != NUL) /* skip over an empty "::" */ |
| 4772 | { |
| 4773 | #ifdef FEAT_EVAL |
| 4774 | save_SID = current_SID; |
| 4775 | current_SID = SID_MODELINE; |
| 4776 | #endif |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4777 | retval = do_set(s, OPT_MODELINE | OPT_LOCAL |
| 4778 | | (win_only ? OPT_WINONLY : 0)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4779 | #ifdef FEAT_EVAL |
| 4780 | current_SID = save_SID; |
| 4781 | #endif |
| 4782 | if (retval == FAIL) /* stop if error found */ |
| 4783 | break; |
| 4784 | } |
| 4785 | s = e + 1; /* advance to next part */ |
| 4786 | } |
| 4787 | |
| 4788 | sourcing_lnum = save_sourcing_lnum; |
| 4789 | sourcing_name = save_sourcing_name; |
| 4790 | |
| 4791 | vim_free(linecopy); |
| 4792 | } |
| 4793 | return retval; |
| 4794 | } |
| 4795 | |
| 4796 | #ifdef FEAT_VIMINFO |
| 4797 | int |
| 4798 | read_viminfo_bufferlist(virp, writing) |
| 4799 | vir_T *virp; |
| 4800 | int writing; |
| 4801 | { |
| 4802 | char_u *tab; |
| 4803 | linenr_T lnum; |
| 4804 | colnr_T col; |
| 4805 | buf_T *buf; |
| 4806 | char_u *sfname; |
| 4807 | char_u *xline; |
| 4808 | |
| 4809 | /* Handle long line and escaped characters. */ |
| 4810 | xline = viminfo_readstring(virp, 1, FALSE); |
| 4811 | |
| 4812 | /* don't read in if there are files on the command-line or if writing: */ |
| 4813 | if (xline != NULL && !writing && ARGCOUNT == 0 |
| 4814 | && find_viminfo_parameter('%') != NULL) |
| 4815 | { |
| 4816 | /* Format is: <fname> Tab <lnum> Tab <col>. |
| 4817 | * Watch out for a Tab in the file name, work from the end. */ |
| 4818 | lnum = 0; |
| 4819 | col = 0; |
| 4820 | tab = vim_strrchr(xline, '\t'); |
| 4821 | if (tab != NULL) |
| 4822 | { |
| 4823 | *tab++ = '\0'; |
| 4824 | col = atoi((char *)tab); |
| 4825 | tab = vim_strrchr(xline, '\t'); |
| 4826 | if (tab != NULL) |
| 4827 | { |
| 4828 | *tab++ = '\0'; |
| 4829 | lnum = atol((char *)tab); |
| 4830 | } |
| 4831 | } |
| 4832 | |
| 4833 | /* Expand "~/" in the file name at "line + 1" to a full path. |
| 4834 | * Then try shortening it by comparing with the current directory */ |
| 4835 | expand_env(xline, NameBuff, MAXPATHL); |
| 4836 | mch_dirname(IObuff, IOSIZE); |
| 4837 | sfname = shorten_fname(NameBuff, IObuff); |
| 4838 | if (sfname == NULL) |
| 4839 | sfname = NameBuff; |
| 4840 | |
| 4841 | buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED); |
| 4842 | if (buf != NULL) /* just in case... */ |
| 4843 | { |
| 4844 | buf->b_last_cursor.lnum = lnum; |
| 4845 | buf->b_last_cursor.col = col; |
| 4846 | buflist_setfpos(buf, curwin, lnum, col, FALSE); |
| 4847 | } |
| 4848 | } |
| 4849 | vim_free(xline); |
| 4850 | |
| 4851 | return viminfo_readline(virp); |
| 4852 | } |
| 4853 | |
| 4854 | void |
| 4855 | write_viminfo_bufferlist(fp) |
| 4856 | FILE *fp; |
| 4857 | { |
| 4858 | buf_T *buf; |
| 4859 | #ifdef FEAT_WINDOWS |
| 4860 | win_T *win; |
Bram Moolenaar | f740b29 | 2006-02-16 22:11:02 +0000 | [diff] [blame] | 4861 | tabpage_T *tp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4862 | #endif |
| 4863 | char_u *line; |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4864 | int max_buffers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4865 | |
| 4866 | if (find_viminfo_parameter('%') == NULL) |
| 4867 | return; |
| 4868 | |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4869 | /* Without a number -1 is returned: do all buffers. */ |
| 4870 | max_buffers = get_viminfo_parameter('%'); |
| 4871 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4872 | /* Allocate room for the file name, lnum and col. */ |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 4873 | line = alloc(MAXPATHL + 40); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4874 | if (line == NULL) |
| 4875 | return; |
| 4876 | |
| 4877 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | f740b29 | 2006-02-16 22:11:02 +0000 | [diff] [blame] | 4878 | FOR_ALL_TAB_WINDOWS(tp, win) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4879 | set_last_cursor(win); |
| 4880 | #else |
| 4881 | set_last_cursor(curwin); |
| 4882 | #endif |
| 4883 | |
| 4884 | fprintf(fp, _("\n# Buffer list:\n")); |
| 4885 | for (buf = firstbuf; buf != NULL ; buf = buf->b_next) |
| 4886 | { |
| 4887 | if (buf->b_fname == NULL |
| 4888 | || !buf->b_p_bl |
| 4889 | #ifdef FEAT_QUICKFIX |
| 4890 | || bt_quickfix(buf) |
| 4891 | #endif |
| 4892 | || removable(buf->b_ffname)) |
| 4893 | continue; |
| 4894 | |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 4895 | if (max_buffers-- == 0) |
| 4896 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4897 | putc('%', fp); |
| 4898 | home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE); |
| 4899 | sprintf((char *)line + STRLEN(line), "\t%ld\t%d", |
| 4900 | (long)buf->b_last_cursor.lnum, |
| 4901 | buf->b_last_cursor.col); |
| 4902 | viminfo_writestring(fp, line); |
| 4903 | } |
| 4904 | vim_free(line); |
| 4905 | } |
| 4906 | #endif |
| 4907 | |
| 4908 | |
| 4909 | /* |
| 4910 | * Return special buffer name. |
| 4911 | * Returns NULL when the buffer has a normal file name. |
| 4912 | */ |
| 4913 | char * |
| 4914 | buf_spname(buf) |
| 4915 | buf_T *buf; |
| 4916 | { |
| 4917 | #if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS) |
| 4918 | if (bt_quickfix(buf)) |
Bram Moolenaar | 28c258f | 2006-01-25 22:02:51 +0000 | [diff] [blame] | 4919 | { |
| 4920 | win_T *win; |
| 4921 | |
| 4922 | /* |
| 4923 | * For location list window, w_llist_ref points to the location list. |
| 4924 | * For quickfix window, w_llist_ref is NULL. |
| 4925 | */ |
| 4926 | FOR_ALL_WINDOWS(win) |
| 4927 | if (win->w_buffer == buf) |
| 4928 | break; |
| 4929 | if (win != NULL && win->w_llist_ref != NULL) |
| 4930 | return _("[Location List]"); |
| 4931 | else |
| 4932 | return _("[Error List]"); |
| 4933 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4934 | #endif |
| 4935 | #ifdef FEAT_QUICKFIX |
| 4936 | /* There is no _file_ when 'buftype' is "nofile", b_sfname |
| 4937 | * contains the name as specified by the user */ |
| 4938 | if (bt_nofile(buf)) |
| 4939 | { |
| 4940 | if (buf->b_sfname != NULL) |
| 4941 | return (char *)buf->b_sfname; |
| 4942 | return "[Scratch]"; |
| 4943 | } |
| 4944 | #endif |
| 4945 | if (buf->b_fname == NULL) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4946 | return _("[No Name]"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4947 | return NULL; |
| 4948 | } |
| 4949 | |
| 4950 | |
| 4951 | #if defined(FEAT_SIGNS) || defined(PROTO) |
| 4952 | /* |
| 4953 | * Insert the sign into the signlist. |
| 4954 | */ |
| 4955 | static void |
| 4956 | insert_sign(buf, prev, next, id, lnum, typenr) |
| 4957 | buf_T *buf; /* buffer to store sign in */ |
| 4958 | signlist_T *prev; /* previous sign entry */ |
| 4959 | signlist_T *next; /* next sign entry */ |
| 4960 | int id; /* sign ID */ |
| 4961 | linenr_T lnum; /* line number which gets the mark */ |
| 4962 | int typenr; /* typenr of sign we are adding */ |
| 4963 | { |
| 4964 | signlist_T *newsign; |
| 4965 | |
| 4966 | newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE); |
| 4967 | if (newsign != NULL) |
| 4968 | { |
| 4969 | newsign->id = id; |
| 4970 | newsign->lnum = lnum; |
| 4971 | newsign->typenr = typenr; |
| 4972 | newsign->next = next; |
| 4973 | #ifdef FEAT_NETBEANS_INTG |
| 4974 | newsign->prev = prev; |
| 4975 | if (next != NULL) |
| 4976 | next->prev = newsign; |
| 4977 | #endif |
| 4978 | |
| 4979 | if (prev == NULL) |
| 4980 | { |
| 4981 | /* When adding first sign need to redraw the windows to create the |
| 4982 | * column for signs. */ |
| 4983 | if (buf->b_signlist == NULL) |
| 4984 | { |
| 4985 | redraw_buf_later(buf, NOT_VALID); |
| 4986 | changed_cline_bef_curs(); |
| 4987 | } |
| 4988 | |
| 4989 | /* first sign in signlist */ |
| 4990 | buf->b_signlist = newsign; |
| 4991 | } |
| 4992 | else |
| 4993 | prev->next = newsign; |
| 4994 | } |
| 4995 | } |
| 4996 | |
| 4997 | /* |
| 4998 | * Add the sign into the signlist. Find the right spot to do it though. |
| 4999 | */ |
| 5000 | void |
| 5001 | buf_addsign(buf, id, lnum, typenr) |
| 5002 | buf_T *buf; /* buffer to store sign in */ |
| 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 *sign; /* a sign in the signlist */ |
| 5008 | signlist_T *prev; /* the previous sign */ |
| 5009 | |
| 5010 | prev = NULL; |
| 5011 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5012 | { |
| 5013 | if (lnum == sign->lnum && id == sign->id) |
| 5014 | { |
| 5015 | sign->typenr = typenr; |
| 5016 | return; |
| 5017 | } |
| 5018 | else if ( |
| 5019 | #ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */ |
| 5020 | id < 0 && |
| 5021 | #endif |
| 5022 | lnum < sign->lnum) |
| 5023 | { |
| 5024 | #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */ |
| 5025 | /* XXX - GRP: Is this because of sign slide problem? Or is it |
| 5026 | * really needed? Or is it because we allow multiple signs per |
| 5027 | * line? If so, should I add that feature to FEAT_SIGNS? |
| 5028 | */ |
| 5029 | while (prev != NULL && prev->lnum == lnum) |
| 5030 | prev = prev->prev; |
| 5031 | if (prev == NULL) |
| 5032 | sign = buf->b_signlist; |
| 5033 | else |
| 5034 | sign = prev->next; |
| 5035 | #endif |
| 5036 | insert_sign(buf, prev, sign, id, lnum, typenr); |
| 5037 | return; |
| 5038 | } |
| 5039 | prev = sign; |
| 5040 | } |
| 5041 | #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */ |
| 5042 | /* XXX - GRP: See previous comment */ |
| 5043 | while (prev != NULL && prev->lnum == lnum) |
| 5044 | prev = prev->prev; |
| 5045 | if (prev == NULL) |
| 5046 | sign = buf->b_signlist; |
| 5047 | else |
| 5048 | sign = prev->next; |
| 5049 | #endif |
| 5050 | insert_sign(buf, prev, sign, id, lnum, typenr); |
| 5051 | |
| 5052 | return; |
| 5053 | } |
| 5054 | |
| 5055 | int |
| 5056 | buf_change_sign_type(buf, markId, typenr) |
| 5057 | buf_T *buf; /* buffer to store sign in */ |
| 5058 | int markId; /* sign ID */ |
| 5059 | int typenr; /* typenr of sign we are adding */ |
| 5060 | { |
| 5061 | signlist_T *sign; /* a sign in the signlist */ |
| 5062 | |
| 5063 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5064 | { |
| 5065 | if (sign->id == markId) |
| 5066 | { |
| 5067 | sign->typenr = typenr; |
| 5068 | return sign->lnum; |
| 5069 | } |
| 5070 | } |
| 5071 | |
| 5072 | return 0; |
| 5073 | } |
| 5074 | |
| 5075 | int_u |
| 5076 | buf_getsigntype(buf, lnum, type) |
| 5077 | buf_T *buf; |
| 5078 | linenr_T lnum; |
| 5079 | int type; /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */ |
| 5080 | { |
| 5081 | signlist_T *sign; /* a sign in a b_signlist */ |
| 5082 | |
| 5083 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5084 | if (sign->lnum == lnum |
| 5085 | && (type == SIGN_ANY |
| 5086 | # ifdef FEAT_SIGN_ICONS |
| 5087 | || (type == SIGN_ICON |
| 5088 | && sign_get_image(sign->typenr) != NULL) |
| 5089 | # endif |
| 5090 | || (type == SIGN_TEXT |
| 5091 | && sign_get_text(sign->typenr) != NULL) |
| 5092 | || (type == SIGN_LINEHL |
| 5093 | && sign_get_attr(sign->typenr, TRUE) != 0))) |
| 5094 | return sign->typenr; |
| 5095 | return 0; |
| 5096 | } |
| 5097 | |
| 5098 | |
| 5099 | linenr_T |
| 5100 | buf_delsign(buf, id) |
| 5101 | buf_T *buf; /* buffer sign is stored in */ |
| 5102 | int id; /* sign id */ |
| 5103 | { |
| 5104 | signlist_T **lastp; /* pointer to pointer to current sign */ |
| 5105 | signlist_T *sign; /* a sign in a b_signlist */ |
| 5106 | signlist_T *next; /* the next sign in a b_signlist */ |
| 5107 | linenr_T lnum; /* line number whose sign was deleted */ |
| 5108 | |
| 5109 | lastp = &buf->b_signlist; |
| 5110 | lnum = 0; |
| 5111 | for (sign = buf->b_signlist; sign != NULL; sign = next) |
| 5112 | { |
| 5113 | next = sign->next; |
| 5114 | if (sign->id == id) |
| 5115 | { |
| 5116 | *lastp = next; |
| 5117 | #ifdef FEAT_NETBEANS_INTG |
| 5118 | if (next != NULL) |
| 5119 | next->prev = sign->prev; |
| 5120 | #endif |
| 5121 | lnum = sign->lnum; |
| 5122 | vim_free(sign); |
| 5123 | break; |
| 5124 | } |
| 5125 | else |
| 5126 | lastp = &sign->next; |
| 5127 | } |
| 5128 | |
| 5129 | /* When deleted the last sign need to redraw the windows to remove the |
| 5130 | * sign column. */ |
| 5131 | if (buf->b_signlist == NULL) |
| 5132 | { |
| 5133 | redraw_buf_later(buf, NOT_VALID); |
| 5134 | changed_cline_bef_curs(); |
| 5135 | } |
| 5136 | |
| 5137 | return lnum; |
| 5138 | } |
| 5139 | |
| 5140 | |
| 5141 | /* |
| 5142 | * Find the line number of the sign with the requested id. If the sign does |
| 5143 | * not exist, return 0 as the line number. This will still let the correct file |
| 5144 | * get loaded. |
| 5145 | */ |
| 5146 | int |
| 5147 | buf_findsign(buf, id) |
| 5148 | buf_T *buf; /* buffer to store sign in */ |
| 5149 | int id; /* sign ID */ |
| 5150 | { |
| 5151 | signlist_T *sign; /* a sign in the signlist */ |
| 5152 | |
| 5153 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5154 | if (sign->id == id) |
| 5155 | return sign->lnum; |
| 5156 | |
| 5157 | return 0; |
| 5158 | } |
| 5159 | |
| 5160 | int |
| 5161 | buf_findsign_id(buf, lnum) |
| 5162 | buf_T *buf; /* buffer whose sign we are searching for */ |
| 5163 | linenr_T lnum; /* line number of sign */ |
| 5164 | { |
| 5165 | signlist_T *sign; /* a sign in the signlist */ |
| 5166 | |
| 5167 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5168 | if (sign->lnum == lnum) |
| 5169 | return sign->id; |
| 5170 | |
| 5171 | return 0; |
| 5172 | } |
| 5173 | |
| 5174 | |
| 5175 | # if defined(FEAT_NETBEANS_INTG) || defined(PROTO) |
| 5176 | /* see if a given type of sign exists on a specific line */ |
| 5177 | int |
| 5178 | buf_findsigntype_id(buf, lnum, typenr) |
| 5179 | buf_T *buf; /* buffer whose sign we are searching for */ |
| 5180 | linenr_T lnum; /* line number of sign */ |
| 5181 | int typenr; /* sign type number */ |
| 5182 | { |
| 5183 | signlist_T *sign; /* a sign in the signlist */ |
| 5184 | |
| 5185 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5186 | if (sign->lnum == lnum && sign->typenr == typenr) |
| 5187 | return sign->id; |
| 5188 | |
| 5189 | return 0; |
| 5190 | } |
| 5191 | |
| 5192 | |
| 5193 | # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 5194 | /* return the number of icons on the given line */ |
| 5195 | int |
| 5196 | buf_signcount(buf, lnum) |
| 5197 | buf_T *buf; |
| 5198 | linenr_T lnum; |
| 5199 | { |
| 5200 | signlist_T *sign; /* a sign in the signlist */ |
| 5201 | int count = 0; |
| 5202 | |
| 5203 | for (sign = buf->b_signlist; sign != NULL; sign = sign->next) |
| 5204 | if (sign->lnum == lnum) |
| 5205 | if (sign_get_image(sign->typenr) != NULL) |
| 5206 | count++; |
| 5207 | |
| 5208 | return count; |
| 5209 | } |
| 5210 | # endif /* FEAT_SIGN_ICONS */ |
| 5211 | # endif /* FEAT_NETBEANS_INTG */ |
| 5212 | |
| 5213 | |
| 5214 | /* |
| 5215 | * Delete signs in buffer "buf". |
| 5216 | */ |
| 5217 | static void |
| 5218 | buf_delete_signs(buf) |
| 5219 | buf_T *buf; |
| 5220 | { |
| 5221 | signlist_T *next; |
| 5222 | |
| 5223 | while (buf->b_signlist != NULL) |
| 5224 | { |
| 5225 | next = buf->b_signlist->next; |
| 5226 | vim_free(buf->b_signlist); |
| 5227 | buf->b_signlist = next; |
| 5228 | } |
| 5229 | } |
| 5230 | |
| 5231 | /* |
| 5232 | * Delete all signs in all buffers. |
| 5233 | */ |
| 5234 | void |
| 5235 | buf_delete_all_signs() |
| 5236 | { |
| 5237 | buf_T *buf; /* buffer we are checking for signs */ |
| 5238 | |
| 5239 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 5240 | if (buf->b_signlist != NULL) |
| 5241 | { |
| 5242 | /* Need to redraw the windows to remove the sign column. */ |
| 5243 | redraw_buf_later(buf, NOT_VALID); |
| 5244 | buf_delete_signs(buf); |
| 5245 | } |
| 5246 | } |
| 5247 | |
| 5248 | /* |
| 5249 | * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers. |
| 5250 | */ |
| 5251 | void |
| 5252 | sign_list_placed(rbuf) |
| 5253 | buf_T *rbuf; |
| 5254 | { |
| 5255 | buf_T *buf; |
| 5256 | signlist_T *p; |
| 5257 | char lbuf[BUFSIZ]; |
| 5258 | |
| 5259 | MSG_PUTS_TITLE(_("\n--- Signs ---")); |
| 5260 | msg_putchar('\n'); |
| 5261 | if (rbuf == NULL) |
| 5262 | buf = firstbuf; |
| 5263 | else |
| 5264 | buf = rbuf; |
| 5265 | while (buf != NULL) |
| 5266 | { |
| 5267 | if (buf->b_signlist != NULL) |
| 5268 | { |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 5269 | vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5270 | MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D)); |
| 5271 | msg_putchar('\n'); |
| 5272 | } |
| 5273 | for (p = buf->b_signlist; p != NULL; p = p->next) |
| 5274 | { |
Bram Moolenaar | 9c13b35 | 2005-05-19 20:53:52 +0000 | [diff] [blame] | 5275 | vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5276 | (long)p->lnum, p->id, sign_typenr2name(p->typenr)); |
| 5277 | MSG_PUTS(lbuf); |
| 5278 | msg_putchar('\n'); |
| 5279 | } |
| 5280 | if (rbuf != NULL) |
| 5281 | break; |
| 5282 | buf = buf->b_next; |
| 5283 | } |
| 5284 | } |
| 5285 | |
| 5286 | /* |
| 5287 | * Adjust a placed sign for inserted/deleted lines. |
| 5288 | */ |
| 5289 | void |
| 5290 | sign_mark_adjust(line1, line2, amount, amount_after) |
| 5291 | linenr_T line1; |
| 5292 | linenr_T line2; |
| 5293 | long amount; |
| 5294 | long amount_after; |
| 5295 | { |
| 5296 | signlist_T *sign; /* a sign in a b_signlist */ |
| 5297 | |
| 5298 | for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next) |
| 5299 | { |
| 5300 | if (sign->lnum >= line1 && sign->lnum <= line2) |
| 5301 | { |
| 5302 | if (amount == MAXLNUM) |
| 5303 | sign->lnum = line1; |
| 5304 | else |
| 5305 | sign->lnum += amount; |
| 5306 | } |
| 5307 | else if (sign->lnum > line2) |
| 5308 | sign->lnum += amount_after; |
| 5309 | } |
| 5310 | } |
| 5311 | #endif /* FEAT_SIGNS */ |
| 5312 | |
| 5313 | /* |
| 5314 | * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. |
| 5315 | */ |
| 5316 | void |
| 5317 | set_buflisted(on) |
| 5318 | int on; |
| 5319 | { |
| 5320 | if (on != curbuf->b_p_bl) |
| 5321 | { |
| 5322 | curbuf->b_p_bl = on; |
| 5323 | #ifdef FEAT_AUTOCMD |
| 5324 | if (on) |
| 5325 | apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); |
| 5326 | else |
| 5327 | apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); |
| 5328 | #endif |
| 5329 | } |
| 5330 | } |
| 5331 | |
| 5332 | /* |
| 5333 | * Read the file for "buf" again and check if the contents changed. |
| 5334 | * Return TRUE if it changed or this could not be checked. |
| 5335 | */ |
| 5336 | int |
| 5337 | buf_contents_changed(buf) |
| 5338 | buf_T *buf; |
| 5339 | { |
| 5340 | buf_T *newbuf; |
| 5341 | int differ = TRUE; |
| 5342 | linenr_T lnum; |
| 5343 | #ifdef FEAT_AUTOCMD |
| 5344 | aco_save_T aco; |
| 5345 | #else |
| 5346 | buf_T *old_curbuf = curbuf; |
| 5347 | #endif |
| 5348 | exarg_T ea; |
| 5349 | |
| 5350 | /* Allocate a buffer without putting it in the buffer list. */ |
| 5351 | newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); |
| 5352 | if (newbuf == NULL) |
| 5353 | return TRUE; |
| 5354 | |
| 5355 | /* Force the 'fileencoding' and 'fileformat' to be equal. */ |
| 5356 | if (prep_exarg(&ea, buf) == FAIL) |
| 5357 | { |
| 5358 | wipe_buffer(newbuf, FALSE); |
| 5359 | return TRUE; |
| 5360 | } |
| 5361 | |
| 5362 | #ifdef FEAT_AUTOCMD |
| 5363 | /* set curwin/curbuf to buf and save a few things */ |
| 5364 | aucmd_prepbuf(&aco, newbuf); |
| 5365 | #else |
| 5366 | curbuf = newbuf; |
| 5367 | curwin->w_buffer = newbuf; |
| 5368 | #endif |
| 5369 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 5370 | if (ml_open(curbuf) == OK |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5371 | && readfile(buf->b_ffname, buf->b_fname, |
| 5372 | (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, |
| 5373 | &ea, READ_NEW | READ_DUMMY) == OK) |
| 5374 | { |
| 5375 | /* compare the two files line by line */ |
| 5376 | if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) |
| 5377 | { |
| 5378 | differ = FALSE; |
| 5379 | for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) |
| 5380 | if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) |
| 5381 | { |
| 5382 | differ = TRUE; |
| 5383 | break; |
| 5384 | } |
| 5385 | } |
| 5386 | } |
| 5387 | vim_free(ea.cmd); |
| 5388 | |
| 5389 | #ifdef FEAT_AUTOCMD |
| 5390 | /* restore curwin/curbuf and a few other things */ |
| 5391 | aucmd_restbuf(&aco); |
| 5392 | #else |
| 5393 | curbuf = old_curbuf; |
| 5394 | curwin->w_buffer = old_curbuf; |
| 5395 | #endif |
| 5396 | |
| 5397 | if (curbuf != newbuf) /* safety check */ |
| 5398 | wipe_buffer(newbuf, FALSE); |
| 5399 | |
| 5400 | return differ; |
| 5401 | } |
| 5402 | |
| 5403 | /* |
| 5404 | * Wipe out a buffer and decrement the last buffer number if it was used for |
| 5405 | * this buffer. Call this to wipe out a temp buffer that does not contain any |
| 5406 | * marks. |
| 5407 | */ |
| 5408 | /*ARGSUSED*/ |
| 5409 | void |
| 5410 | wipe_buffer(buf, aucmd) |
| 5411 | buf_T *buf; |
| 5412 | int aucmd; /* When TRUE trigger autocommands. */ |
| 5413 | { |
| 5414 | if (buf->b_fnum == top_file_num - 1) |
| 5415 | --top_file_num; |
| 5416 | |
| 5417 | #ifdef FEAT_AUTOCMD |
| 5418 | if (!aucmd) /* Don't trigger BufDelete autocommands here. */ |
| 5419 | ++autocmd_block; |
| 5420 | #endif |
| 5421 | close_buffer(NULL, buf, DOBUF_WIPE); |
| 5422 | #ifdef FEAT_AUTOCMD |
| 5423 | if (!aucmd) |
| 5424 | --autocmd_block; |
| 5425 | #endif |
| 5426 | } |