1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
11 * buffer.c: functions for dealing with the buffer structure
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
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.
25 * The current implementation remembers all file names ever used.
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
));
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
, int skip_diff_buffer
));
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
));
42 static int otherfile_buf
__ARGS((buf_T
*buf
, char_u
*ffname
));
45 static int ti_change
__ARGS((char_u
*str
, char_u
**last
));
47 static int append_arg_number
__ARGS((win_T
*wp
, char_u
*buf
, int buflen
, int add_file
));
48 static void free_buffer
__ARGS((buf_T
*));
49 static void free_buffer_stuff
__ARGS((buf_T
*buf
, int free_options
));
50 static void clear_wininfo
__ARGS((buf_T
*buf
));
55 # define dev_T unsigned
58 #if defined(FEAT_SIGNS)
59 static void insert_sign
__ARGS((buf_T
*buf
, signlist_T
*prev
, signlist_T
*next
, int id
, linenr_T lnum
, int typenr
));
60 static void buf_delete_signs
__ARGS((buf_T
*buf
));
64 * Open current buffer, that is: open the memfile and read the file into memory
65 * return FAIL for failure, OK otherwise
68 open_buffer(read_stdin
, eap
)
69 int read_stdin
; /* read file from stdin */
70 exarg_T
*eap
; /* for forced 'ff' and 'fenc' or NULL */
78 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
79 * When re-entering the same buffer, it should not change, because the
80 * user may have reset the flag by hand.
82 if (readonlymode
&& curbuf
->b_ffname
!= NULL
83 && (curbuf
->b_flags
& BF_NEVERLOADED
))
84 curbuf
->b_p_ro
= TRUE
;
86 if (ml_open(curbuf
) == FAIL
)
89 * There MUST be a memfile, otherwise we can't do anything
90 * If we can't create one for the current buffer, take another buffer
92 close_buffer(NULL
, curbuf
, 0);
93 for (curbuf
= firstbuf
; curbuf
!= NULL
; curbuf
= curbuf
->b_next
)
94 if (curbuf
->b_ml
.ml_mfp
!= NULL
)
97 * if there is no memfile at all, exit
98 * This is OK, since there are no changes to lose.
102 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
105 EMSG(_("E83: Cannot allocate buffer, using other one..."));
106 enter_buffer(curbuf
);
111 /* The autocommands in readfile() may change the buffer, but only AFTER
112 * reading the file. */
114 modified_was_set
= FALSE
;
117 /* mark cursor position as being invalid */
118 changed_line_abv_curs();
120 if (curbuf
->b_ffname
!= NULL
121 #ifdef FEAT_NETBEANS_INTG
126 #ifdef FEAT_NETBEANS_INTG
127 int oldFire
= netbeansFireChanges
;
129 netbeansFireChanges
= 0;
131 retval
= readfile(curbuf
->b_ffname
, curbuf
->b_fname
,
132 (linenr_T
)0, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, READ_NEW
);
133 #ifdef FEAT_NETBEANS_INTG
134 netbeansFireChanges
= oldFire
;
136 /* Help buffer is filtered. */
142 int save_bin
= curbuf
->b_p_bin
;
146 * First read the text in binary mode into the buffer.
147 * Then read from that same buffer and append at the end. This makes
148 * it possible to retry when 'fileformat' or 'fileencoding' was
151 curbuf
->b_p_bin
= TRUE
;
152 retval
= readfile(NULL
, NULL
, (linenr_T
)0,
153 (linenr_T
)0, (linenr_T
)MAXLNUM
, NULL
, READ_NEW
+ READ_STDIN
);
154 curbuf
->b_p_bin
= save_bin
;
157 line_count
= curbuf
->b_ml
.ml_line_count
;
158 retval
= readfile(NULL
, NULL
, (linenr_T
)line_count
,
159 (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, READ_BUFFER
);
162 /* Delete the binary lines. */
163 while (--line_count
>= 0)
164 ml_delete((linenr_T
)1, FALSE
);
168 /* Delete the converted lines. */
169 while (curbuf
->b_ml
.ml_line_count
> line_count
)
170 ml_delete(line_count
, FALSE
);
172 /* Put the cursor on the first line. */
173 curwin
->w_cursor
.lnum
= 1;
174 curwin
->w_cursor
.col
= 0;
176 /* Set or reset 'modified' before executing autocommands, so that
177 * it can be changed there. */
178 if (!readonlymode
&& !bufempty())
180 else if (retval
!= FAIL
)
181 unchanged(curbuf
, FALSE
);
184 apply_autocmds_retval(EVENT_STDINREADPOST
, NULL
, NULL
, FALSE
,
187 apply_autocmds(EVENT_STDINREADPOST
, NULL
, NULL
, FALSE
, curbuf
);
193 /* if first time loading this buffer, init b_chartab[] */
194 if (curbuf
->b_flags
& BF_NEVERLOADED
)
195 (void)buf_init_chartab(curbuf
, FALSE
);
198 * Set/reset the Changed flag first, autocmds may change the buffer.
199 * Apply the automatic commands, before processing the modelines.
200 * So the modelines have priority over auto commands.
202 /* When reading stdin, the buffer contents always needs writing, so set
203 * the changed flag. Unless in readonly mode: "ls | gview -".
204 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
205 if ((got_int
&& vim_strchr(p_cpo
, CPO_INTMOD
) != NULL
)
207 || modified_was_set
/* ":set modified" used in autocmd */
209 || (aborting() && vim_strchr(p_cpo
, CPO_INTMOD
) != NULL
)
214 else if (retval
!= FAIL
&& !read_stdin
)
215 unchanged(curbuf
, FALSE
);
216 save_file_ff(curbuf
); /* keep this fileformat */
218 /* require "!" to overwrite the file, because it wasn't read completely */
224 curbuf
->b_flags
|= BF_READERR
;
227 /* Need to update automatic folding. Do this before the autocommands,
228 * they may use the fold info. */
229 foldUpdateAll(curwin
);
233 /* need to set w_topline, unless some autocommand already did that. */
234 if (!(curwin
->w_valid
& VALID_TOPLINE
))
236 curwin
->w_topline
= 1;
238 curwin
->w_topfill
= 0;
242 apply_autocmds_retval(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
, &retval
);
244 apply_autocmds(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
);
252 * The autocommands may have changed the current buffer. Apply the
253 * modelines to the correct buffer, if it still exists and is loaded.
255 if (buf_valid(old_curbuf
) && old_curbuf
->b_ml
.ml_mfp
!= NULL
)
259 /* Go to the buffer that was opened. */
260 aucmd_prepbuf(&aco
, old_curbuf
);
263 curbuf
->b_flags
&= ~(BF_CHECK_RO
| BF_NEVERLOADED
);
267 apply_autocmds_retval(EVENT_BUFWINENTER
, NULL
, NULL
, FALSE
, curbuf
,
270 apply_autocmds(EVENT_BUFWINENTER
, NULL
, NULL
, FALSE
, curbuf
);
273 /* restore curwin/curbuf and a few other things */
283 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
291 for (bp
= firstbuf
; bp
!= NULL
; bp
= bp
->b_next
)
298 * Close the link to a buffer.
299 * "action" is used when there is no longer a window for the buffer.
301 * 0 buffer becomes hidden
302 * DOBUF_UNLOAD buffer is unloaded
303 * DOBUF_DELETE buffer is unloaded and removed from buffer list
304 * DOBUF_WIPE buffer is unloaded and really deleted
305 * When doing all but the first one on the current buffer, the caller should
306 * get a new buffer very soon!
308 * The 'bufhidden' option can force freeing and deleting.
311 close_buffer(win
, buf
, action
)
312 win_T
*win
; /* if not NULL, set b_last_cursor */
320 int unload_buf
= (action
!= 0);
321 int del_buf
= (action
== DOBUF_DEL
|| action
== DOBUF_WIPE
);
322 int wipe_buf
= (action
== DOBUF_WIPE
);
326 * Force unloading or deleting when 'bufhidden' says so.
327 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
328 * "hide" (otherwise we could never free or delete a buffer).
330 if (buf
->b_p_bh
[0] == 'd') /* 'bufhidden' == "delete" */
335 else if (buf
->b_p_bh
[0] == 'w') /* 'bufhidden' == "wipe" */
341 else if (buf
->b_p_bh
[0] == 'u') /* 'bufhidden' == "unload" */
347 /* Set b_last_cursor when closing the last window for the buffer.
348 * Remember the last cursor position and window options of the buffer.
349 * This used to be only for the current window, but then options like
350 * 'foldmethod' may be lost with a ":only" command. */
351 if (buf
->b_nwindows
== 1)
352 set_last_cursor(win
);
353 buflist_setfpos(buf
, win
,
354 win
->w_cursor
.lnum
== 1 ? 0 : win
->w_cursor
.lnum
,
355 win
->w_cursor
.col
, TRUE
);
359 /* When the buffer is no longer in a window, trigger BufWinLeave */
360 if (buf
->b_nwindows
== 1)
362 apply_autocmds(EVENT_BUFWINLEAVE
, buf
->b_fname
, buf
->b_fname
,
364 if (!buf_valid(buf
)) /* autocommands may delete the buffer */
367 /* When the buffer becomes hidden, but is not unloaded, trigger
371 apply_autocmds(EVENT_BUFHIDDEN
, buf
->b_fname
, buf
->b_fname
,
373 if (!buf_valid(buf
)) /* autocmds may delete the buffer */
377 if (aborting()) /* autocmds may abort script processing */
381 nwindows
= buf
->b_nwindows
;
384 /* decrease the link count from windows (unless not in any window) */
385 if (buf
->b_nwindows
> 0)
388 /* Return when a window is displaying the buffer or when it's not
390 if (buf
->b_nwindows
> 0 || !unload_buf
)
392 #if 0 /* why was this here? */
394 u_sync(); /* sync undo before going to another buffer */
399 /* Always remove the buffer when there is no file name. */
400 if (buf
->b_ffname
== NULL
)
404 * Free all things allocated for this buffer.
405 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
408 /* Remember if we are closing the current buffer. Restore the number of
409 * windows, so that autocommands in buf_freeall() don't get confused. */
410 is_curbuf
= (buf
== curbuf
);
411 buf
->b_nwindows
= nwindows
;
414 buf_freeall(buf
, del_buf
, wipe_buf
);
417 /* Autocommands may have deleted the buffer. */
421 if (aborting()) /* autocmds may abort script processing */
425 /* Autocommands may have opened or closed windows for this buffer.
426 * Decrement the count for the close we do here. */
427 if (buf
->b_nwindows
> 0)
431 * It's possible that autocommands change curbuf to the one being deleted.
432 * This might cause the previous curbuf to be deleted unexpectedly. But
433 * in some cases it's OK to delete the curbuf, because a new one is
434 * obtained anyway. Therefore only return if curbuf changed to the
437 if (buf
== curbuf
&& !is_curbuf
)
441 #ifdef FEAT_ODB_EDITOR
442 odb_buffer_close(buf
);
445 /* Change directories when the 'acd' option is set. */
449 * Remove the buffer from the list.
453 #ifdef FEAT_SUN_WORKSHOP
454 if (usingSunWorkShop
)
455 workshop_file_closed_lineno((char *)buf
->b_ffname
,
456 (int)buf
->b_last_cursor
.lnum
);
458 vim_free(buf
->b_ffname
);
459 vim_free(buf
->b_sfname
);
460 if (buf
->b_prev
== NULL
)
461 firstbuf
= buf
->b_next
;
463 buf
->b_prev
->b_next
= buf
->b_next
;
464 if (buf
->b_next
== NULL
)
465 lastbuf
= buf
->b_prev
;
467 buf
->b_next
->b_prev
= buf
->b_prev
;
474 /* Free all internal variables and reset option values, to make
475 * ":bdel" compatible with Vim 5.7. */
476 free_buffer_stuff(buf
, TRUE
);
478 /* Make it look like a new buffer. */
479 buf
->b_flags
= BF_CHECK_RO
| BF_NEVERLOADED
;
481 /* Init the options when loaded again. */
482 buf
->b_p_initialized
= FALSE
;
491 * Make buffer not contain a file.
497 buf
->b_ml
.ml_line_count
= 1;
498 unchanged(buf
, TRUE
);
500 buf
->b_shortname
= FALSE
;
503 buf
->b_start_eol
= TRUE
;
505 buf
->b_p_bomb
= FALSE
;
506 buf
->b_start_bomb
= FALSE
;
508 buf
->b_ml
.ml_mfp
= NULL
;
509 buf
->b_ml
.ml_flags
= ML_EMPTY
; /* empty buffer */
510 #ifdef FEAT_NETBEANS_INTG
511 netbeans_deleted_all_lines(buf
);
516 * buf_freeall() - free all things allocated for a buffer that are related to
520 buf_freeall(buf
, del_buf
, wipe_buf
)
522 int del_buf UNUSED
; /* buffer is going to be deleted */
523 int wipe_buf UNUSED
; /* buffer is going to be wiped out */
526 int is_curbuf
= (buf
== curbuf
);
528 apply_autocmds(EVENT_BUFUNLOAD
, buf
->b_fname
, buf
->b_fname
, FALSE
, buf
);
529 if (!buf_valid(buf
)) /* autocommands may delete the buffer */
531 if (del_buf
&& buf
->b_p_bl
)
533 apply_autocmds(EVENT_BUFDELETE
, buf
->b_fname
, buf
->b_fname
, FALSE
, buf
);
534 if (!buf_valid(buf
)) /* autocommands may delete the buffer */
539 apply_autocmds(EVENT_BUFWIPEOUT
, buf
->b_fname
, buf
->b_fname
,
541 if (!buf_valid(buf
)) /* autocommands may delete the buffer */
545 if (aborting()) /* autocmds may abort script processing */
550 * It's possible that autocommands change curbuf to the one being deleted.
551 * This might cause curbuf to be deleted unexpectedly. But in some cases
552 * it's OK to delete the curbuf, because a new one is obtained anyway.
553 * Therefore only return if curbuf changed to the deleted buffer.
555 if (buf
== curbuf
&& !is_curbuf
)
559 diff_buf_delete(buf
); /* Can't use 'diff' for unloaded buffer. */
563 /* No folds in an empty buffer. */
569 FOR_ALL_TAB_WINDOWS(tp
, win
)
570 if (win
->w_buffer
== buf
)
574 if (curwin
->w_buffer
== buf
)
575 clearFolding(curwin
);
580 tcl_buffer_free(buf
);
582 u_blockfree(buf
); /* free the memory allocated for undo */
583 ml_close(buf
, TRUE
); /* close and delete the memline/memfile */
584 buf
->b_ml
.ml_line_count
= 0; /* no lines in buffer */
585 u_clearall(buf
); /* reset all undo information */
587 syntax_clear(buf
); /* reset syntax info */
589 buf
->b_flags
&= ~BF_READERR
; /* a read error is no longer relevant */
593 * Free a buffer structure and the things it contains related to the buffer
594 * itself (not the file, that must have been done already).
600 free_buffer_stuff(buf
, TRUE
);
602 mzscheme_buffer_free(buf
);
608 python_buffer_free(buf
);
611 ruby_buffer_free(buf
);
614 aubuflocal_remove(buf
);
620 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
623 free_buffer_stuff(buf
, free_options
)
625 int free_options
; /* free options as well */
629 clear_wininfo(buf
); /* including window-local options */
630 free_buf_options(buf
, TRUE
);
633 vars_clear(&buf
->b_vars
.dv_hashtab
); /* free all internal variables */
634 hash_init(&buf
->b_vars
.dv_hashtab
);
637 uc_clear(&buf
->b_ucmds
); /* clear local user commands */
640 buf_delete_signs(buf
); /* delete any signs */
642 #ifdef FEAT_NETBEANS_INTG
644 netbeans_file_killed(buf
);
647 map_clear_int(buf
, MAP_ALL_MODES
, TRUE
, FALSE
); /* clear local mappings */
648 map_clear_int(buf
, MAP_ALL_MODES
, TRUE
, TRUE
); /* clear local abbrevs */
651 vim_free(buf
->b_start_fenc
);
652 buf
->b_start_fenc
= NULL
;
655 ga_clear(&buf
->b_langp
);
660 * Free the b_wininfo list for buffer "buf".
668 while (buf
->b_wininfo
!= NULL
)
670 wip
= buf
->b_wininfo
;
671 buf
->b_wininfo
= wip
->wi_next
;
674 clear_winopt(&wip
->wi_opt
);
676 deleteFoldRecurse(&wip
->wi_folds
);
683 #if defined(FEAT_LISTCMDS) || defined(PROTO)
685 * Go to another buffer. Handles the result of the ATTENTION dialog.
688 goto_buffer(eap
, start
, dir
, count
)
694 # if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
695 buf_T
*old_curbuf
= curbuf
;
697 swap_exists_action
= SEA_DIALOG
;
699 (void)do_buffer(*eap
->cmd
== 's' ? DOBUF_SPLIT
: DOBUF_GOTO
,
700 start
, dir
, count
, eap
->forceit
);
701 # if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
702 if (swap_exists_action
== SEA_QUIT
&& *eap
->cmd
== 's')
704 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
707 /* Reset the error/interrupt/exception state here so that
708 * aborting() returns FALSE when closing a window. */
712 /* Quitting means closing the split window, nothing else. */
713 win_close(curwin
, TRUE
);
714 swap_exists_action
= SEA_NONE
;
715 swap_exists_did_quit
= TRUE
;
717 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
718 /* Restore the error/interrupt/exception state if not discarded by a
719 * new aborting error, interrupt, or uncaught exception. */
724 handle_swap_exists(old_curbuf
);
729 #if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
731 * Handle the situation of swap_exists_action being set.
732 * It is allowed for "old_curbuf" to be NULL or invalid.
735 handle_swap_exists(old_curbuf
)
738 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
742 if (swap_exists_action
== SEA_QUIT
)
744 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
745 /* Reset the error/interrupt/exception state here so that
746 * aborting() returns FALSE when closing a buffer. */
750 /* User selected Quit at ATTENTION prompt. Go back to previous
751 * buffer. If that buffer is gone or the same as the current one,
752 * open a new, empty buffer. */
753 swap_exists_action
= SEA_NONE
; /* don't want it again */
754 swap_exists_did_quit
= TRUE
;
755 close_buffer(curwin
, curbuf
, DOBUF_UNLOAD
);
756 if (!buf_valid(old_curbuf
) || old_curbuf
== curbuf
)
757 old_curbuf
= buflist_new(NULL
, NULL
, 1L, BLN_CURBUF
| BLN_LISTED
);
758 if (old_curbuf
!= NULL
)
759 enter_buffer(old_curbuf
);
760 /* If "old_curbuf" is NULL we are in big trouble here... */
762 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
763 /* Restore the error/interrupt/exception state if not discarded by a
764 * new aborting error, interrupt, or uncaught exception. */
768 else if (swap_exists_action
== SEA_RECOVER
)
770 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
771 /* Reset the error/interrupt/exception state here so that
772 * aborting() returns FALSE when closing a buffer. */
776 /* User selected Recover at ATTENTION prompt. */
779 MSG_PUTS("\n"); /* don't overwrite the last message */
780 cmdline_row
= msg_row
;
783 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
784 /* Restore the error/interrupt/exception state if not discarded by a
785 * new aborting error, interrupt, or uncaught exception. */
789 swap_exists_action
= SEA_NONE
;
793 #if defined(FEAT_LISTCMDS) || defined(PROTO)
795 * do_bufdel() - delete or unload buffer(s)
797 * addr_count == 0: ":bdel" - delete current buffer
798 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
799 * buffer "end_bnr", then any other arguments.
800 * addr_count == 2: ":N,N bdel" - delete buffers in range
802 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
803 * DOBUF_DEL (":bdel")
805 * Returns error message or NULL
808 do_bufdel(command
, arg
, addr_count
, start_bnr
, end_bnr
, forceit
)
810 char_u
*arg
; /* pointer to extra arguments */
812 int start_bnr
; /* first buffer number in a range */
813 int end_bnr
; /* buffer nr or last buffer nr in a range */
816 int do_current
= 0; /* delete current buffer? */
817 int deleted
= 0; /* number of buffers deleted */
818 char_u
*errormsg
= NULL
; /* return value */
819 int bnr
; /* buffer number */
824 (void)do_buffer(command
, DOBUF_CURRENT
, FORWARD
, 0, forceit
);
830 if (*arg
) /* both range and argument is not allowed */
831 return (char_u
*)_(e_trailing
);
834 else /* addr_count == 1 */
837 for ( ;!got_int
; ui_breakcheck())
840 * delete the current buffer last, otherwise when the
841 * current buffer is deleted, the next buffer becomes
842 * the current one and will be loaded, which may then
843 * also be deleted, etc.
845 if (bnr
== curbuf
->b_fnum
)
847 else if (do_buffer(command
, DOBUF_FIRST
, FORWARD
, (int)bnr
,
852 * find next buffer number to delete/unload
859 else /* addr_count == 1 */
861 arg
= skipwhite(arg
);
864 if (!VIM_ISDIGIT(*arg
))
866 p
= skiptowhite_esc(arg
);
867 bnr
= buflist_findpat(arg
, p
, command
== DOBUF_WIPE
, FALSE
);
868 if (bnr
< 0) /* failed */
873 bnr
= getdigits(&arg
);
876 if (!got_int
&& do_current
&& do_buffer(command
, DOBUF_FIRST
,
877 FORWARD
, do_current
, forceit
) == OK
)
882 if (command
== DOBUF_UNLOAD
)
883 STRCPY(IObuff
, _("E515: No buffers were unloaded"));
884 else if (command
== DOBUF_DEL
)
885 STRCPY(IObuff
, _("E516: No buffers were deleted"));
887 STRCPY(IObuff
, _("E517: No buffers were wiped out"));
890 else if (deleted
>= p_report
)
892 if (command
== DOBUF_UNLOAD
)
895 MSG(_("1 buffer unloaded"));
897 smsg((char_u
*)_("%d buffers unloaded"), deleted
);
899 else if (command
== DOBUF_DEL
)
902 MSG(_("1 buffer deleted"));
904 smsg((char_u
*)_("%d buffers deleted"), deleted
);
909 MSG(_("1 buffer wiped out"));
911 smsg((char_u
*)_("%d buffers wiped out"), deleted
);
921 * Implementation of the commands for the buffer list.
923 * action == DOBUF_GOTO go to specified buffer
924 * action == DOBUF_SPLIT split window and go to specified buffer
925 * action == DOBUF_UNLOAD unload specified buffer(s)
926 * action == DOBUF_DEL delete specified buffer(s) from buffer list
927 * action == DOBUF_WIPE delete specified buffer(s) really
929 * start == DOBUF_CURRENT go to "count" buffer from current buffer
930 * start == DOBUF_FIRST go to "count" buffer from first buffer
931 * start == DOBUF_LAST go to "count" buffer from last buffer
932 * start == DOBUF_MOD go to "count" modified buffer from current buffer
937 do_buffer(action
, start
, dir
, count
, forceit
)
940 int dir
; /* FORWARD or BACKWARD */
941 int count
; /* buffer number or number of buffers */
942 int forceit
; /* TRUE for :...! */
946 int unload
= (action
== DOBUF_UNLOAD
|| action
== DOBUF_DEL
947 || action
== DOBUF_WIPE
);
951 case DOBUF_FIRST
: buf
= firstbuf
; break;
952 case DOBUF_LAST
: buf
= lastbuf
; break;
953 default: buf
= curbuf
; break;
955 if (start
== DOBUF_MOD
) /* find next modified buffer */
965 while (buf
!= curbuf
&& !bufIsChanged(buf
));
967 if (!bufIsChanged(buf
))
969 EMSG(_("E84: No modified buffer found"));
973 else if (start
== DOBUF_FIRST
&& count
) /* find specified buffer number */
975 while (buf
!= NULL
&& buf
->b_fnum
!= count
)
981 while (count
> 0 || (!unload
&& !buf
->b_p_bl
&& bp
!= buf
))
983 /* remember the buffer where we start, we come back there when all
984 * buffers are unlisted. */
999 /* don't count unlisted buffers */
1000 if (unload
|| buf
->b_p_bl
)
1003 bp
= NULL
; /* use this buffer as new starting point */
1007 /* back where we started, didn't find anything. */
1008 EMSG(_("E85: There is no listed buffer"));
1014 if (buf
== NULL
) /* could not find it */
1016 if (start
== DOBUF_FIRST
)
1018 /* don't warn when deleting */
1020 EMSGN(_("E86: Buffer %ld does not exist"), count
);
1022 else if (dir
== FORWARD
)
1023 EMSG(_("E87: Cannot go beyond last buffer"));
1025 EMSG(_("E88: Cannot go before first buffer"));
1030 need_mouse_correct
= TRUE
;
1033 #ifdef FEAT_LISTCMDS
1035 * delete buffer buf from memory and/or the list
1042 /* When unloading or deleting a buffer that's already unloaded and
1043 * unlisted: fail silently. */
1044 if (action
!= DOBUF_WIPE
&& buf
->b_ml
.ml_mfp
== NULL
&& !buf
->b_p_bl
)
1047 if (!forceit
&& bufIsChanged(buf
))
1049 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1050 if ((p_confirm
|| cmdmod
.confirm
) && p_write
)
1052 dialog_changed(buf
, FALSE
);
1053 # ifdef FEAT_AUTOCMD
1054 if (!buf_valid(buf
))
1055 /* Autocommand deleted buffer, oops! It's not changed
1059 /* If it's still changed fail silently, the dialog already
1060 * mentioned why it fails. */
1061 if (bufIsChanged(buf
))
1067 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1074 * If deleting the last (listed) buffer, make it empty.
1075 * The last (listed) buffer cannot be unloaded.
1077 for (bp
= firstbuf
; bp
!= NULL
; bp
= bp
->b_next
)
1078 if (bp
->b_p_bl
&& bp
!= buf
)
1080 if (bp
== NULL
&& buf
== curbuf
)
1082 if (action
== DOBUF_UNLOAD
)
1084 EMSG(_("E90: Cannot unload last buffer"));
1088 /* Close any other windows on this buffer, then make it empty. */
1090 close_windows(buf
, TRUE
);
1093 retval
= do_ecmd(0, NULL
, NULL
, NULL
, ECMD_ONE
,
1094 forceit
? ECMD_FORCEIT
: 0, curwin
);
1097 * do_ecmd() may create a new buffer, then we have to delete
1098 * the old one. But do_ecmd() may have done that already, check
1099 * if the buffer still exists.
1101 if (buf
!= curbuf
&& buf_valid(buf
) && buf
->b_nwindows
== 0)
1102 close_buffer(NULL
, buf
, action
);
1108 * If the deleted buffer is the current one, close the current window
1109 * (unless it's the only window). Repeat this so long as we end up in
1110 * a window with this buffer.
1112 while (buf
== curbuf
1113 && (firstwin
!= lastwin
|| first_tabpage
->tp_next
!= NULL
))
1114 win_close(curwin
, FALSE
);
1118 * If the buffer to be deleted is not the current one, delete it here.
1123 close_windows(buf
, FALSE
);
1125 if (buf
!= curbuf
&& buf_valid(buf
) && buf
->b_nwindows
<= 0)
1126 close_buffer(NULL
, buf
, action
);
1131 * Deleting the current buffer: Need to find another buffer to go to.
1132 * There must be another, otherwise it would have been handled above.
1133 * First use au_new_curbuf, if it is valid.
1134 * Then prefer the buffer we most recently visited.
1135 * Else try to find one that is loaded, after the current buffer,
1136 * then before the current buffer.
1137 * Finally use any buffer.
1139 buf
= NULL
; /* selected buffer */
1140 bp
= NULL
; /* used when no loaded buffer found */
1142 if (au_new_curbuf
!= NULL
&& buf_valid(au_new_curbuf
))
1143 buf
= au_new_curbuf
;
1144 # ifdef FEAT_JUMPLIST
1148 #ifdef FEAT_JUMPLIST
1149 if (curwin
->w_jumplistlen
> 0)
1153 jumpidx
= curwin
->w_jumplistidx
- 1;
1155 jumpidx
= curwin
->w_jumplistlen
- 1;
1158 while (jumpidx
!= curwin
->w_jumplistidx
)
1160 buf
= buflist_findnr(curwin
->w_jumplist
[jumpidx
].fmark
.fnum
);
1163 if (buf
== curbuf
|| !buf
->b_p_bl
)
1164 buf
= NULL
; /* skip current and unlisted bufs */
1165 else if (buf
->b_ml
.ml_mfp
== NULL
)
1167 /* skip unloaded buf, but may keep it for later */
1173 if (buf
!= NULL
) /* found a valid buffer: stop searching */
1175 /* advance to older entry in jump list */
1176 if (!jumpidx
&& curwin
->w_jumplistidx
== curwin
->w_jumplistlen
)
1179 jumpidx
= curwin
->w_jumplistlen
- 1;
1180 if (jumpidx
== forward
) /* List exhausted for sure */
1186 if (buf
== NULL
) /* No previous buffer, Try 2'nd approach */
1189 buf
= curbuf
->b_next
;
1194 if (!forward
) /* tried both directions */
1196 buf
= curbuf
->b_prev
;
1200 /* in non-help buffer, try to skip help buffers, and vv */
1201 if (buf
->b_help
== curbuf
->b_help
&& buf
->b_p_bl
)
1203 if (buf
->b_ml
.ml_mfp
!= NULL
) /* found loaded buffer */
1205 if (bp
== NULL
) /* remember unloaded buf for later */
1214 if (buf
== NULL
) /* No loaded buffer, use unloaded one */
1216 if (buf
== NULL
) /* No loaded buffer, find listed one */
1218 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
1219 if (buf
->b_p_bl
&& buf
!= curbuf
)
1222 if (buf
== NULL
) /* Still no buffer, just take one */
1224 if (curbuf
->b_next
!= NULL
)
1225 buf
= curbuf
->b_next
;
1227 buf
= curbuf
->b_prev
;
1232 * make buf current buffer
1234 if (action
== DOBUF_SPLIT
) /* split window first */
1236 # ifdef FEAT_WINDOWS
1237 /* If 'switchbuf' contains "useopen": jump to first window containing
1238 * "buf" if one exists */
1239 if ((swb_flags
& SWB_USEOPEN
) && buf_jump_open_win(buf
))
1241 /* If 'switchbuf' contains "usetab": jump to first window in any tab
1242 * page containing "buf" if one exists */
1243 if ((swb_flags
& SWB_USETAB
) && buf_jump_open_tab(buf
))
1245 if (win_split(0, 0) == FAIL
)
1251 /* go to current buffer - nothing to do */
1256 * Check if the current buffer may be abandoned.
1258 if (action
== DOBUF_GOTO
&& !can_abandon(curbuf
, forceit
))
1260 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1261 if ((p_confirm
|| cmdmod
.confirm
) && p_write
)
1263 dialog_changed(curbuf
, FALSE
);
1264 # ifdef FEAT_AUTOCMD
1265 if (!buf_valid(buf
))
1266 /* Autocommand deleted buffer, oops! */
1270 if (bufIsChanged(curbuf
))
1273 EMSG(_(e_nowrtmsg
));
1278 /* Go to the other buffer. */
1279 set_curbuf(buf
, action
);
1281 #if defined(FEAT_LISTCMDS) && defined(FEAT_SCROLLBIND)
1282 if (action
== DOBUF_SPLIT
)
1283 curwin
->w_p_scb
= FALSE
; /* reset 'scrollbind' */
1286 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1287 if (aborting()) /* autocmds may abort script processing */
1294 #endif /* FEAT_LISTCMDS */
1297 * Set current buffer to "buf". Executes autocommands and closes current
1298 * buffer. "action" tells how to close the current buffer:
1299 * DOBUF_GOTO free or hide it
1300 * DOBUF_SPLIT nothing
1301 * DOBUF_UNLOAD unload it
1302 * DOBUF_DEL delete it
1303 * DOBUF_WIPE wipe it out
1306 set_curbuf(buf
, action
)
1311 int unload
= (action
== DOBUF_UNLOAD
|| action
== DOBUF_DEL
1312 || action
== DOBUF_WIPE
);
1315 if (!cmdmod
.keepalt
)
1316 curwin
->w_alt_fnum
= curbuf
->b_fnum
; /* remember alternate file */
1317 buflist_altfpos(curwin
); /* remember curpos */
1320 /* Don't restart Select mode after switching to another buffer. */
1321 VIsual_reselect
= FALSE
;
1324 /* close_windows() or apply_autocmds() may change curbuf */
1328 apply_autocmds(EVENT_BUFLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
1330 if (buf_valid(prevbuf
) && !aborting())
1332 if (buf_valid(prevbuf
))
1338 close_windows(prevbuf
, FALSE
);
1340 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1341 if (buf_valid(prevbuf
) && !aborting())
1343 if (buf_valid(prevbuf
))
1346 if (prevbuf
== curbuf
)
1348 close_buffer(prevbuf
== curwin
->w_buffer
? curwin
: NULL
, prevbuf
,
1349 unload
? action
: (action
== DOBUF_GOTO
1351 && !bufIsChanged(prevbuf
)) ? DOBUF_UNLOAD
: 0);
1355 /* An autocommand may have deleted "buf", already entered it (e.g., when
1356 * it did ":bunload") or aborted the script processing! */
1358 if (buf_valid(buf
) && buf
!= curbuf
&& !aborting())
1360 if (buf_valid(buf
) && buf
!= curbuf
)
1367 * Enter a new current buffer.
1368 * Old curbuf must have been abandoned already!
1374 /* Copy buffer and window local option values. Not for a help buffer. */
1375 buf_copy_options(buf
, BCO_ENTER
| BCO_NOHELP
);
1380 /* Remove all folds in the window. */
1381 clearFolding(curwin
);
1382 foldUpdateAll(curwin
); /* update folds (later). */
1385 /* Get the buffer in the current window. */
1386 curwin
->w_buffer
= buf
;
1388 ++curbuf
->b_nwindows
;
1391 if (curwin
->w_p_diff
)
1392 diff_buf_add(curbuf
);
1395 /* Cursor on first line by default. */
1396 curwin
->w_cursor
.lnum
= 1;
1397 curwin
->w_cursor
.col
= 0;
1398 #ifdef FEAT_VIRTUALEDIT
1399 curwin
->w_cursor
.coladd
= 0;
1401 curwin
->w_set_curswant
= TRUE
;
1403 curwin
->w_topline_was_set
= FALSE
;
1406 /* Make sure the buffer is loaded. */
1407 if (curbuf
->b_ml
.ml_mfp
== NULL
) /* need to load the file */
1410 /* If there is no filetype, allow for detecting one. Esp. useful for
1411 * ":ball" used in a autocommand. If there already is a filetype we
1412 * might prefer to keep it. */
1413 if (*curbuf
->b_p_ft
== NUL
)
1414 did_filetype
= FALSE
;
1417 open_buffer(FALSE
, NULL
);
1422 need_fileinfo
= TRUE
; /* display file info after redraw */
1423 (void)buf_check_timestamp(curbuf
, FALSE
); /* check if file changed */
1425 curwin
->w_topline
= 1;
1427 curwin
->w_topfill
= 0;
1429 apply_autocmds(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
);
1430 apply_autocmds(EVENT_BUFWINENTER
, NULL
, NULL
, FALSE
, curbuf
);
1434 /* If autocommands did not change the cursor position, restore cursor lnum
1435 * and possibly cursor col. */
1436 if (curwin
->w_cursor
.lnum
== 1 && inindent(0))
1439 check_arg_idx(curwin
); /* check for valid arg_idx */
1444 /* when autocmds didn't change it */
1445 if (curwin
->w_topline
== 1 && !curwin
->w_topline_was_set
)
1447 scroll_cursor_halfway(FALSE
); /* redisplay at correct position */
1449 #ifdef FEAT_NETBEANS_INTG
1450 /* Send fileOpened event because we've changed buffers. */
1451 if (usingNetbeans
&& isNetbeansBuffer(curbuf
))
1452 netbeans_file_activated(curbuf
);
1455 /* Change directories when the 'acd' option is set. */
1459 if (curbuf
->b_kmap_state
& KEYMAP_INIT
)
1460 (void)keymap_init();
1463 /* May need to set the spell language. Can only do this after the buffer
1464 * has been properly setup. */
1465 if (!curbuf
->b_help
&& curwin
->w_p_spell
&& *curbuf
->b_p_spl
!= NUL
)
1466 (void)did_set_spelllang(curbuf
);
1469 redraw_later(NOT_VALID
);
1472 #if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1474 * Change to the directory of the current buffer.
1479 if (curbuf
->b_ffname
!= NULL
&& vim_chdirfile(curbuf
->b_ffname
) == OK
)
1480 shorten_fnames(TRUE
);
1485 * functions for dealing with the buffer list
1489 * Add a file name to the buffer list. Return a pointer to the buffer.
1490 * If the same file name already exists return a pointer to that buffer.
1491 * If it does not exist, or if fname == NULL, a new entry is created.
1492 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1493 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1494 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
1495 * This is the ONLY way to create a new buffer.
1497 static int top_file_num
= 1; /* highest file number */
1500 buflist_new(ffname
, sfname
, lnum
, flags
)
1501 char_u
*ffname
; /* full path of fname or relative */
1502 char_u
*sfname
; /* short fname or NULL */
1503 linenr_T lnum
; /* preferred cursor line */
1504 int flags
; /* BLN_ defines */
1511 fname_expand(curbuf
, &ffname
, &sfname
); /* will allocate ffname */
1514 * If file name already exists in the list, update the entry.
1517 /* On Unix we can use inode numbers when the file exists. Works better
1518 * for hard links. */
1519 if (sfname
== NULL
|| mch_stat((char *)sfname
, &st
) < 0)
1520 st
.st_dev
= (dev_T
)-1;
1522 if (ffname
!= NULL
&& !(flags
& BLN_DUMMY
) && (buf
=
1524 buflist_findname_stat(ffname
, &st
)
1526 buflist_findname(ffname
)
1532 buflist_setfpos(buf
, curwin
, lnum
, (colnr_T
)0, FALSE
);
1533 /* copy the options now, if 'cpo' doesn't have 's' and not done
1535 buf_copy_options(buf
, 0);
1536 if ((flags
& BLN_LISTED
) && !buf
->b_p_bl
)
1540 if (!(flags
& BLN_DUMMY
))
1541 apply_autocmds(EVENT_BUFADD
, NULL
, NULL
, FALSE
, buf
);
1548 * If the current buffer has no name and no contents, use the current
1549 * buffer. Otherwise: Need to allocate a new buffer structure.
1551 * This is the ONLY place where a new buffer structure is allocated!
1552 * (A spell file buffer is allocated in spell.c, but that's not a normal
1556 if ((flags
& BLN_CURBUF
)
1558 && curbuf
->b_ffname
== NULL
1559 && curbuf
->b_nwindows
<= 1
1560 && (curbuf
->b_ml
.ml_mfp
== NULL
|| bufempty()))
1564 /* It's like this buffer is deleted. Watch out for autocommands that
1565 * change curbuf! If that happens, allocate a new buffer anyway. */
1567 apply_autocmds(EVENT_BUFDELETE
, NULL
, NULL
, FALSE
, curbuf
);
1569 apply_autocmds(EVENT_BUFWIPEOUT
, NULL
, NULL
, FALSE
, curbuf
);
1571 if (aborting()) /* autocmds may abort script processing */
1575 #ifdef FEAT_QUICKFIX
1576 # ifdef FEAT_AUTOCMD
1580 /* Make sure 'bufhidden' and 'buftype' are empty */
1581 clear_string_option(&buf
->b_p_bh
);
1582 clear_string_option(&buf
->b_p_bt
);
1586 if (buf
!= curbuf
|| curbuf
== NULL
)
1588 buf
= (buf_T
*)alloc_clear((unsigned)sizeof(buf_T
));
1598 buf
->b_ffname
= ffname
;
1599 buf
->b_sfname
= vim_strsave(sfname
);
1603 buf
->b_wininfo
= (wininfo_T
*)alloc_clear((unsigned)sizeof(wininfo_T
));
1605 if ((ffname
!= NULL
&& (buf
->b_ffname
== NULL
|| buf
->b_sfname
== NULL
))
1606 || buf
->b_wininfo
== NULL
)
1608 vim_free(buf
->b_ffname
);
1609 buf
->b_ffname
= NULL
;
1610 vim_free(buf
->b_sfname
);
1611 buf
->b_sfname
= NULL
;
1619 /* free all things allocated for this buffer */
1620 buf_freeall(buf
, FALSE
, FALSE
);
1621 if (buf
!= curbuf
) /* autocommands deleted the buffer! */
1623 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1624 if (aborting()) /* autocmds may abort script processing */
1627 /* buf->b_nwindows = 0; why was this here? */
1628 free_buffer_stuff(buf
, FALSE
); /* delete local variables et al. */
1630 /* need to reload lmaps and set b:keymap_name */
1631 curbuf
->b_kmap_state
|= KEYMAP_INIT
;
1637 * put new buffer at the end of the buffer list
1640 if (firstbuf
== NULL
) /* buffer list is empty */
1645 else /* append new buffer at end of list */
1647 lastbuf
->b_next
= buf
;
1648 buf
->b_prev
= lastbuf
;
1652 buf
->b_fnum
= top_file_num
++;
1653 if (top_file_num
< 0) /* wrap around (may cause duplicates) */
1655 EMSG(_("W14: Warning: List of file names overflow"));
1656 if (emsg_silent
== 0)
1659 ui_delay(3000L, TRUE
); /* make sure it is noticed */
1665 * Always copy the options from the current buffer.
1667 buf_copy_options(buf
, BCO_ALWAYS
);
1670 buf
->b_wininfo
->wi_fpos
.lnum
= lnum
;
1671 buf
->b_wininfo
->wi_win
= curwin
;
1674 init_var_dict(&buf
->b_vars
, &buf
->b_bufvar
); /* init b: variables */
1677 hash_init(&buf
->b_keywtab
);
1678 hash_init(&buf
->b_keywtab_ic
);
1681 buf
->b_fname
= buf
->b_sfname
;
1683 if (st
.st_dev
== (dev_T
)-1)
1684 buf
->b_dev_valid
= FALSE
;
1687 buf
->b_dev_valid
= TRUE
;
1688 buf
->b_dev
= st
.st_dev
;
1689 buf
->b_ino
= st
.st_ino
;
1692 buf
->b_u_synced
= TRUE
;
1693 buf
->b_flags
= BF_CHECK_RO
| BF_NEVERLOADED
;
1694 if (flags
& BLN_DUMMY
)
1695 buf
->b_flags
|= BF_DUMMY
;
1696 buf_clear_file(buf
);
1697 clrallmarks(buf
); /* clear marks */
1698 fmarks_check_names(buf
); /* check file marks for this file */
1699 buf
->b_p_bl
= (flags
& BLN_LISTED
) ? TRUE
: FALSE
; /* init 'buflisted' */
1701 if (!(flags
& BLN_DUMMY
))
1703 apply_autocmds(EVENT_BUFNEW
, NULL
, NULL
, FALSE
, buf
);
1704 if (flags
& BLN_LISTED
)
1705 apply_autocmds(EVENT_BUFADD
, NULL
, NULL
, FALSE
, buf
);
1707 if (aborting()) /* autocmds may abort script processing */
1717 * Free the memory for the options of a buffer.
1718 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
1722 free_buf_options(buf
, free_p_ff
)
1729 clear_string_option(&buf
->b_p_fenc
);
1731 clear_string_option(&buf
->b_p_ff
);
1732 #ifdef FEAT_QUICKFIX
1733 clear_string_option(&buf
->b_p_bh
);
1734 clear_string_option(&buf
->b_p_bt
);
1738 clear_string_option(&buf
->b_p_def
);
1739 clear_string_option(&buf
->b_p_inc
);
1741 clear_string_option(&buf
->b_p_inex
);
1744 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1745 clear_string_option(&buf
->b_p_inde
);
1746 clear_string_option(&buf
->b_p_indk
);
1748 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
1749 clear_string_option(&buf
->b_p_bexpr
);
1751 #if defined(FEAT_EVAL)
1752 clear_string_option(&buf
->b_p_fex
);
1755 clear_string_option(&buf
->b_p_key
);
1757 clear_string_option(&buf
->b_p_kp
);
1758 clear_string_option(&buf
->b_p_mps
);
1759 clear_string_option(&buf
->b_p_fo
);
1760 clear_string_option(&buf
->b_p_flp
);
1761 clear_string_option(&buf
->b_p_isk
);
1763 clear_string_option(&buf
->b_p_keymap
);
1764 ga_clear(&buf
->b_kmap_ga
);
1766 #ifdef FEAT_COMMENTS
1767 clear_string_option(&buf
->b_p_com
);
1770 clear_string_option(&buf
->b_p_cms
);
1772 clear_string_option(&buf
->b_p_nf
);
1774 clear_string_option(&buf
->b_p_syn
);
1777 clear_string_option(&buf
->b_p_spc
);
1778 clear_string_option(&buf
->b_p_spf
);
1779 vim_free(buf
->b_cap_prog
);
1780 buf
->b_cap_prog
= NULL
;
1781 clear_string_option(&buf
->b_p_spl
);
1783 #ifdef FEAT_SEARCHPATH
1784 clear_string_option(&buf
->b_p_sua
);
1787 clear_string_option(&buf
->b_p_ft
);
1789 #ifdef FEAT_OSFILETYPE
1790 clear_string_option(&buf
->b_p_oft
);
1793 clear_string_option(&buf
->b_p_cink
);
1794 clear_string_option(&buf
->b_p_cino
);
1796 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
1797 clear_string_option(&buf
->b_p_cinw
);
1799 #ifdef FEAT_INS_EXPAND
1800 clear_string_option(&buf
->b_p_cpt
);
1802 #ifdef FEAT_COMPL_FUNC
1803 clear_string_option(&buf
->b_p_cfu
);
1804 clear_string_option(&buf
->b_p_ofu
);
1806 #ifdef FEAT_QUICKFIX
1807 clear_string_option(&buf
->b_p_gp
);
1808 clear_string_option(&buf
->b_p_mp
);
1809 clear_string_option(&buf
->b_p_efm
);
1811 clear_string_option(&buf
->b_p_ep
);
1812 clear_string_option(&buf
->b_p_path
);
1813 clear_string_option(&buf
->b_p_tags
);
1814 #ifdef FEAT_INS_EXPAND
1815 clear_string_option(&buf
->b_p_dict
);
1816 clear_string_option(&buf
->b_p_tsr
);
1819 clear_string_option(&buf
->b_p_qe
);
1825 * get alternate file n
1826 * set linenr to lnum or altfpos.lnum if lnum == 0
1827 * also set cursor column to altfpos.col if 'startofline' is not set.
1828 * if (options & GETF_SETMARK) call setpcmark()
1829 * if (options & GETF_ALT) we are jumping to an alternate file.
1830 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
1832 * return FAIL for failure, OK for success
1835 buflist_getfile(n
, lnum
, options
, forceit
)
1848 buf
= buflist_findnr(n
);
1851 if ((options
& GETF_ALT
) && n
== 0)
1854 EMSGN(_("E92: Buffer %ld not found"), n
);
1858 /* if alternate file is the current buffer, nothing to do */
1868 if (curbuf_locked())
1872 /* altfpos may be changed by getfile(), get it now */
1875 fpos
= buflist_findfpos(buf
);
1883 if (options
& GETF_SWITCH
)
1885 /* If 'switchbuf' contains "useopen": jump to first window containing
1886 * "buf" if one exists */
1887 if (swb_flags
& SWB_USEOPEN
)
1888 wp
= buf_jump_open_win(buf
);
1889 /* If 'switchbuf' contians "usetab": jump to first window in any tab
1890 * page containing "buf" if one exists */
1891 if (wp
== NULL
&& (swb_flags
& SWB_USETAB
))
1892 wp
= buf_jump_open_tab(buf
);
1893 /* If 'switchbuf' contains "split" or "newtab" and the current buffer
1894 * isn't empty: open new window */
1895 if (wp
== NULL
&& (swb_flags
& (SWB_SPLIT
| SWB_NEWTAB
)) && !bufempty())
1897 if (swb_flags
& SWB_NEWTAB
) /* Open in a new tab */
1899 else if (win_split(0, 0) == FAIL
) /* Open in a new window */
1901 # ifdef FEAT_SCROLLBIND
1902 curwin
->w_p_scb
= FALSE
;
1908 ++RedrawingDisabled
;
1909 if (getfile(buf
->b_fnum
, NULL
, NULL
, (options
& GETF_SETMARK
),
1910 lnum
, forceit
) <= 0)
1912 --RedrawingDisabled
;
1914 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
1915 if (!p_sol
&& col
!= 0)
1917 curwin
->w_cursor
.col
= col
;
1919 #ifdef FEAT_VIRTUALEDIT
1920 curwin
->w_cursor
.coladd
= 0;
1922 curwin
->w_set_curswant
= TRUE
;
1926 --RedrawingDisabled
;
1931 * go to the last know line number for the current buffer
1938 fpos
= buflist_findfpos(curbuf
);
1940 curwin
->w_cursor
.lnum
= fpos
->lnum
;
1941 check_cursor_lnum();
1944 curwin
->w_cursor
.col
= 0;
1947 curwin
->w_cursor
.col
= fpos
->col
;
1949 #ifdef FEAT_VIRTUALEDIT
1950 curwin
->w_cursor
.coladd
= 0;
1952 curwin
->w_set_curswant
= TRUE
;
1956 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
1958 * Find file in buffer list by name (it has to be for the current window).
1959 * Returns NULL if not found.
1962 buflist_findname_exp(fname
)
1968 /* First make the name into a full path name */
1969 ffname
= FullName_save(fname
,
1971 TRUE
/* force expansion, get rid of symbolic links */
1978 buf
= buflist_findname(ffname
);
1986 * Find file in buffer list by name (it has to be for the current window).
1987 * "ffname" must have a full path.
1988 * Skips dummy buffers.
1989 * Returns NULL if not found.
1992 buflist_findname(ffname
)
1998 if (mch_stat((char *)ffname
, &st
) < 0)
1999 st
.st_dev
= (dev_T
)-1;
2000 return buflist_findname_stat(ffname
, &st
);
2004 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2005 * twice for the same file.
2006 * Returns NULL if not found.
2009 buflist_findname_stat(ffname
, stp
)
2016 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
2017 if ((buf
->b_flags
& BF_DUMMY
) == 0 && !otherfile_buf(buf
, ffname
2026 #if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) || defined(PROTO)
2028 * Find file in buffer list by a regexp pattern.
2029 * Return fnum of the found buffer.
2030 * Return < 0 for error.
2033 buflist_findpat(pattern
, pattern_end
, unlisted
, diffmode
)
2035 char_u
*pattern_end
; /* pointer to first char after pattern */
2036 int unlisted
; /* find unlisted buffers */
2037 int diffmode UNUSED
; /* find diff-mode buffers only */
2049 if (pattern_end
== pattern
+ 1 && (*pattern
== '%' || *pattern
== '#'))
2051 if (*pattern
== '%')
2052 match
= curbuf
->b_fnum
;
2054 match
= curwin
->w_alt_fnum
;
2056 if (diffmode
&& !diff_mode_buf(buflist_findnr(match
)))
2062 * Try four ways of matching a listed buffer:
2063 * attempt == 0: without '^' or '$' (at any position)
2064 * attempt == 1: with '^' at start (only at position 0)
2065 * attempt == 2: with '$' at end (only match at end)
2066 * attempt == 3: with '^' at start and '$' at end (only full match)
2067 * Repeat this for finding an unlisted buffer if there was no matching
2072 pat
= file_pat_to_reg_pat(pattern
, pattern_end
, NULL
, FALSE
);
2075 patend
= pat
+ STRLEN(pat
) - 1;
2076 toggledollar
= (patend
> pat
&& *patend
== '$');
2078 /* First try finding a listed buffer. If not found and "unlisted"
2079 * is TRUE, try finding an unlisted buffer. */
2083 for (attempt
= 0; attempt
<= 3; ++attempt
)
2085 /* may add '^' and '$' */
2087 *patend
= (attempt
< 2) ? NUL
: '$'; /* add/remove '$' */
2089 if (*p
== '^' && !(attempt
& 1)) /* add/remove '^' */
2091 prog
= vim_regcomp(p
, p_magic
? RE_MAGIC
: 0);
2098 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
2099 if (buf
->b_p_bl
== find_listed
2101 && (!diffmode
|| diff_mode_buf(buf
))
2103 && buflist_match(prog
, buf
) != NULL
)
2105 if (match
>= 0) /* already found a match */
2110 match
= buf
->b_fnum
; /* remember first match */
2114 if (match
>= 0) /* found one match */
2118 /* Only search for unlisted buffers if there was no match with
2119 * a listed buffer. */
2120 if (!unlisted
|| !find_listed
|| match
!= -1)
2122 find_listed
= FALSE
;
2129 EMSG2(_("E93: More than one match for %s"), pattern
);
2131 EMSG2(_("E94: No matching buffer for %s"), pattern
);
2136 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2139 * Find all buffer names that match.
2140 * For command line expansion of ":buf" and ":sbuf".
2141 * Return OK if matches found, FAIL otherwise.
2144 ExpandBufnames(pat
, num_file
, file
, options
)
2158 *num_file
= 0; /* return values in case of FAIL */
2161 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2164 patc
= alloc((unsigned)STRLEN(pat
) + 11);
2167 STRCPY(patc
, "\\(^\\|[\\/]\\)");
2168 STRCPY(patc
+ 11, pat
+ 1);
2174 * attempt == 0: try match with '\<', match at start of word
2175 * attempt == 1: try match without '\<', match anywhere
2177 for (attempt
= 0; attempt
<= 1; ++attempt
)
2179 if (attempt
> 0 && patc
== pat
)
2180 break; /* there was no anchor, no need to try again */
2181 prog
= vim_regcomp(patc
+ attempt
* 11, RE_MAGIC
);
2190 * round == 1: Count the matches.
2191 * round == 2: Build the array to keep the matches.
2193 for (round
= 1; round
<= 2; ++round
)
2196 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
2198 if (!buf
->b_p_bl
) /* skip unlisted buffers */
2200 p
= buflist_match(prog
, buf
);
2207 if (options
& WILD_HOME_REPLACE
)
2208 p
= home_replace_save(buf
, p
);
2211 (*file
)[count
++] = p
;
2215 if (count
== 0) /* no match found, break here */
2219 *file
= (char_u
**)alloc((unsigned)(count
* sizeof(char_u
*)));
2230 if (count
) /* match(es) found, break here */
2238 return (count
== 0 ? FAIL
: OK
);
2241 #endif /* FEAT_CMDL_COMPL */
2243 #ifdef HAVE_BUFLIST_MATCH
2245 * Check for a match on the file name for buffer "buf" with regprog "prog".
2248 buflist_match(prog
, buf
)
2254 /* First try the short file name, then the long file name. */
2255 match
= fname_match(prog
, buf
->b_sfname
);
2257 match
= fname_match(prog
, buf
->b_ffname
);
2263 * Try matching the regexp in "prog" with file name "name".
2264 * Return "name" when there is a match, NULL when not.
2267 fname_match(prog
, name
)
2271 char_u
*match
= NULL
;
2273 regmatch_T regmatch
;
2277 regmatch
.regprog
= prog
;
2278 #ifdef CASE_INSENSITIVE_FILENAME
2279 regmatch
.rm_ic
= TRUE
; /* Always ignore case */
2281 regmatch
.rm_ic
= FALSE
; /* Never ignore case */
2284 if (vim_regexec(®match
, name
, (colnr_T
)0))
2288 /* Replace $(HOME) with '~' and try matching again. */
2289 p
= home_replace_save(NULL
, name
);
2290 if (p
!= NULL
&& vim_regexec(®match
, p
, (colnr_T
)0))
2301 * find file in buffer list by number
2310 nr
= curwin
->w_alt_fnum
;
2311 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
2312 if (buf
->b_fnum
== nr
)
2318 * Get name of file 'n' in the buffer list.
2319 * When the file has no name an empty string is returned.
2320 * home_replace() is used to shorten the file name (used for marks).
2321 * Returns a pointer to allocated memory, of NULL when failed.
2324 buflist_nr2name(n
, fullname
, helptail
)
2327 int helptail
; /* for help buffers return tail only */
2331 buf
= buflist_findnr(n
);
2334 return home_replace_save(helptail
? buf
: NULL
,
2335 fullname
? buf
->b_ffname
: buf
->b_fname
);
2339 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2340 * When "copy_options" is TRUE save the local window option values.
2341 * When "lnum" is 0 only do the options.
2344 buflist_setfpos(buf
, win
, lnum
, col
, copy_options
)
2353 for (wip
= buf
->b_wininfo
; wip
!= NULL
; wip
= wip
->wi_next
)
2354 if (wip
->wi_win
== win
)
2358 /* allocate a new entry */
2359 wip
= (wininfo_T
*)alloc_clear((unsigned)sizeof(wininfo_T
));
2363 if (lnum
== 0) /* set lnum even when it's 0 */
2368 /* remove the entry from the list */
2370 wip
->wi_prev
->wi_next
= wip
->wi_next
;
2372 buf
->b_wininfo
= wip
->wi_next
;
2374 wip
->wi_next
->wi_prev
= wip
->wi_prev
;
2375 if (copy_options
&& wip
->wi_optset
)
2377 clear_winopt(&wip
->wi_opt
);
2379 deleteFoldRecurse(&wip
->wi_folds
);
2385 wip
->wi_fpos
.lnum
= lnum
;
2386 wip
->wi_fpos
.col
= col
;
2390 /* Save the window-specific option values. */
2391 copy_winopt(&win
->w_onebuf_opt
, &wip
->wi_opt
);
2393 wip
->wi_fold_manual
= win
->w_fold_manual
;
2394 cloneFoldGrowArray(&win
->w_folds
, &wip
->wi_folds
);
2396 wip
->wi_optset
= TRUE
;
2399 /* insert the entry in front of the list */
2400 wip
->wi_next
= buf
->b_wininfo
;
2401 buf
->b_wininfo
= wip
;
2402 wip
->wi_prev
= NULL
;
2404 wip
->wi_next
->wi_prev
= wip
;
2410 static int wininfo_other_tab_diff
__ARGS((wininfo_T
*wip
));
2413 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2414 * page. That's because a diff is local to a tab page.
2417 wininfo_other_tab_diff(wip
)
2422 if (wip
->wi_opt
.wo_diff
)
2424 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
2425 /* return FALSE when it's a window in the current tab page, thus
2426 * the buffer was in diff mode here */
2427 if (wip
->wi_win
== wp
)
2436 * Find info for the current window in buffer "buf".
2437 * If not found, return the info for the most recently used window.
2438 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2440 * Returns NULL when there isn't any info.
2443 find_wininfo(buf
, skip_diff_buffer
)
2445 int skip_diff_buffer UNUSED
;
2449 for (wip
= buf
->b_wininfo
; wip
!= NULL
; wip
= wip
->wi_next
)
2450 if (wip
->wi_win
== curwin
2452 && (!skip_diff_buffer
|| !wininfo_other_tab_diff(wip
))
2457 /* If no wininfo for curwin, use the first in the list (that doesn't have
2458 * 'diff' set and is in another tab page). */
2462 if (skip_diff_buffer
)
2464 for (wip
= buf
->b_wininfo
; wip
!= NULL
; wip
= wip
->wi_next
)
2465 if (!wininfo_other_tab_diff(wip
))
2470 wip
= buf
->b_wininfo
;
2476 * Reset the local window options to the values last used in this window.
2477 * If the buffer wasn't used in this window before, use the values from
2478 * the most recently used window. If the values were never set, use the
2479 * global values for the window.
2487 clear_winopt(&curwin
->w_onebuf_opt
);
2489 clearFolding(curwin
);
2492 wip
= find_wininfo(buf
, TRUE
);
2493 if (wip
!= NULL
&& wip
->wi_optset
)
2495 copy_winopt(&wip
->wi_opt
, &curwin
->w_onebuf_opt
);
2497 curwin
->w_fold_manual
= wip
->wi_fold_manual
;
2498 curwin
->w_foldinvalid
= TRUE
;
2499 cloneFoldGrowArray(&wip
->wi_folds
, &curwin
->w_folds
);
2503 copy_winopt(&curwin
->w_allbuf_opt
, &curwin
->w_onebuf_opt
);
2506 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2508 curwin
->w_p_fdl
= p_fdls
;
2513 * Find the position (lnum and col) for the buffer 'buf' for the current
2515 * Returns a pointer to no_position if no position is found.
2518 buflist_findfpos(buf
)
2522 static pos_T no_position
= INIT_POS_T(1, 0, 0);
2524 wip
= find_wininfo(buf
, FALSE
);
2526 return &(wip
->wi_fpos
);
2528 return &no_position
;
2532 * Find the lnum for the buffer 'buf' for the current window.
2535 buflist_findlnum(buf
)
2538 return buflist_findfpos(buf
)->lnum
;
2541 #if defined(FEAT_LISTCMDS) || defined(PROTO)
2543 * List all know file names (for :files and :buffers command).
2553 for (buf
= firstbuf
; buf
!= NULL
&& !got_int
; buf
= buf
->b_next
)
2555 /* skip unlisted buffers, unless ! was used */
2556 if (!buf
->b_p_bl
&& !eap
->forceit
)
2559 if (buf_spname(buf
) != NULL
)
2560 STRCPY(NameBuff
, buf_spname(buf
));
2562 home_replace(buf
, buf
->b_fname
, NameBuff
, MAXPATHL
, TRUE
);
2564 len
= vim_snprintf((char *)IObuff
, IOSIZE
- 20, "%3d%c%c%c%c%c \"%s\"",
2566 buf
->b_p_bl
? ' ' : 'u',
2567 buf
== curbuf
? '%' :
2568 (curwin
->w_alt_fnum
== buf
->b_fnum
? '#' : ' '),
2569 buf
->b_ml
.ml_mfp
== NULL
? ' ' :
2570 (buf
->b_nwindows
== 0 ? 'h' : 'a'),
2571 !buf
->b_p_ma
? '-' : (buf
->b_p_ro
? '=' : ' '),
2572 (buf
->b_flags
& BF_READERR
) ? 'x'
2573 : (bufIsChanged(buf
) ? '+' : ' '),
2576 /* put "line 999" in column 40 or after the file name */
2577 i
= 40 - vim_strsize(IObuff
);
2580 IObuff
[len
++] = ' ';
2581 } while (--i
> 0 && len
< IOSIZE
- 18);
2582 vim_snprintf((char *)IObuff
+ len
, (size_t)(IOSIZE
- len
),
2583 _("line %ld"), buf
== curbuf
? curwin
->w_cursor
.lnum
2584 : (long)buflist_findlnum(buf
));
2585 msg_outtrans(IObuff
);
2586 out_flush(); /* output one line at a time */
2593 * Get file name and line number for file 'fnum'.
2594 * Used by DoOneCmd() for translating '%' and '#'.
2595 * Used by insert_reg() and cmdline_paste() for '#' register.
2596 * Return FAIL if not found, OK for success.
2599 buflist_name_nr(fnum
, fname
, lnum
)
2606 buf
= buflist_findnr(fnum
);
2607 if (buf
== NULL
|| buf
->b_fname
== NULL
)
2610 *fname
= buf
->b_fname
;
2611 *lnum
= buflist_findlnum(buf
);
2617 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2618 * The file name with the full path is also remembered, for when :cd is used.
2619 * Returns FAIL for failure (file name already in use by other buffer)
2623 setfname(buf
, ffname
, sfname
, message
)
2625 char_u
*ffname
, *sfname
;
2626 int message
; /* give message when buffer already exists */
2633 if (ffname
== NULL
|| *ffname
== NUL
)
2635 /* Removing the name. */
2636 vim_free(buf
->b_ffname
);
2637 vim_free(buf
->b_sfname
);
2638 buf
->b_ffname
= NULL
;
2639 buf
->b_sfname
= NULL
;
2641 st
.st_dev
= (dev_T
)-1;
2646 fname_expand(buf
, &ffname
, &sfname
); /* will allocate ffname */
2647 if (ffname
== NULL
) /* out of memory */
2651 * if the file name is already used in another buffer:
2652 * - if the buffer is loaded, fail
2653 * - if the buffer is not loaded, delete it from the list
2656 if (mch_stat((char *)ffname
, &st
) < 0)
2657 st
.st_dev
= (dev_T
)-1;
2659 if (!(buf
->b_flags
& BF_DUMMY
))
2661 obuf
= buflist_findname_stat(ffname
, &st
);
2663 obuf
= buflist_findname(ffname
);
2665 if (obuf
!= NULL
&& obuf
!= buf
)
2667 if (obuf
->b_ml
.ml_mfp
!= NULL
) /* it's loaded, fail */
2670 EMSG(_("E95: Buffer with this name already exists"));
2674 close_buffer(NULL
, obuf
, DOBUF_WIPE
); /* delete from the list */
2676 sfname
= vim_strsave(sfname
);
2677 if (ffname
== NULL
|| sfname
== NULL
)
2683 #ifdef USE_FNAME_CASE
2684 # ifdef USE_LONG_FNAME
2687 fname_case(sfname
, 0); /* set correct case for short file name */
2689 vim_free(buf
->b_ffname
);
2690 vim_free(buf
->b_sfname
);
2691 buf
->b_ffname
= ffname
;
2692 buf
->b_sfname
= sfname
;
2694 buf
->b_fname
= buf
->b_sfname
;
2696 if (st
.st_dev
== (dev_T
)-1)
2697 buf
->b_dev_valid
= FALSE
;
2700 buf
->b_dev_valid
= TRUE
;
2701 buf
->b_dev
= st
.st_dev
;
2702 buf
->b_ino
= st
.st_ino
;
2707 buf
->b_shortname
= FALSE
;
2710 buf_name_changed(buf
);
2715 * Crude way of changing the name of a buffer. Use with care!
2716 * The name should be relative to the current directory.
2719 buf_set_name(fnum
, name
)
2725 buf
= buflist_findnr(fnum
);
2728 vim_free(buf
->b_sfname
);
2729 vim_free(buf
->b_ffname
);
2730 buf
->b_ffname
= vim_strsave(name
);
2731 buf
->b_sfname
= NULL
;
2732 /* Allocate ffname and expand into full path. Also resolves .lnk
2733 * files on Win32. */
2734 fname_expand(buf
, &buf
->b_ffname
, &buf
->b_sfname
);
2735 buf
->b_fname
= buf
->b_sfname
;
2740 * Take care of what needs to be done when the name of buffer "buf" has
2744 buf_name_changed(buf
)
2748 * If the file name changed, also change the name of the swapfile
2750 if (buf
->b_ml
.ml_mfp
!= NULL
)
2753 if (curwin
->w_buffer
== buf
)
2754 check_arg_idx(curwin
); /* check file name for arg list */
2756 maketitle(); /* set window title */
2759 status_redraw_all(); /* status lines need to be redrawn */
2761 fmarks_check_names(buf
); /* check named file marks */
2762 ml_timestamp(buf
); /* reset timestamp */
2766 * set alternate file name for current window
2768 * Used by do_one_cmd(), do_write() and do_ecmd().
2769 * Return the buffer.
2772 setaltfname(ffname
, sfname
, lnum
)
2779 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
2780 buf
= buflist_new(ffname
, sfname
, lnum
, 0);
2781 if (buf
!= NULL
&& !cmdmod
.keepalt
)
2782 curwin
->w_alt_fnum
= buf
->b_fnum
;
2787 * Get alternate file name for current window.
2788 * Return NULL if there isn't any, and give error message if requested.
2792 int errmsg
; /* give error message */
2797 if (buflist_name_nr(0, &fname
, &dummy
) == FAIL
)
2807 * Add a file name to the buflist and return its number.
2808 * Uses same flags as buflist_new(), except BLN_DUMMY.
2810 * used by qf_init(), main() and doarglist()
2813 buflist_add(fname
, flags
)
2819 buf
= buflist_new(fname
, NULL
, (linenr_T
)0, flags
);
2825 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
2827 * Adjust slashes in file names. Called after 'shellslash' was set.
2830 buflist_slash_adjust()
2834 for (bp
= firstbuf
; bp
!= NULL
; bp
= bp
->b_next
)
2836 if (bp
->b_ffname
!= NULL
)
2837 slash_adjust(bp
->b_ffname
);
2838 if (bp
->b_sfname
!= NULL
)
2839 slash_adjust(bp
->b_sfname
);
2845 * Set alternate cursor position for the current buffer and window "win".
2846 * Also save the local window option values.
2849 buflist_altfpos(win
)
2852 buflist_setfpos(curbuf
, win
, win
->w_cursor
.lnum
, win
->w_cursor
.col
, TRUE
);
2856 * Return TRUE if 'ffname' is not the same file as current file.
2857 * Fname must have a full path (expanded by mch_FullName()).
2863 return otherfile_buf(curbuf
, ffname
2871 otherfile_buf(buf
, ffname
2882 /* no name is different */
2883 if (ffname
== NULL
|| *ffname
== NUL
|| buf
->b_ffname
== NULL
)
2885 if (fnamecmp(ffname
, buf
->b_ffname
) == 0)
2891 /* If no struct stat given, get it now */
2894 if (!buf
->b_dev_valid
|| mch_stat((char *)ffname
, &st
) < 0)
2895 st
.st_dev
= (dev_T
)-1;
2898 /* Use dev/ino to check if the files are the same, even when the names
2899 * are different (possible with links). Still need to compare the
2900 * name above, for when the file doesn't exist yet.
2901 * Problem: The dev/ino changes when a file is deleted (and created
2902 * again) and remains the same when renamed/moved. We don't want to
2903 * mch_stat() each buffer each time, that would be too slow. Get the
2904 * dev/ino again when they appear to match, but not when they appear
2905 * to be different: Could skip a buffer when it's actually the same
2907 if (buf_same_ino(buf
, stp
))
2910 if (buf_same_ino(buf
, stp
))
2918 #if defined(UNIX) || defined(PROTO)
2920 * Set inode and device number for a buffer.
2921 * Must always be called when b_fname is changed!.
2929 if (buf
->b_fname
!= NULL
&& mch_stat((char *)buf
->b_fname
, &st
) >= 0)
2931 buf
->b_dev_valid
= TRUE
;
2932 buf
->b_dev
= st
.st_dev
;
2933 buf
->b_ino
= st
.st_ino
;
2936 buf
->b_dev_valid
= FALSE
;
2940 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
2943 buf_same_ino(buf
, stp
)
2947 return (buf
->b_dev_valid
2948 && stp
->st_dev
== buf
->b_dev
2949 && stp
->st_ino
== buf
->b_ino
);
2954 * Print info about the current buffer.
2957 fileinfo(fullname
, shorthelp
, dont_truncate
)
2958 int fullname
; /* when non-zero print full path */
2968 buffer
= alloc(IOSIZE
);
2972 if (fullname
> 1) /* 2 CTRL-G: include buffer number */
2974 vim_snprintf((char *)buffer
, IOSIZE
, "buf %d: ", curbuf
->b_fnum
);
2975 p
= buffer
+ STRLEN(buffer
);
2981 if (buf_spname(curbuf
) != NULL
)
2982 STRCPY(p
, buf_spname(curbuf
));
2985 if (!fullname
&& curbuf
->b_fname
!= NULL
)
2986 name
= curbuf
->b_fname
;
2988 name
= curbuf
->b_ffname
;
2989 home_replace(shorthelp
? curbuf
: NULL
, name
, p
,
2990 (int)(IOSIZE
- (p
- buffer
)), TRUE
);
2993 len
= STRLEN(buffer
);
2994 vim_snprintf((char *)buffer
+ len
, IOSIZE
- len
,
2996 curbufIsChanged() ? (shortmess(SHM_MOD
)
2997 ? " [+]" : _(" [Modified]")) : " ",
2998 (curbuf
->b_flags
& BF_NOTEDITED
)
2999 #ifdef FEAT_QUICKFIX
3000 && !bt_dontwrite(curbuf
)
3002 ? _("[Not edited]") : "",
3003 (curbuf
->b_flags
& BF_NEW
)
3004 #ifdef FEAT_QUICKFIX
3005 && !bt_dontwrite(curbuf
)
3007 ? _("[New file]") : "",
3008 (curbuf
->b_flags
& BF_READERR
) ? _("[Read errors]") : "",
3009 curbuf
->b_p_ro
? (shortmess(SHM_RO
) ? "[RO]"
3010 : _("[readonly]")) : "",
3011 (curbufIsChanged() || (curbuf
->b_flags
& BF_WRITE_MASK
)
3012 || curbuf
->b_p_ro
) ?
3014 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3015 * causes an overflow, thus for large numbers divide instead. */
3016 if (curwin
->w_cursor
.lnum
> 1000000L)
3017 n
= (int)(((long)curwin
->w_cursor
.lnum
) /
3018 ((long)curbuf
->b_ml
.ml_line_count
/ 100L));
3020 n
= (int)(((long)curwin
->w_cursor
.lnum
* 100L) /
3021 (long)curbuf
->b_ml
.ml_line_count
);
3022 len
= STRLEN(buffer
);
3023 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
3025 vim_snprintf((char *)buffer
+ len
, IOSIZE
- len
, "%s", _(no_lines_msg
));
3027 #ifdef FEAT_CMDL_INFO
3030 /* Current line and column are already on the screen -- webb */
3031 if (curbuf
->b_ml
.ml_line_count
== 1)
3032 vim_snprintf((char *)buffer
+ len
, IOSIZE
- len
,
3033 _("1 line --%d%%--"), n
);
3035 vim_snprintf((char *)buffer
+ len
, IOSIZE
- len
,
3036 _("%ld lines --%d%%--"),
3037 (long)curbuf
->b_ml
.ml_line_count
, n
);
3042 vim_snprintf((char *)buffer
+ len
, IOSIZE
- len
,
3043 _("line %ld of %ld --%d%%-- col "),
3044 (long)curwin
->w_cursor
.lnum
,
3045 (long)curbuf
->b_ml
.ml_line_count
,
3048 len
= STRLEN(buffer
);
3049 col_print(buffer
+ len
, IOSIZE
- len
,
3050 (int)curwin
->w_cursor
.col
+ 1, (int)curwin
->w_virtcol
+ 1);
3053 (void)append_arg_number(curwin
, buffer
, IOSIZE
, !shortmess(SHM_FILE
));
3057 /* Temporarily set msg_scroll to avoid the message being truncated.
3058 * First call msg_start() to get the message in the right place. */
3067 p
= msg_trunc_attr(buffer
, FALSE
, 0);
3068 if (restart_edit
!= 0 || (msg_scrolled
&& !need_wait_return
))
3069 /* Need to repeat the message after redrawing when:
3070 * - When restart_edit is set (otherwise there will be a delay
3071 * before redrawing).
3072 * - When the screen was scrolled but there is no wait-return
3081 col_print(buf
, buflen
, col
, vcol
)
3088 vim_snprintf((char *)buf
, buflen
, "%d", col
);
3090 vim_snprintf((char *)buf
, buflen
, "%d-%d", col
, vcol
);
3093 #if defined(FEAT_TITLE) || defined(PROTO)
3095 * put file name in title bar of window and in icon title
3098 static char_u
*lasttitle
= NULL
;
3099 static char_u
*lasticon
= NULL
;
3105 char_u
*t_str
= NULL
;
3107 char_u
*i_str
= NULL
;
3116 /* Postpone updating the title when 'lazyredraw' is set. */
3117 need_maketitle
= TRUE
;
3121 #ifdef FEAT_GUI_MACVIM
3122 gui_macvim_update_modified_flag();
3125 need_maketitle
= FALSE
;
3126 if (!p_title
&& !p_icon
)
3133 maxlen
= p_titlelen
* Columns
/ 100;
3139 if (*p_titlestring
!= NUL
)
3142 if (stl_syntax
& STL_IN_TITLE
)
3144 int use_sandbox
= FALSE
;
3145 int save_called_emsg
= called_emsg
;
3148 use_sandbox
= was_set_insecurely((char_u
*)"titlestring", 0);
3150 called_emsg
= FALSE
;
3151 build_stl_str_hl(curwin
, t_str
, sizeof(buf
),
3152 p_titlestring
, use_sandbox
,
3153 0, maxlen
, NULL
, NULL
);
3155 set_string_option_direct((char_u
*)"titlestring", -1,
3156 (char_u
*)"", OPT_FREE
, SID_ERROR
);
3157 called_emsg
|= save_called_emsg
;
3161 t_str
= p_titlestring
;
3165 /* format: "fname + (path) (1 of 2) - VIM" */
3167 if (curbuf
->b_fname
== NULL
)
3168 STRCPY(buf
, _("[No Name]"));
3171 p
= transstr(gettail(curbuf
->b_fname
));
3172 vim_strncpy(buf
, p
, IOSIZE
- 100);
3176 switch (bufIsChanged(curbuf
)
3177 + (curbuf
->b_p_ro
* 2)
3178 + (!curbuf
->b_p_ma
* 4))
3180 case 1: STRCAT(buf
, " +"); break;
3181 case 2: STRCAT(buf
, " ="); break;
3182 case 3: STRCAT(buf
, " =+"); break;
3184 case 6: STRCAT(buf
, " -"); break;
3186 case 7: STRCAT(buf
, " -+"); break;
3189 if (curbuf
->b_fname
!= NULL
)
3191 /* Get path of file, replace home dir with ~ */
3192 off
= (int)STRLEN(buf
);
3195 home_replace(curbuf
, curbuf
->b_ffname
,
3196 buf
+ off
, IOSIZE
- off
, TRUE
);
3197 #ifdef BACKSLASH_IN_FILENAME
3198 /* avoid "c:/name" to be reduced to "c" */
3199 if (isalpha(buf
[off
]) && buf
[off
+ 1] == ':')
3202 /* remove the file name */
3203 p
= gettail_sep(buf
+ off
);
3205 /* must be a help buffer */
3206 vim_strncpy(buf
+ off
, (char_u
*)_("help"),
3207 (size_t)(IOSIZE
- off
- 1));
3211 /* translate unprintable chars */
3212 p
= transstr(buf
+ off
);
3213 vim_strncpy(buf
+ off
, p
, (size_t)(IOSIZE
- off
- 1));
3218 #ifndef FEAT_GUI_MACVIM
3219 append_arg_number(curwin
, buf
, FALSE
, IOSIZE
);
3222 #if defined(FEAT_CLIENTSERVER)
3223 if (serverName
!= NULL
)
3226 STRCAT(buf
, serverName
);
3230 STRCAT(buf
, " - VIM");
3234 /* make it shorter by removing a bit in the middle */
3235 len
= vim_strsize(buf
);
3237 trunc_string(buf
, buf
, maxlen
);
3241 mustset
= ti_change(t_str
, &lasttitle
);
3246 if (*p_iconstring
!= NUL
)
3249 if (stl_syntax
& STL_IN_ICON
)
3251 int use_sandbox
= FALSE
;
3252 int save_called_emsg
= called_emsg
;
3255 use_sandbox
= was_set_insecurely((char_u
*)"iconstring", 0);
3257 called_emsg
= FALSE
;
3258 build_stl_str_hl(curwin
, i_str
, sizeof(buf
),
3259 p_iconstring
, use_sandbox
,
3262 set_string_option_direct((char_u
*)"iconstring", -1,
3263 (char_u
*)"", OPT_FREE
, SID_ERROR
);
3264 called_emsg
|= save_called_emsg
;
3268 i_str
= p_iconstring
;
3272 if (buf_spname(curbuf
) != NULL
)
3273 i_name
= (char_u
*)buf_spname(curbuf
);
3274 else /* use file name only in icon */
3275 i_name
= gettail(curbuf
->b_ffname
);
3277 /* Truncate name at 100 bytes. */
3278 len
= (int)STRLEN(i_name
);
3284 len
+= (*mb_tail_off
)(i_name
, i_name
+ len
) + 1;
3288 STRCPY(i_str
, i_name
);
3289 trans_characters(i_str
, IOSIZE
);
3293 mustset
|= ti_change(i_str
, &lasticon
);
3300 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3301 * from "str" if it does.
3302 * Return TRUE when "*last" changed.
3305 ti_change(str
, last
)
3309 if ((str
== NULL
) != (*last
== NULL
)
3310 || (str
!= NULL
&& *last
!= NULL
&& STRCMP(str
, *last
) != 0))
3316 *last
= vim_strsave(str
);
3323 * Put current window title back (used after calling a shell)
3328 mch_settitle(lasttitle
, lasticon
);
3331 # if defined(EXITFREE) || defined(PROTO)
3335 vim_free(lasttitle
);
3340 #endif /* FEAT_TITLE */
3342 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
3344 * Build a string from the status line items in "fmt".
3345 * Return length of string in screen cells.
3347 * Normally works for window "wp", except when working for 'tabline' then it
3350 * Items are drawn interspersed with the text that surrounds it
3351 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3352 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3354 * If maxwidth is not zero, the string will be filled at any middle marker
3355 * or truncated if too long, fillchar is used for all whitespace.
3358 build_stl_str_hl(wp
, out
, outlen
, fmt
, use_sandbox
, fillchar
, maxwidth
, hltab
, tabtab
)
3360 char_u
*out
; /* buffer to write into != NameBuff */
3361 size_t outlen
; /* length of out[] */
3363 int use_sandbox UNUSED
; /* "fmt" was set insecurely, use sandbox */
3366 struct stl_hlrec
*hltab
; /* return: HL attributes (can be NULL) */
3367 struct stl_hlrec
*tabtab
; /* return: tab page nrs (can be NULL) */
3381 int prevchar_isflag
;
3382 int prevchar_isitem
;
3390 int groupitem
[STL_MAX_ITEM
];
3407 } item
[STL_MAX_ITEM
];
3415 char_u
*usefmt
= fmt
;
3416 struct stl_hlrec
*sp
;
3420 * When the format starts with "%!" then evaluate it as an expression and
3421 * use the result as the actual format string.
3423 if (fmt
[0] == '%' && fmt
[1] == '!')
3425 usefmt
= eval_to_string_safe(fmt
+ 2, NULL
, use_sandbox
);
3434 /* Can't handle a multi-byte fill character yet. */
3435 else if (mb_char2len(fillchar
) > 1)
3440 * Get line & check if empty (cursorpos will show "0-1").
3441 * If inversion is possible we use it. Else '=' characters are used.
3443 linecont
= ml_get_buf(wp
->w_buffer
, wp
->w_cursor
.lnum
, FALSE
);
3444 empty_line
= (*linecont
== NUL
);
3449 prevchar_isflag
= TRUE
;
3450 prevchar_isitem
= FALSE
;
3451 for (s
= usefmt
; *s
; )
3453 if (*s
!= NUL
&& *s
!= '%')
3454 prevchar_isflag
= prevchar_isitem
= FALSE
;
3457 * Handle up to the next '%' or the end.
3459 while (*s
!= NUL
&& *s
!= '%' && p
+ 1 < out
+ outlen
)
3461 if (*s
== NUL
|| p
+ 1 >= out
+ outlen
)
3465 * Handle one '%' item.
3470 if (p
+ 1 >= out
+ outlen
)
3473 prevchar_isflag
= prevchar_isitem
= FALSE
;
3476 if (*s
== STL_MIDDLEMARK
)
3481 item
[curitem
].type
= Middle
;
3482 item
[curitem
++].start
= p
;
3485 if (*s
== STL_TRUNCMARK
)
3488 item
[curitem
].type
= Trunc
;
3489 item
[curitem
++].start
= p
;
3499 t
= item
[groupitem
[groupdepth
]].start
;
3502 if (curitem
> groupitem
[groupdepth
] + 1
3503 && item
[groupitem
[groupdepth
]].minwid
== 0)
3505 /* remove group if all items are empty */
3506 for (n
= groupitem
[groupdepth
] + 1; n
< curitem
; n
++)
3507 if (item
[n
].type
== Normal
)
3515 if (l
> item
[groupitem
[groupdepth
]].maxwid
)
3517 /* truncate, remove n bytes of text at the start */
3521 /* Find the first character that should be included. */
3523 while (l
>= item
[groupitem
[groupdepth
]].maxwid
)
3525 l
-= ptr2cells(t
+ n
);
3526 n
+= (*mb_ptr2len
)(t
+ n
);
3531 n
= (long)(p
- t
) - item
[groupitem
[groupdepth
]].maxwid
+ 1;
3534 mch_memmove(t
+ 1, t
+ n
, (size_t)(p
- (t
+ n
)));
3537 /* Fill up space left over by half a double-wide char. */
3538 while (++l
< item
[groupitem
[groupdepth
]].minwid
)
3542 /* correct the start of the items for the truncation */
3543 for (l
= groupitem
[groupdepth
] + 1; l
< curitem
; l
++)
3546 if (item
[l
].start
< t
)
3550 else if (abs(item
[groupitem
[groupdepth
]].minwid
) > l
)
3553 n
= item
[groupitem
[groupdepth
]].minwid
;
3556 /* fill by appending characters */
3558 while (l
++ < n
&& p
+ 1 < out
+ outlen
)
3563 /* fill by inserting characters */
3564 mch_memmove(t
+ n
- l
, t
, (size_t)(p
- t
));
3566 if (p
+ l
>= out
+ outlen
)
3567 l
= (long)((out
+ outlen
) - p
- 1);
3569 for (n
= groupitem
[groupdepth
] + 1; n
< curitem
; n
++)
3591 if (VIM_ISDIGIT(*s
))
3593 minwid
= (int)getdigits(&s
);
3594 if (minwid
< 0) /* overflow */
3597 if (*s
== STL_USER_HL
)
3599 item
[curitem
].type
= Highlight
;
3600 item
[curitem
].start
= p
;
3601 item
[curitem
].minwid
= minwid
> 9 ? 1 : minwid
;
3606 if (*s
== STL_TABPAGENR
|| *s
== STL_TABCLOSENR
)
3608 if (*s
== STL_TABCLOSENR
)
3612 /* %X ends the close label, go back to the previously
3613 * define tab label nr. */
3614 for (n
= curitem
- 1; n
>= 0; --n
)
3615 if (item
[n
].type
== TabPage
&& item
[n
].minwid
>= 0)
3617 minwid
= item
[n
].minwid
;
3622 /* close nrs are stored as negative values */
3625 item
[curitem
].type
= TabPage
;
3626 item
[curitem
].start
= p
;
3627 item
[curitem
].minwid
= minwid
;
3635 if (VIM_ISDIGIT(*s
))
3637 maxwid
= (int)getdigits(&s
);
3638 if (maxwid
<= 0) /* overflow */
3642 minwid
= (minwid
> 50 ? 50 : minwid
) * l
;
3645 groupitem
[groupdepth
++] = curitem
;
3646 item
[curitem
].type
= Group
;
3647 item
[curitem
].start
= p
;
3648 item
[curitem
].minwid
= minwid
;
3649 item
[curitem
].maxwid
= maxwid
;
3654 if (vim_strchr(STL_ALL
, *s
) == NULL
)
3661 /* OK - now for the real work */
3672 fillable
= FALSE
; /* don't change ' ' to fillchar */
3673 if (buf_spname(wp
->w_buffer
) != NULL
)
3674 STRCPY(NameBuff
, buf_spname(wp
->w_buffer
));
3677 t
= (opt
== STL_FULLPATH
) ? wp
->w_buffer
->b_ffname
3678 : wp
->w_buffer
->b_fname
;
3679 home_replace(wp
->w_buffer
, t
, NameBuff
, MAXPATHL
, TRUE
);
3681 trans_characters(NameBuff
, MAXPATHL
);
3682 if (opt
!= STL_FILENAME
)
3685 str
= gettail(NameBuff
);
3688 case STL_VIM_EXPR
: /* '{' */
3691 while (*s
!= '}' && *s
!= NUL
&& p
+ 1 < out
+ outlen
)
3693 if (*s
!= '}') /* missing '}' or out of space */
3700 vim_snprintf((char *)tmp
, sizeof(tmp
), "%d", curbuf
->b_fnum
);
3701 set_internal_string_var((char_u
*)"actual_curbuf", tmp
);
3706 curbuf
= wp
->w_buffer
;
3708 str
= eval_to_string_safe(p
, &t
, use_sandbox
);
3712 do_unlet((char_u
*)"g:actual_curbuf", TRUE
);
3714 if (str
!= NULL
&& *str
!= 0)
3716 if (*skipdigits(str
) == NUL
)
3718 num
= atoi((char *)str
);
3728 num
= (wp
->w_buffer
->b_ml
.ml_flags
& ML_EMPTY
)
3729 ? 0L : (long)(wp
->w_cursor
.lnum
);
3733 num
= wp
->w_buffer
->b_ml
.ml_line_count
;
3737 num
= !(State
& INSERT
) && empty_line
3738 ? 0 : (int)wp
->w_cursor
.col
+ 1;
3742 case STL_VIRTCOL_ALT
:
3743 /* In list mode virtcol needs to be recomputed */
3744 virtcol
= wp
->w_virtcol
;
3745 if (wp
->w_p_list
&& lcs_tab1
== NUL
)
3747 wp
->w_p_list
= FALSE
;
3748 getvcol(wp
, &wp
->w_cursor
, NULL
, &virtcol
, NULL
);
3749 wp
->w_p_list
= TRUE
;
3752 /* Don't display %V if it's the same as %c. */
3753 if (opt
== STL_VIRTCOL_ALT
3754 && (virtcol
== (colnr_T
)(!(State
& INSERT
) && empty_line
3755 ? 0 : (int)wp
->w_cursor
.col
+ 1)))
3757 num
= (long)virtcol
;
3760 case STL_PERCENTAGE
:
3761 num
= (int)(((long)wp
->w_cursor
.lnum
* 100L) /
3762 (long)wp
->w_buffer
->b_ml
.ml_line_count
);
3765 case STL_ALTPERCENT
:
3767 get_rel_pos(wp
, str
, TMPLEN
);
3770 case STL_ARGLISTSTAT
:
3773 if (append_arg_number(wp
, tmp
, (int)sizeof(tmp
), FALSE
))
3779 if (get_keymap_str(wp
, tmp
, TMPLEN
))
3783 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
3784 num
= printer_page_num
;
3791 num
= wp
->w_buffer
->b_fnum
;
3798 l
= ml_find_line_or_offset(wp
->w_buffer
, wp
->w_cursor
.lnum
, NULL
);
3799 num
= (wp
->w_buffer
->b_ml
.ml_flags
& ML_EMPTY
) || l
< 0 ?
3800 0L : l
+ 1 + (!(State
& INSERT
) && empty_line
?
3801 0 : (int)wp
->w_cursor
.col
);
3808 if (wp
->w_cursor
.col
> (colnr_T
)STRLEN(linecont
))
3813 num
= (*mb_ptr2char
)(linecont
+ wp
->w_cursor
.col
);
3815 num
= linecont
[wp
->w_cursor
.col
];
3820 else if (num
== CAR
&& get_fileformat(wp
->w_buffer
) == EOL_MAC
)
3825 case STL_ROFLAG_ALT
:
3827 if (wp
->w_buffer
->b_p_ro
)
3828 str
= (char_u
*)((opt
== STL_ROFLAG_ALT
) ? ",RO" : "[RO]");
3832 case STL_HELPFLAG_ALT
:
3834 if (wp
->w_buffer
->b_help
)
3835 str
= (char_u
*)((opt
== STL_HELPFLAG_ALT
) ? ",HLP"
3841 if (*wp
->w_buffer
->b_p_ft
!= NUL
3842 && STRLEN(wp
->w_buffer
->b_p_ft
) < TMPLEN
- 3)
3844 vim_snprintf((char *)tmp
, sizeof(tmp
), "[%s]",
3845 wp
->w_buffer
->b_p_ft
);
3850 case STL_FILETYPE_ALT
:
3852 if (*wp
->w_buffer
->b_p_ft
!= NUL
3853 && STRLEN(wp
->w_buffer
->b_p_ft
) < TMPLEN
- 2)
3855 vim_snprintf((char *)tmp
, sizeof(tmp
), ",%s",
3856 wp
->w_buffer
->b_p_ft
);
3857 for (t
= tmp
; *t
!= 0; t
++)
3858 *t
= TOUPPER_LOC(*t
);
3864 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
3865 case STL_PREVIEWFLAG
:
3866 case STL_PREVIEWFLAG_ALT
:
3869 str
= (char_u
*)((opt
== STL_PREVIEWFLAG_ALT
) ? ",PRV"
3875 case STL_MODIFIED_ALT
:
3877 switch ((opt
== STL_MODIFIED_ALT
)
3878 + bufIsChanged(wp
->w_buffer
) * 2
3879 + (!wp
->w_buffer
->b_p_ma
) * 4)
3881 case 2: str
= (char_u
*)"[+]"; break;
3882 case 3: str
= (char_u
*)",+"; break;
3883 case 4: str
= (char_u
*)"[-]"; break;
3884 case 5: str
= (char_u
*)",-"; break;
3885 case 6: str
= (char_u
*)"[+-]"; break;
3886 case 7: str
= (char_u
*)",+-"; break;
3892 while (*s
!= '#' && *s
!= NUL
)
3896 item
[curitem
].type
= Highlight
;
3897 item
[curitem
].start
= p
;
3898 item
[curitem
].minwid
= -syn_namen2id(t
, (int)(s
- t
));
3905 item
[curitem
].start
= p
;
3906 item
[curitem
].type
= Normal
;
3907 if (str
!= NULL
&& *str
)
3913 && ((!prevchar_isitem
&& *t
== ',')
3914 || (prevchar_isflag
&& *t
== ' ')))
3916 prevchar_isflag
= TRUE
;
3920 prevchar_isitem
= TRUE
;
3928 t
+= (*mb_ptr2len
)(t
);
3932 l
-= byte2cells(*t
++);
3933 if (p
+ 1 >= out
+ outlen
)
3939 for (; l
< minwid
&& p
+ 1 < out
+ outlen
; l
++)
3941 /* Don't put a "-" in front of a digit. */
3942 if (l
+ 1 == minwid
&& fillchar
== '-' && VIM_ISDIGIT(*t
))
3951 while (*t
&& p
+ 1 < out
+ outlen
)
3954 /* Change a space by fillchar, unless fillchar is '-' and a
3956 if (fillable
&& p
[-1] == ' '
3957 && (!VIM_ISDIGIT(*t
) || fillchar
!= '-'))
3960 for (; l
< minwid
&& p
+ 1 < out
+ outlen
; l
++)
3965 int nbase
= (base
== 'D' ? 10 : (base
== 'O' ? 8 : 16));
3968 if (p
+ 20 >= out
+ outlen
)
3969 break; /* not sufficient space */
3970 prevchar_isitem
= TRUE
;
3972 if (opt
== STL_VIRTCOL_ALT
)
3981 *t
++ = nbase
== 16 ? base
: (char_u
)(nbase
== 8 ? 'o' : 'd');
3984 for (n
= num
, l
= 1; n
>= nbase
; n
/= nbase
)
3986 if (opt
== STL_VIRTCOL_ALT
)
3992 while (l
-- > maxwid
)
3998 vim_snprintf((char *)p
, outlen
- (p
- out
), (char *)nstr
,
4002 vim_snprintf((char *)p
, outlen
- (p
- out
), (char *)nstr
,
4007 item
[curitem
].type
= Empty
;
4009 if (opt
== STL_VIM_EXPR
)
4012 if (num
>= 0 || (!itemisflag
&& str
&& *str
))
4013 prevchar_isflag
= FALSE
; /* Item not NULL, but not a flag */
4024 width
= vim_strsize(out
);
4025 if (maxwidth
> 0 && width
> maxwidth
)
4027 /* Result is too long, must truncate somewhere. */
4033 for ( ; l
< itemcnt
; l
++)
4034 if (item
[l
].type
== Trunc
)
4036 /* Truncate at %< item. */
4042 /* No %< item, truncate first item. */
4048 if (width
- vim_strsize(s
) >= maxwidth
)
4050 /* Truncation mark is beyond max length */
4058 width
+= ptr2cells(s
);
4059 if (width
>= maxwidth
)
4061 s
+= (*mb_ptr2len
)(s
);
4063 /* Fill up for half a double-wide character. */
4064 while (++width
< maxwidth
)
4069 s
= out
+ maxwidth
- 1;
4070 for (l
= 0; l
< itemcnt
; l
++)
4071 if (item
[l
].start
> s
)
4083 while (width
>= maxwidth
)
4085 width
-= ptr2cells(s
+ n
);
4086 n
+= (*mb_ptr2len
)(s
+ n
);
4091 n
= width
- maxwidth
+ 1;
4096 /* Fill up for half a double-wide character. */
4097 while (++width
< maxwidth
)
4104 --n
; /* count the '<' */
4105 for (; l
< itemcnt
; l
++)
4107 if (item
[l
].start
- n
>= s
)
4115 else if (width
< maxwidth
&& STRLEN(out
) + maxwidth
- width
+ 1 < outlen
)
4117 /* Apply STL_MIDDLE if any */
4118 for (l
= 0; l
< itemcnt
; l
++)
4119 if (item
[l
].type
== Middle
)
4123 p
= item
[l
].start
+ maxwidth
- width
;
4124 STRMOVE(p
, item
[l
].start
);
4125 for (s
= item
[l
].start
; s
< p
; s
++)
4127 for (l
++; l
< itemcnt
; l
++)
4128 item
[l
].start
+= maxwidth
- width
;
4133 /* Store the info about highlighting. */
4137 for (l
= 0; l
< itemcnt
; l
++)
4139 if (item
[l
].type
== Highlight
)
4141 sp
->start
= item
[l
].start
;
4142 sp
->userhl
= item
[l
].minwid
;
4150 /* Store the info about tab pages labels. */
4154 for (l
= 0; l
< itemcnt
; l
++)
4156 if (item
[l
].type
== TabPage
)
4158 sp
->start
= item
[l
].start
;
4159 sp
->userhl
= item
[l
].minwid
;
4169 #endif /* FEAT_STL_OPT */
4171 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4172 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
4174 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4175 * using "Top", "Bot" or "All" when appropriate.
4178 get_rel_pos(wp
, buf
, buflen
)
4183 long above
; /* number of lines above window */
4184 long below
; /* number of lines below window */
4186 above
= wp
->w_topline
- 1;
4188 above
+= diff_check_fill(wp
, wp
->w_topline
) - wp
->w_topfill
;
4190 below
= wp
->w_buffer
->b_ml
.ml_line_count
- wp
->w_botline
+ 1;
4192 vim_strncpy(buf
, (char_u
*)(above
== 0 ? _("All") : _("Bot")),
4193 (size_t)(buflen
- 1));
4194 else if (above
<= 0)
4195 vim_strncpy(buf
, (char_u
*)_("Top"), (size_t)(buflen
- 1));
4197 vim_snprintf((char *)buf
, (size_t)buflen
, "%2d%%", above
> 1000000L
4198 ? (int)(above
/ ((above
+ below
) / 100L))
4199 : (int)(above
* 100L / (above
+ below
)));
4204 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
4205 * Return TRUE if it was appended.
4208 append_arg_number(wp
, buf
, buflen
, add_file
)
4212 int add_file
; /* Add "file" before the arg number */
4216 if (ARGCOUNT
<= 1) /* nothing to do */
4219 p
= buf
+ STRLEN(buf
); /* go to the end of the buffer */
4220 if (p
- buf
+ 35 >= buflen
) /* getting too long */
4229 vim_snprintf((char *)p
, (size_t)(buflen
- (p
- buf
)),
4230 wp
->w_arg_idx_invalid
? "(%d) of %d)"
4231 : "%d of %d)", wp
->w_arg_idx
+ 1, ARGCOUNT
);
4236 * If fname is not a full path, make it a full path.
4237 * Returns pointer to allocated memory (NULL for failure).
4244 * Force expanding the path always for Unix, because symbolic links may
4245 * mess up the full path name, even though it starts with a '/'.
4246 * Also expand when there is ".." in the file name, try to remove it,
4247 * because "c:/src/../README" is equal to "c:/README".
4248 * Similarly "c:/src//file" is equal to "c:/src/file".
4249 * For MS-Windows also expand names like "longna~1" to "longname".
4252 return FullName_save(fname
, TRUE
);
4254 if (!vim_isAbsName(fname
)
4255 || strstr((char *)fname
, "..") != NULL
4256 || strstr((char *)fname
, "//") != NULL
4257 # ifdef BACKSLASH_IN_FILENAME
4258 || strstr((char *)fname
, "\\\\") != NULL
4260 # if defined(MSWIN) || defined(DJGPP)
4261 || vim_strchr(fname
, '~') != NULL
4264 return FullName_save(fname
, FALSE
);
4266 fname
= vim_strsave(fname
);
4268 # ifdef USE_FNAME_CASE
4269 # ifdef USE_LONG_FNAME
4274 fname_case(fname
, 0); /* set correct case for file name */
4283 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4284 * "ffname" becomes a pointer to allocated memory (or NULL).
4287 fname_expand(buf
, ffname
, sfname
)
4292 if (*ffname
== NULL
) /* if no file name given, nothing to do */
4294 if (*sfname
== NULL
) /* if no short file name given, use ffname */
4296 *ffname
= fix_fname(*ffname
); /* expand to full path */
4298 #ifdef FEAT_SHORTCUT
4303 /* If the file name is a shortcut file, use the file it links to. */
4304 rfname
= mch_resolve_shortcut(*ffname
);
4316 * Get the file name for an argument list entry.
4324 /* Use the name from the associated buffer if it exists. */
4325 bp
= buflist_findnr(aep
->ae_fnum
);
4326 if (bp
== NULL
|| bp
->b_fname
== NULL
)
4327 return aep
->ae_fname
;
4331 #if defined(FEAT_WINDOWS) || defined(PROTO)
4333 * do_arg_all(): Open up to 'count' windows, one for each argument.
4336 do_arg_all(count
, forceit
, keep_tabs
)
4338 int forceit
; /* hide buffers in current windows */
4339 int keep_tabs
; /* keep current tabs, for ":tab drop file" */
4343 char_u
*opened
; /* array of flags for which args are open */
4344 int opened_len
; /* length of opened[] */
4345 int use_firstwin
= FALSE
; /* use first window for arglist */
4348 alist_T
*alist
; /* argument list to be used */
4351 int had_tab
= cmdmod
.tab
;
4352 win_T
*new_curwin
= NULL
;
4353 tabpage_T
*new_curtab
= NULL
;
4357 /* Don't give an error message. We don't want it when the ":all"
4358 * command is in the .vimrc. */
4363 opened_len
= ARGCOUNT
;
4364 opened
= alloc_clear((unsigned)opened_len
);
4369 need_mouse_correct
= TRUE
;
4373 * Try closing all windows that are not in the argument list.
4374 * Also close windows that are not full width;
4375 * When 'hidden' or "forceit" set the buffer becomes hidden.
4376 * Windows that have a changed buffer and can't be hidden won't be closed.
4377 * When the ":tab" modifier was used do this for all tab pages.
4380 goto_tabpage_tp(first_tabpage
);
4383 tpnext
= curtab
->tp_next
;
4384 for (wp
= firstwin
; wp
!= NULL
; wp
= wpnext
)
4386 wpnext
= wp
->w_next
;
4388 if (buf
->b_ffname
== NULL
4389 || buf
->b_nwindows
> 1
4390 #ifdef FEAT_VERTSPLIT
4391 || wp
->w_width
!= Columns
4397 /* check if the buffer in this window is in the arglist */
4398 for (i
= 0; i
< ARGCOUNT
; ++i
)
4400 if (ARGLIST
[i
].ae_fnum
== buf
->b_fnum
4401 || fullpathcmp(alist_name(&ARGLIST
[i
]),
4402 buf
->b_ffname
, TRUE
) & FPC_SAME
)
4410 new_curtab
= curtab
;
4413 if (wp
->w_alist
!= curwin
->w_alist
)
4415 /* Use the current argument list for all windows
4416 * containing a file from it. */
4417 alist_unlink(wp
->w_alist
);
4418 wp
->w_alist
= curwin
->w_alist
;
4419 ++wp
->w_alist
->al_refcount
;
4427 if (i
== ARGCOUNT
&& !keep_tabs
) /* close this window */
4429 if (P_HID(buf
) || forceit
|| buf
->b_nwindows
> 1
4430 || !bufIsChanged(buf
))
4432 /* If the buffer was changed, and we would like to hide it,
4433 * try autowriting. */
4434 if (!P_HID(buf
) && buf
->b_nwindows
<= 1
4435 && bufIsChanged(buf
))
4437 (void)autowrite(buf
, FALSE
);
4439 /* check if autocommands removed the window */
4440 if (!win_valid(wp
) || !buf_valid(buf
))
4442 wpnext
= firstwin
; /* start all over... */
4448 /* don't close last window */
4449 if (firstwin
== lastwin
&& first_tabpage
->tp_next
== NULL
)
4451 use_firstwin
= TRUE
;
4455 win_close(wp
, !P_HID(buf
) && !bufIsChanged(buf
));
4456 # ifdef FEAT_AUTOCMD
4457 /* check if autocommands removed the next window */
4458 if (!win_valid(wpnext
))
4459 wpnext
= firstwin
; /* start all over... */
4467 /* Without the ":tab" modifier only do the current tab page. */
4468 if (had_tab
== 0 || tpnext
== NULL
)
4471 # ifdef FEAT_AUTOCMD
4472 /* check if autocommands removed the next tab page */
4473 if (!valid_tabpage(tpnext
))
4474 tpnext
= first_tabpage
; /* start all over...*/
4476 goto_tabpage_tp(tpnext
);
4480 * Open a window for files in the argument list that don't have one.
4481 * ARGCOUNT may change while doing this, because of autocommands.
4483 if (count
> ARGCOUNT
|| count
<= 0)
4486 /* Autocommands may do anything to the argument list. Make sure it's not
4487 * freed while we are working here by "locking" it. We still have to
4488 * watch out for its size to be changed. */
4489 alist
= curwin
->w_alist
;
4490 ++alist
->al_refcount
;
4493 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4497 win_enter(lastwin
, FALSE
);
4499 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4500 * leaving an empty tab page when executed locally. */
4501 if (keep_tabs
&& bufempty() && curbuf
->b_nwindows
== 1
4502 && curbuf
->b_ffname
== NULL
&& !curbuf
->b_changed
)
4503 use_firstwin
= TRUE
;
4506 for (i
= 0; i
< count
&& i
< alist
->al_ga
.ga_len
&& !got_int
; ++i
)
4508 if (alist
== &global_alist
&& i
== global_alist
.al_ga
.ga_len
- 1)
4509 arg_had_last
= TRUE
;
4510 if (i
< opened_len
&& opened
[i
])
4512 /* Move the already present window to below the current window */
4513 if (curwin
->w_arg_idx
!= i
)
4515 for (wpnext
= firstwin
; wpnext
!= NULL
; wpnext
= wpnext
->w_next
)
4517 if (wpnext
->w_arg_idx
== i
)
4519 win_move_after(wpnext
, curwin
);
4525 else if (split_ret
== OK
)
4527 if (!use_firstwin
) /* split current window */
4530 p_ea
= TRUE
; /* use space from all windows */
4531 split_ret
= win_split(0, WSP_ROOM
| WSP_BELOW
);
4533 if (split_ret
== FAIL
)
4537 else /* first window: do autocmd for leaving this buffer */
4544 curwin
->w_arg_idx
= i
;
4547 new_curwin
= curwin
;
4548 new_curtab
= curtab
;
4550 (void)do_ecmd(0, alist_name(&AARGLIST(alist
)[i
]), NULL
, NULL
,
4552 ((P_HID(curwin
->w_buffer
)
4553 || bufIsChanged(curwin
->w_buffer
)) ? ECMD_HIDE
: 0)
4554 + ECMD_OLDBUF
, curwin
);
4559 use_firstwin
= FALSE
;
4563 /* When ":tab" was used open a new tab for a new window repeatedly. */
4564 if (had_tab
> 0 && tabpage_index(NULL
) <= p_tpm
)
4568 /* Remove the "lock" on the argument list. */
4569 alist_unlink(alist
);
4574 /* to window with first arg */
4575 if (valid_tabpage(new_curtab
))
4576 goto_tabpage_tp(new_curtab
);
4577 if (win_valid(new_curwin
))
4578 win_enter(new_curwin
, FALSE
);
4586 # if defined(FEAT_LISTCMDS) || defined(PROTO)
4588 * Open a window for a number of buffers.
4600 int count
; /* Maximum number of windows to open. */
4601 int all
; /* When TRUE also load inactive buffers. */
4603 int had_tab
= cmdmod
.tab
;
4607 if (eap
->addr_count
== 0) /* make as many windows as possible */
4610 count
= eap
->line2
; /* make as many windows as specified */
4611 if (eap
->cmdidx
== CMD_unhide
|| eap
->cmdidx
== CMD_sunhide
)
4619 need_mouse_correct
= TRUE
;
4623 * Close superfluous windows (two windows for the same buffer).
4624 * Also close windows that are not full-width.
4628 goto_tabpage_tp(first_tabpage
);
4632 tpnext
= curtab
->tp_next
;
4633 for (wp
= firstwin
; wp
!= NULL
; wp
= wpnext
)
4635 wpnext
= wp
->w_next
;
4636 if ((wp
->w_buffer
->b_nwindows
> 1
4637 #ifdef FEAT_VERTSPLIT
4638 || ((cmdmod
.split
& WSP_VERT
)
4639 ? wp
->w_height
+ wp
->w_status_height
< Rows
- p_ch
4641 : wp
->w_width
!= Columns
)
4644 || (had_tab
> 0 && wp
!= firstwin
)
4646 ) && firstwin
!= lastwin
)
4648 win_close(wp
, FALSE
);
4650 wpnext
= firstwin
; /* just in case an autocommand does
4651 something strange with windows */
4652 tpnext
= first_tabpage
; /* start all over...*/
4661 /* Without the ":tab" modifier only do the current tab page. */
4662 if (had_tab
== 0 || tpnext
== NULL
)
4664 goto_tabpage_tp(tpnext
);
4669 * Go through the buffer list. When a buffer doesn't have a window yet,
4670 * open one. Otherwise move the window to the right position.
4671 * Watch out for autocommands that delete buffers or windows!
4674 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4677 win_enter(lastwin
, FALSE
);
4681 for (buf
= firstbuf
; buf
!= NULL
&& open_wins
< count
; buf
= buf
->b_next
)
4683 /* Check if this buffer needs a window */
4684 if ((!all
&& buf
->b_ml
.ml_mfp
== NULL
) || !buf
->b_p_bl
)
4690 /* With the ":tab" modifier don't move the window. */
4691 if (buf
->b_nwindows
> 0)
4692 wp
= lastwin
; /* buffer has a window, skip it */
4699 /* Check if this buffer already has a window */
4700 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
4701 if (wp
->w_buffer
== buf
)
4703 /* If the buffer already has a window, move it */
4705 win_move_after(wp
, curwin
);
4708 if (wp
== NULL
&& split_ret
== OK
)
4710 /* Split the window and put the buffer in it */
4712 p_ea
= TRUE
; /* use space from all windows */
4713 split_ret
= win_split(0, WSP_ROOM
| WSP_BELOW
);
4716 if (split_ret
== FAIL
)
4719 /* Open the buffer in this window. */
4720 #if defined(HAS_SWAP_EXISTS_ACTION)
4721 swap_exists_action
= SEA_DIALOG
;
4723 set_curbuf(buf
, DOBUF_GOTO
);
4725 if (!buf_valid(buf
)) /* autocommands deleted the buffer!!! */
4727 #if defined(HAS_SWAP_EXISTS_ACTION)
4728 swap_exists_action
= SEA_NONE
;
4733 #if defined(HAS_SWAP_EXISTS_ACTION)
4734 if (swap_exists_action
== SEA_QUIT
)
4736 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4739 /* Reset the error/interrupt/exception state here so that
4740 * aborting() returns FALSE when closing a window. */
4744 /* User selected Quit at ATTENTION prompt; close this window. */
4745 win_close(curwin
, TRUE
);
4747 swap_exists_action
= SEA_NONE
;
4748 swap_exists_did_quit
= TRUE
;
4750 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4751 /* Restore the error/interrupt/exception state if not
4752 * discarded by a new aborting error, interrupt, or uncaught
4758 handle_swap_exists(NULL
);
4765 (void)vgetc(); /* only break the file loading, not the rest */
4769 /* Autocommands deleted the buffer or aborted script processing!!! */
4774 /* When ":tab" was used open a new tab for a new window repeatedly. */
4775 if (had_tab
> 0 && tabpage_index(NULL
) <= p_tpm
)
4782 win_enter(firstwin
, FALSE
); /* back to first window */
4788 * Close superfluous windows.
4790 for (wp
= lastwin
; open_wins
> count
; )
4792 r
= (P_HID(wp
->w_buffer
) || !bufIsChanged(wp
->w_buffer
)
4793 || autowrite(wp
->w_buffer
, FALSE
) == OK
);
4797 /* BufWrite Autocommands made the window invalid, start over */
4804 win_close(wp
, !P_HID(wp
->w_buffer
));
4816 # endif /* FEAT_LISTCMDS */
4818 #endif /* FEAT_WINDOWS */
4820 static int chk_modeline
__ARGS((linenr_T
, int));
4823 * do_modelines() - process mode lines for the current file
4826 * OPT_WINONLY only set options local to window
4827 * OPT_NOWIN don't set options local to window
4829 * Returns immediately if the "ml" option isn't set.
4837 static int entered
= 0;
4839 if (!curbuf
->b_p_ml
|| (nmlines
= (int)p_mls
) == 0)
4842 /* Disallow recursive entry here. Can happen when executing a modeline
4843 * triggers an autocommand, which reloads modelines with a ":do". */
4848 for (lnum
= 1; lnum
<= curbuf
->b_ml
.ml_line_count
&& lnum
<= nmlines
;
4850 if (chk_modeline(lnum
, flags
) == FAIL
)
4853 for (lnum
= curbuf
->b_ml
.ml_line_count
; lnum
> 0 && lnum
> nmlines
4854 && lnum
> curbuf
->b_ml
.ml_line_count
- nmlines
; --lnum
)
4855 if (chk_modeline(lnum
, flags
) == FAIL
)
4860 #include "version.h" /* for version number */
4863 * chk_modeline() - check a single line for a mode string
4864 * Return FAIL if an error encountered.
4867 chk_modeline(lnum
, flags
)
4869 int flags
; /* Same as for do_modelines(). */
4873 char_u
*linecopy
; /* local copy of any modeline found */
4878 char_u
*save_sourcing_name
;
4879 linenr_T save_sourcing_lnum
;
4885 for (s
= ml_get(lnum
); *s
!= NUL
; ++s
)
4887 if (prev
== -1 || vim_isspace(prev
))
4889 if ((prev
!= -1 && STRNCMP(s
, "ex:", (size_t)3) == 0)
4890 || STRNCMP(s
, "vi:", (size_t)3) == 0)
4892 if (STRNCMP(s
, "vim", 3) == 0)
4894 if (s
[3] == '<' || s
[3] == '=' || s
[3] == '>')
4898 vers
= getdigits(&e
);
4901 || (VIM_VERSION_100
>= vers
&& isdigit(s
[3]))
4902 || (VIM_VERSION_100
< vers
&& s
[3] == '<')
4903 || (VIM_VERSION_100
> vers
&& s
[3] == '>')
4904 || (VIM_VERSION_100
== vers
&& s
[3] == '=')))
4913 do /* skip over "ex:", "vi:" or "vim:" */
4915 while (s
[-1] != ':');
4917 s
= linecopy
= vim_strsave(s
); /* copy the line, it will change */
4918 if (linecopy
== NULL
)
4921 save_sourcing_lnum
= sourcing_lnum
;
4922 save_sourcing_name
= sourcing_name
;
4923 sourcing_lnum
= lnum
; /* prepare for emsg() */
4924 sourcing_name
= (char_u
*)"modelines";
4927 while (end
== FALSE
)
4934 * Find end of set command: ':' or end of line.
4935 * Skip over "\:", replacing it with ":".
4937 for (e
= s
; *e
!= ':' && *e
!= NUL
; ++e
)
4938 if (e
[0] == '\\' && e
[1] == ':')
4944 * If there is a "set" command, require a terminating ':' and
4945 * ignore the stuff after the ':'.
4946 * "vi:set opt opt opt: foo" -- foo not interpreted
4947 * "vi:opt opt opt: foo" -- foo interpreted
4948 * Accept "se" for compatibility with Elvis.
4950 if (STRNCMP(s
, "set ", (size_t)4) == 0
4951 || STRNCMP(s
, "se ", (size_t)3) == 0)
4953 if (*e
!= ':') /* no terminating ':'? */
4956 s
= vim_strchr(s
, ' ') + 1;
4958 *e
= NUL
; /* truncate the set command */
4960 if (*s
!= NUL
) /* skip over an empty "::" */
4963 save_SID
= current_SID
;
4964 current_SID
= SID_MODELINE
;
4966 retval
= do_set(s
, OPT_MODELINE
| OPT_LOCAL
| flags
);
4968 current_SID
= save_SID
;
4970 if (retval
== FAIL
) /* stop if error found */
4973 s
= e
+ 1; /* advance to next part */
4976 sourcing_lnum
= save_sourcing_lnum
;
4977 sourcing_name
= save_sourcing_name
;
4984 #if defined(FEAT_VIMINFO) || defined(PROTO)
4986 read_viminfo_bufferlist(virp
, writing
)
4997 /* Handle long line and escaped characters. */
4998 xline
= viminfo_readstring(virp
, 1, FALSE
);
5000 /* don't read in if there are files on the command-line or if writing: */
5001 if (xline
!= NULL
&& !writing
&& ARGCOUNT
== 0
5002 && find_viminfo_parameter('%') != NULL
)
5004 /* Format is: <fname> Tab <lnum> Tab <col>.
5005 * Watch out for a Tab in the file name, work from the end. */
5008 tab
= vim_strrchr(xline
, '\t');
5012 col
= (colnr_T
)atoi((char *)tab
);
5013 tab
= vim_strrchr(xline
, '\t');
5017 lnum
= atol((char *)tab
);
5021 /* Expand "~/" in the file name at "line + 1" to a full path.
5022 * Then try shortening it by comparing with the current directory */
5023 expand_env(xline
, NameBuff
, MAXPATHL
);
5024 sfname
= shorten_fname1(NameBuff
);
5026 buf
= buflist_new(NameBuff
, sfname
, (linenr_T
)0, BLN_LISTED
);
5027 if (buf
!= NULL
) /* just in case... */
5029 buf
->b_last_cursor
.lnum
= lnum
;
5030 buf
->b_last_cursor
.col
= col
;
5031 buflist_setfpos(buf
, curwin
, lnum
, col
, FALSE
);
5036 return viminfo_readline(virp
);
5040 write_viminfo_bufferlist(fp
)
5052 if (find_viminfo_parameter('%') == NULL
)
5055 /* Without a number -1 is returned: do all buffers. */
5056 max_buffers
= get_viminfo_parameter('%');
5058 /* Allocate room for the file name, lnum and col. */
5059 #define LINE_BUF_LEN (MAXPATHL + 40)
5060 line
= alloc(LINE_BUF_LEN
);
5065 FOR_ALL_TAB_WINDOWS(tp
, win
)
5066 set_last_cursor(win
);
5068 set_last_cursor(curwin
);
5071 fprintf(fp
, _("\n# Buffer list:\n"));
5072 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
5074 if (buf
->b_fname
== NULL
5076 #ifdef FEAT_QUICKFIX
5079 || removable(buf
->b_ffname
))
5082 if (max_buffers
-- == 0)
5085 home_replace(NULL
, buf
->b_ffname
, line
, MAXPATHL
, TRUE
);
5087 vim_snprintf((char *)line
+ len
, len
- LINE_BUF_LEN
, "\t%ld\t%d",
5088 (long)buf
->b_last_cursor
.lnum
,
5089 buf
->b_last_cursor
.col
);
5090 viminfo_writestring(fp
, line
);
5098 * Return special buffer name.
5099 * Returns NULL when the buffer has a normal file name.
5105 #if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5106 if (bt_quickfix(buf
))
5112 * For location list window, w_llist_ref points to the location list.
5113 * For quickfix window, w_llist_ref is NULL.
5115 FOR_ALL_TAB_WINDOWS(tp
, win
)
5116 if (win
->w_buffer
== buf
)
5119 if (win
!= NULL
&& win
->w_llist_ref
!= NULL
)
5120 return _("[Location List]");
5122 return _("[Quickfix List]");
5125 #ifdef FEAT_QUICKFIX
5126 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5127 * contains the name as specified by the user */
5130 if (buf
->b_sfname
!= NULL
)
5131 return (char *)buf
->b_sfname
;
5132 return _("[Scratch]");
5135 if (buf
->b_fname
== NULL
)
5136 return _("[No Name]");
5141 #if defined(FEAT_SIGNS) || defined(PROTO)
5143 * Insert the sign into the signlist.
5146 insert_sign(buf
, prev
, next
, id
, lnum
, typenr
)
5147 buf_T
*buf
; /* buffer to store sign in */
5148 signlist_T
*prev
; /* previous sign entry */
5149 signlist_T
*next
; /* next sign entry */
5150 int id
; /* sign ID */
5151 linenr_T lnum
; /* line number which gets the mark */
5152 int typenr
; /* typenr of sign we are adding */
5154 signlist_T
*newsign
;
5156 newsign
= (signlist_T
*)lalloc((long_u
)sizeof(signlist_T
), FALSE
);
5157 if (newsign
!= NULL
)
5160 newsign
->lnum
= lnum
;
5161 newsign
->typenr
= typenr
;
5162 newsign
->next
= next
;
5163 #ifdef FEAT_NETBEANS_INTG
5164 newsign
->prev
= prev
;
5166 next
->prev
= newsign
;
5171 /* When adding first sign need to redraw the windows to create the
5172 * column for signs. */
5173 if (buf
->b_signlist
== NULL
)
5175 redraw_buf_later(buf
, NOT_VALID
);
5176 changed_cline_bef_curs();
5179 /* first sign in signlist */
5180 buf
->b_signlist
= newsign
;
5183 prev
->next
= newsign
;
5188 * Add the sign into the signlist. Find the right spot to do it though.
5191 buf_addsign(buf
, id
, lnum
, typenr
)
5192 buf_T
*buf
; /* buffer to store sign in */
5193 int id
; /* sign ID */
5194 linenr_T lnum
; /* line number which gets the mark */
5195 int typenr
; /* typenr of sign we are adding */
5197 signlist_T
*sign
; /* a sign in the signlist */
5198 signlist_T
*prev
; /* the previous sign */
5201 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5203 if (lnum
== sign
->lnum
&& id
== sign
->id
)
5205 sign
->typenr
= typenr
;
5209 #ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5214 #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5215 /* XXX - GRP: Is this because of sign slide problem? Or is it
5216 * really needed? Or is it because we allow multiple signs per
5217 * line? If so, should I add that feature to FEAT_SIGNS?
5219 while (prev
!= NULL
&& prev
->lnum
== lnum
)
5222 sign
= buf
->b_signlist
;
5226 insert_sign(buf
, prev
, sign
, id
, lnum
, typenr
);
5231 #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5232 /* XXX - GRP: See previous comment */
5233 while (prev
!= NULL
&& prev
->lnum
== lnum
)
5236 sign
= buf
->b_signlist
;
5240 insert_sign(buf
, prev
, sign
, id
, lnum
, typenr
);
5246 buf_change_sign_type(buf
, markId
, typenr
)
5247 buf_T
*buf
; /* buffer to store sign in */
5248 int markId
; /* sign ID */
5249 int typenr
; /* typenr of sign we are adding */
5251 signlist_T
*sign
; /* a sign in the signlist */
5253 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5255 if (sign
->id
== markId
)
5257 sign
->typenr
= typenr
;
5266 buf_getsigntype(buf
, lnum
, type
)
5269 int type
; /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
5271 signlist_T
*sign
; /* a sign in a b_signlist */
5273 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5274 if (sign
->lnum
== lnum
5275 && (type
== SIGN_ANY
5276 # ifdef FEAT_SIGN_ICONS
5277 || (type
== SIGN_ICON
5278 && sign_get_image(sign
->typenr
) != NULL
)
5280 || (type
== SIGN_TEXT
5281 && sign_get_text(sign
->typenr
) != NULL
)
5282 || (type
== SIGN_LINEHL
5283 && sign_get_attr(sign
->typenr
, TRUE
) != 0)))
5284 return sign
->typenr
;
5290 buf_delsign(buf
, id
)
5291 buf_T
*buf
; /* buffer sign is stored in */
5292 int id
; /* sign id */
5294 signlist_T
**lastp
; /* pointer to pointer to current sign */
5295 signlist_T
*sign
; /* a sign in a b_signlist */
5296 signlist_T
*next
; /* the next sign in a b_signlist */
5297 linenr_T lnum
; /* line number whose sign was deleted */
5299 lastp
= &buf
->b_signlist
;
5301 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= next
)
5307 #ifdef FEAT_NETBEANS_INTG
5309 next
->prev
= sign
->prev
;
5316 lastp
= &sign
->next
;
5319 /* When deleted the last sign need to redraw the windows to remove the
5321 if (buf
->b_signlist
== NULL
)
5323 redraw_buf_later(buf
, NOT_VALID
);
5324 changed_cline_bef_curs();
5332 * Find the line number of the sign with the requested id. If the sign does
5333 * not exist, return 0 as the line number. This will still let the correct file
5337 buf_findsign(buf
, id
)
5338 buf_T
*buf
; /* buffer to store sign in */
5339 int id
; /* sign ID */
5341 signlist_T
*sign
; /* a sign in the signlist */
5343 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5351 buf_findsign_id(buf
, lnum
)
5352 buf_T
*buf
; /* buffer whose sign we are searching for */
5353 linenr_T lnum
; /* line number of sign */
5355 signlist_T
*sign
; /* a sign in the signlist */
5357 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5358 if (sign
->lnum
== lnum
)
5365 # if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5366 /* see if a given type of sign exists on a specific line */
5368 buf_findsigntype_id(buf
, lnum
, typenr
)
5369 buf_T
*buf
; /* buffer whose sign we are searching for */
5370 linenr_T lnum
; /* line number of sign */
5371 int typenr
; /* sign type number */
5373 signlist_T
*sign
; /* a sign in the signlist */
5375 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5376 if (sign
->lnum
== lnum
&& sign
->typenr
== typenr
)
5383 # if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5384 /* return the number of icons on the given line */
5386 buf_signcount(buf
, lnum
)
5390 signlist_T
*sign
; /* a sign in the signlist */
5393 for (sign
= buf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5394 if (sign
->lnum
== lnum
)
5395 if (sign_get_image(sign
->typenr
) != NULL
)
5400 # endif /* FEAT_SIGN_ICONS */
5401 # endif /* FEAT_NETBEANS_INTG */
5405 * Delete signs in buffer "buf".
5408 buf_delete_signs(buf
)
5413 while (buf
->b_signlist
!= NULL
)
5415 next
= buf
->b_signlist
->next
;
5416 vim_free(buf
->b_signlist
);
5417 buf
->b_signlist
= next
;
5422 * Delete all signs in all buffers.
5425 buf_delete_all_signs()
5427 buf_T
*buf
; /* buffer we are checking for signs */
5429 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
5430 if (buf
->b_signlist
!= NULL
)
5432 /* Need to redraw the windows to remove the sign column. */
5433 redraw_buf_later(buf
, NOT_VALID
);
5434 buf_delete_signs(buf
);
5439 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5442 sign_list_placed(rbuf
)
5449 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5457 if (buf
->b_signlist
!= NULL
)
5459 vim_snprintf(lbuf
, BUFSIZ
, _("Signs for %s:"), buf
->b_fname
);
5460 MSG_PUTS_ATTR(lbuf
, hl_attr(HLF_D
));
5463 for (p
= buf
->b_signlist
; p
!= NULL
; p
= p
->next
)
5465 vim_snprintf(lbuf
, BUFSIZ
, _(" line=%ld id=%d name=%s"),
5466 (long)p
->lnum
, p
->id
, sign_typenr2name(p
->typenr
));
5477 * Adjust a placed sign for inserted/deleted lines.
5480 sign_mark_adjust(line1
, line2
, amount
, amount_after
)
5486 signlist_T
*sign
; /* a sign in a b_signlist */
5488 for (sign
= curbuf
->b_signlist
; sign
!= NULL
; sign
= sign
->next
)
5490 if (sign
->lnum
>= line1
&& sign
->lnum
<= line2
)
5492 if (amount
== MAXLNUM
)
5495 sign
->lnum
+= amount
;
5497 else if (sign
->lnum
> line2
)
5498 sign
->lnum
+= amount_after
;
5501 #endif /* FEAT_SIGNS */
5504 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5510 if (on
!= curbuf
->b_p_bl
)
5512 curbuf
->b_p_bl
= on
;
5515 apply_autocmds(EVENT_BUFADD
, NULL
, NULL
, FALSE
, curbuf
);
5517 apply_autocmds(EVENT_BUFDELETE
, NULL
, NULL
, FALSE
, curbuf
);
5523 * Read the file for "buf" again and check if the contents changed.
5524 * Return TRUE if it changed or this could not be checked.
5527 buf_contents_changed(buf
)
5536 /* Allocate a buffer without putting it in the buffer list. */
5537 newbuf
= buflist_new(NULL
, NULL
, (linenr_T
)1, BLN_DUMMY
);
5541 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5542 if (prep_exarg(&ea
, buf
) == FAIL
)
5544 wipe_buffer(newbuf
, FALSE
);
5548 /* set curwin/curbuf to buf and save a few things */
5549 aucmd_prepbuf(&aco
, newbuf
);
5551 if (ml_open(curbuf
) == OK
5552 && readfile(buf
->b_ffname
, buf
->b_fname
,
5553 (linenr_T
)0, (linenr_T
)0, (linenr_T
)MAXLNUM
,
5554 &ea
, READ_NEW
| READ_DUMMY
) == OK
)
5556 /* compare the two files line by line */
5557 if (buf
->b_ml
.ml_line_count
== curbuf
->b_ml
.ml_line_count
)
5560 for (lnum
= 1; lnum
<= curbuf
->b_ml
.ml_line_count
; ++lnum
)
5561 if (STRCMP(ml_get_buf(buf
, lnum
, FALSE
), ml_get(lnum
)) != 0)
5570 /* restore curwin/curbuf and a few other things */
5571 aucmd_restbuf(&aco
);
5573 if (curbuf
!= newbuf
) /* safety check */
5574 wipe_buffer(newbuf
, FALSE
);
5580 * Wipe out a buffer and decrement the last buffer number if it was used for
5581 * this buffer. Call this to wipe out a temp buffer that does not contain any
5585 wipe_buffer(buf
, aucmd
)
5587 int aucmd UNUSED
; /* When TRUE trigger autocommands. */
5589 if (buf
->b_fnum
== top_file_num
- 1)
5593 if (!aucmd
) /* Don't trigger BufDelete autocommands here. */
5596 close_buffer(NULL
, buf
, DOBUF_WIPE
);