blob: 81bdb31ca1f05b33f0f38ed3d2abf5c611c28497 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
shadmansaleh30e3de22021-05-15 17:23:28 +020030
31#ifdef FEAT_EVAL
32// Determines how deeply nested %{} blocks will be evaluated in statusline.
33# define MAX_STL_EVAL_DEPTH 100
34#endif
35
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020036static void enter_buffer(buf_T *buf);
37static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020041static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
42static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
43static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +020047static int value_changed(char_u *str, char_u **last);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010048static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
49static void free_buffer(buf_T *);
50static void free_buffer_stuff(buf_T *buf, int free_options);
51static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar00d253e2020-04-06 22:13:01 +020059#define FOR_ALL_BUFS_FROM_LAST(buf) \
60 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
66
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020067// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020068static int buf_free_count = 0;
69
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020070static int top_file_num = 1; // highest file number
71static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
72
73/*
74 * Return the highest possible buffer number.
75 */
76 int
77get_highest_fnum(void)
78{
79 return top_file_num - 1;
80}
81
Bram Moolenaarc024b462019-06-08 18:07:21 +020082/*
83 * Read data from buffer for retrying.
84 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020085 static int
86read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010087 int read_stdin, // read file from stdin, otherwise fifo
88 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
89 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020090{
91 int retval = OK;
92 linenr_T line_count;
93
Bram Moolenaarc5935a82021-10-19 20:48:52 +010094 // Read from the buffer which the text is already filled in and append at
95 // the end. This makes it possible to retry when 'fileformat' or
96 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020097 line_count = curbuf->b_ml.ml_line_count;
98 retval = readfile(
99 read_stdin ? NULL : curbuf->b_ffname,
100 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100101 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200102 flags | READ_BUFFER);
103 if (retval == OK)
104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100105 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200106 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200107 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200108 }
109 else
110 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100111 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200112 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200113 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200114 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100115 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116 curwin->w_cursor.lnum = 1;
117 curwin->w_cursor.col = 0;
118
119 if (read_stdin)
120 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100121 // Set or reset 'modified' before executing autocommands, so that
122 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100123 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100125 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200126 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 if (retval == OK)
129 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100130#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100131 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100132 curbuf, &retval);
133#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100134 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200135#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100136 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200137 }
138 return retval;
139}
140
Dominique Pelle748b3082022-01-08 12:41:16 +0000141#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200143 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
144 */
145 void
146buffer_ensure_loaded(buf_T *buf)
147{
148 if (buf->b_ml.ml_mfp == NULL)
149 {
150 aco_save_T aco;
151
152 aucmd_prepbuf(&aco, buf);
153 swap_exists_action = SEA_NONE;
154 open_buffer(FALSE, NULL, 0);
155 aucmd_restbuf(&aco);
156 }
157}
Dominique Pelle748b3082022-01-08 12:41:16 +0000158#endif
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200159
160/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200161 * Open current buffer, that is: open the memfile and read the file into
162 * memory.
163 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 */
165 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100166open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100167 int read_stdin, // read file from stdin
168 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
169 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170{
171 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200172 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100173#ifdef FEAT_SYN_HL
174 long old_tw = curbuf->b_p_tw;
175#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200176 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100178 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
179 // When re-entering the same buffer, it should not change, because the
180 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (readonlymode && curbuf->b_ffname != NULL
182 && (curbuf->b_flags & BF_NEVERLOADED))
183 curbuf->b_p_ro = TRUE;
184
Bram Moolenaar4770d092006-01-12 23:22:24 +0000185 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100187 // There MUST be a memfile, otherwise we can't do anything
188 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100189 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200190 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 if (curbuf->b_ml.ml_mfp != NULL)
192 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100193 // If there is no memfile at all, exit.
194 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 if (curbuf == NULL)
196 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000197 emsg(_(e_cannot_allocate_any_buffer_exiting));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200198
199 // Don't try to do any saving, with "curbuf" NULL almost nothing
200 // will work.
201 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 getout(2);
203 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200204
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000205 emsg(_(e_cannot_allocate_buffer_using_other_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100207#ifdef FEAT_SYN_HL
208 if (old_tw != curbuf->b_p_tw)
209 check_colorcolumn(curwin);
210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 return FAIL;
212 }
213
Bram Moolenaarc667da52019-11-30 20:52:27 +0100214 // The autocommands in readfile() may change the buffer, but only AFTER
215 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200216 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218
Bram Moolenaarc667da52019-11-30 20:52:27 +0100219 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100220 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222 if (curbuf->b_ffname != NULL
223#ifdef FEAT_NETBEANS_INTG
224 && netbeansReadFile
225#endif
226 )
227 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100228 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200229#ifdef UNIX
230 int save_bin = curbuf->b_p_bin;
231 int perm;
232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233#ifdef FEAT_NETBEANS_INTG
234 int oldFire = netbeansFireChanges;
235
236 netbeansFireChanges = 0;
237#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200238#ifdef UNIX
239 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200240 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200241 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200242# ifdef OPEN_CHR_FILES
243 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
244# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200245 ))
246 read_fifo = TRUE;
247 if (read_fifo)
248 curbuf->b_p_bin = TRUE;
249#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100250 if (shortmess(SHM_FILEINFO))
251 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200253 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
255#ifdef UNIX
256 if (read_fifo)
257 {
258 curbuf->b_p_bin = save_bin;
259 if (retval == OK)
260 retval = read_buffer(FALSE, eap, flags);
261 }
262#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100263 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#ifdef FEAT_NETBEANS_INTG
265 netbeansFireChanges = oldFire;
266#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100267 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200268 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 fix_help_buffer();
270 }
271 else if (read_stdin)
272 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200273 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100275 // First read the text in binary mode into the buffer.
276 // Then read from that same buffer and append at the end. This makes
277 // it possible to retry when 'fileformat' or 'fileencoding' was
278 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 curbuf->b_p_bin = TRUE;
280 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200281 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
282 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 curbuf->b_p_bin = save_bin;
284 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200285 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 }
287
Bram Moolenaarc667da52019-11-30 20:52:27 +0100288 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100290 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100292#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100293 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100294#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100295 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100297 // Set/reset the Changed flag first, autocmds may change the buffer.
298 // Apply the automatic commands, before processing the modelines.
299 // So the modelines have priority over autocommands.
300 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100301 // When reading stdin, the buffer contents always needs writing, so set
302 // the changed flag. Unless in readonly mode: "ls | gview -".
303 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000304 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100305 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100306#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000309 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100311 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200312 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100313 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaarc667da52019-11-30 20:52:27 +0100315 // Set last_changedtick to avoid triggering a TextChanged autocommand right
316 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100317 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100318 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100319 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100320
Bram Moolenaarc667da52019-11-30 20:52:27 +0100321 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322#ifdef FEAT_EVAL
323 if (aborting())
324#else
325 if (got_int)
326#endif
327 curbuf->b_flags |= BF_READERR;
328
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000329#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100330 // Need to update automatic folding. Do this before the autocommands,
331 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000332 foldUpdateAll(curwin);
333#endif
334
Bram Moolenaarc667da52019-11-30 20:52:27 +0100335 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 if (!(curwin->w_valid & VALID_TOPLINE))
337 {
338 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100339#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100343#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347#endif
348
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100349 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100351 // The autocommands may have changed the current buffer. Apply the
352 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200353 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 {
355 aco_save_T aco;
356
Bram Moolenaarc667da52019-11-30 20:52:27 +0100357 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200358 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000359 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
361
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100362 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100363#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100364 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
365 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100366#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100367 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
Bram Moolenaarc667da52019-11-30 20:52:27 +0100370 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 aucmd_restbuf(&aco);
372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 }
374
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 return retval;
376}
377
378/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200379 * Store "buf" in "bufref" and set the free count.
380 */
381 void
382set_bufref(bufref_T *bufref, buf_T *buf)
383{
384 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200385 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200386 bufref->br_buf_free_count = buf_free_count;
387}
388
389/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200390 * Return TRUE if "bufref->br_buf" points to the same buffer as when
391 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200392 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200393 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
394 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200395 */
396 int
397bufref_valid(bufref_T *bufref)
398{
399 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200400 ? TRUE : buf_valid(bufref->br_buf)
401 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200402}
403
404/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200406 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 */
408 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100409buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410{
411 buf_T *bp;
412
Bram Moolenaarc667da52019-11-30 20:52:27 +0100413 // Assume that we more often have a recent buffer, start with the last
414 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200415 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 if (bp == buf)
417 return TRUE;
418 return FALSE;
419}
420
421/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200422 * A hash table used to quickly lookup a buffer by its number.
423 */
424static hashtab_T buf_hashtab;
425
426 static void
427buf_hashtab_add(buf_T *buf)
428{
429 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
430 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000431 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200432}
433
434 static void
435buf_hashtab_remove(buf_T *buf)
436{
437 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
438
439 if (!HASHITEM_EMPTY(hi))
440 hash_remove(&buf_hashtab, hi);
441}
442
Bram Moolenaar94f01952018-09-01 15:30:03 +0200443/*
444 * Return TRUE when buffer "buf" can be unloaded.
445 * Give an error message and return FALSE when the buffer is locked or the
446 * screen is being redrawn and the buffer is in a window.
447 */
448 static int
449can_unload_buffer(buf_T *buf)
450{
451 int can_unload = !buf->b_locked;
452
453 if (can_unload && updating_screen)
454 {
455 win_T *wp;
456
457 FOR_ALL_WINDOWS(wp)
458 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200459 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200460 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200461 break;
462 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200463 }
464 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000465 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200466 return can_unload;
467}
Bram Moolenaara997b452018-04-17 23:24:06 +0200468
Bram Moolenaar480778b2016-07-14 22:09:39 +0200469/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 * Close the link to a buffer.
471 * "action" is used when there is no longer a window for the buffer.
472 * It can be:
473 * 0 buffer becomes hidden
474 * DOBUF_UNLOAD buffer is unloaded
475 * DOBUF_DELETE buffer is unloaded and removed from buffer list
476 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200477 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 * When doing all but the first one on the current buffer, the caller should
479 * get a new buffer very soon!
480 *
481 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100482 *
483 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
484 * cause there to be only one window with this buffer. e.g. when ":quit" is
485 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100486 *
487 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100488 *
489 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100491 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100492close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100493 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100494 buf_T *buf,
495 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100496 int abort_if_last,
497 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100500 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200501 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100502 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200503 win_T *the_curwin = curwin;
504 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200506 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
507 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaarcee52202020-03-11 14:19:58 +0100509 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100510
511 // Force unloading or deleting when 'bufhidden' says so.
512 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
513 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100514 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200515 {
516 del_buf = TRUE;
517 unload_buf = TRUE;
518 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100519 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200520 {
521 del_buf = TRUE;
522 unload_buf = TRUE;
523 wipe_buf = TRUE;
524 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100525 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200526 unload_buf = TRUE;
527
Bram Moolenaar94053a52017-08-01 21:44:33 +0200528#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200529 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200530 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100531 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532 if (term_job_running(buf->b_term))
533 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200534 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200535 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200536 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100537 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200538
Bram Moolenaarc667da52019-11-30 20:52:27 +0100539 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200540 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200541 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542 else
543 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100544 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200545 del_buf = FALSE;
546 unload_buf = FALSE;
547 }
548 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100549 else if (buf->b_p_bh[0] == 'h' && !del_buf)
550 {
551 // Hide a terminal buffer.
552 unload_buf = FALSE;
553 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200554 else
555 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100556 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200557 del_buf = TRUE;
558 unload_buf = TRUE;
559 wipe_buf = TRUE;
560 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100561 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200562 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
Bram Moolenaarc667da52019-11-30 20:52:27 +0100565 // Disallow deleting the buffer when it is locked (already being closed or
566 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200567 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100568 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569
Bram Moolenaarc667da52019-11-30 20:52:27 +0100570 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200571 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100573 // Set b_last_cursor when closing the last window for the buffer.
574 // Remember the last cursor position and window options of the buffer.
575 // This used to be only for the current window, but then options like
576 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 if (buf->b_nwindows == 1)
578 set_last_cursor(win);
579 buflist_setfpos(buf, win,
580 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
581 win->w_cursor.col, TRUE);
582 }
583
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200584 set_bufref(&bufref, buf);
585
Bram Moolenaarc667da52019-11-30 20:52:27 +0100586 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 if (buf->b_nwindows == 1)
588 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200589 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100590 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200591 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
592 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200593 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100594 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100595 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200596aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000597 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100598 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100599 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200600 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100601 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200602 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100603 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
Bram Moolenaarc667da52019-11-30 20:52:27 +0100606 // When the buffer becomes hidden, but is not unloaded, trigger
607 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 if (!unload_buf)
609 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200610 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100611 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200612 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
613 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200614 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100615 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200616 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200617 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100618 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200619 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100620 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200621 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100623#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100624 // autocmds may abort script processing
625 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100626 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200629
Bram Moolenaarc667da52019-11-30 20:52:27 +0100630 // If the buffer was in curwin and the window has changed, go back to that
631 // window, if it still exists. This avoids that ":edit x" triggering a
632 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200633 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
634 {
635 block_autocmds();
636 goto_tabpage_win(the_curtab, the_curwin);
637 unblock_autocmds();
638 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200639
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641
Bram Moolenaarc667da52019-11-30 20:52:27 +0100642 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 if (buf->b_nwindows > 0)
644 --buf->b_nwindows;
645
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100646#ifdef FEAT_DIFF
647 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100648 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100649#endif
650
Bram Moolenaarc667da52019-11-30 20:52:27 +0100651 // Return when a window is displaying the buffer or when it's not
652 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100654 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaarc667da52019-11-30 20:52:27 +0100656 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (buf->b_ffname == NULL)
658 del_buf = TRUE;
659
Bram Moolenaarc667da52019-11-30 20:52:27 +0100660 // When closing the current buffer stop Visual mode before freeing
661 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200662 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200663#if defined(EXITFREE)
664 && !entered_free_all_mem
665#endif
666 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200667 end_visual_mode();
668
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100669 // Free all things allocated for this buffer.
670 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
671 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100672 // Remember if we are closing the current buffer. Restore the number of
673 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 is_curbuf = (buf == curbuf);
675 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100677 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100678 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100679 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaarc667da52019-11-30 20:52:27 +0100681 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200682 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100683 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100684#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100685 // autocmds may abort script processing
686 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100687 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100690 // It's possible that autocommands change curbuf to the one being deleted.
691 // This might cause the previous curbuf to be deleted unexpectedly. But
692 // in some cases it's OK to delete the curbuf, because a new one is
693 // obtained anyway. Therefore only return if curbuf changed to the
694 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100696 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200697
Bram Moolenaar4033c552017-09-16 20:54:51 +0200698 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100699 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200700
Bram Moolenaarc667da52019-11-30 20:52:27 +0100701 // Autocommands may have opened or closed windows for this buffer.
702 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200703 if (buf->b_nwindows > 0)
704 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 /*
707 * Remove the buffer from the list.
708 */
709 if (wipe_buf)
710 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200711 if (action == DOBUF_WIPE_REUSE)
712 {
713 // we can re-use this buffer number, store it
714 if (buf_reuse.ga_itemsize == 0)
715 ga_init2(&buf_reuse, sizeof(int), 50);
716 if (ga_grow(&buf_reuse, 1) == OK)
717 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
718 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200719 if (buf->b_sfname != buf->b_ffname)
720 VIM_CLEAR(buf->b_sfname);
721 else
722 buf->b_sfname = NULL;
723 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 if (buf->b_prev == NULL)
725 firstbuf = buf->b_next;
726 else
727 buf->b_prev->b_next = buf->b_next;
728 if (buf->b_next == NULL)
729 lastbuf = buf->b_prev;
730 else
731 buf->b_next->b_prev = buf->b_prev;
732 free_buffer(buf);
733 }
734 else
735 {
736 if (del_buf)
737 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100738 // Free all internal variables and reset option values, to make
739 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 free_buffer_stuff(buf, TRUE);
741
Bram Moolenaarc667da52019-11-30 20:52:27 +0100742 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
744
Bram Moolenaarc667da52019-11-30 20:52:27 +0100745 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 buf->b_p_initialized = FALSE;
747 }
748 buf_clear_file(buf);
749 if (del_buf)
750 buf->b_p_bl = FALSE;
751 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100752 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100753 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754}
755
756/*
757 * Make buffer not contain a file.
758 */
759 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100760buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761{
762 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200763 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 buf->b_p_eol = TRUE;
766 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000768 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100770 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771#ifdef FEAT_NETBEANS_INTG
772 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773#endif
774}
775
776/*
777 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200778 * the file. Careful: get here with "curwin" NULL when exiting.
779 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100780 * BFA_DEL buffer is going to be deleted
781 * BFA_WIPE buffer is going to be wiped out
782 * BFA_KEEP_UNDO do not free undo information
783 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100786buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200789 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200790 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200791 win_T *the_curwin = curwin;
792 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793
Bram Moolenaarc667da52019-11-30 20:52:27 +0100794 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200795 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100796 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200797 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200798 if (buf->b_ml.ml_mfp != NULL)
799 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200800 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
801 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200802 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100803 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200804 return;
805 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200806 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200808 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
809 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200810 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100811 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 return;
813 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200814 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200816 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
817 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200818 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100819 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 return;
821 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200822 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100823 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200824
Bram Moolenaarc667da52019-11-30 20:52:27 +0100825 // If the buffer was in curwin and the window has changed, go back to that
826 // window, if it still exists. This avoids that ":edit x" triggering a
827 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200828 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
829 {
830 block_autocmds();
831 goto_tabpage_win(the_curtab, the_curwin);
832 unblock_autocmds();
833 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200834
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100835#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100836 // autocmds may abort script processing
837 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100841 // It's possible that autocommands change curbuf to the one being deleted.
842 // This might cause curbuf to be deleted unexpectedly. But in some cases
843 // it's OK to delete the curbuf, because a new one is obtained anyway.
844 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 if (buf == curbuf && !is_curbuf)
846 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100848 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200850#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100851 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200852 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100853 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200854#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000855
856#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100857 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000858 {
859 win_T *win;
860 tabpage_T *tp;
861
862 FOR_ALL_TAB_WINDOWS(tp, win)
863 if (win->w_buffer == buf)
864 clearFolding(win);
865 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#ifdef FEAT_TCL
869 tcl_buffer_free(buf);
870#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100871 ml_close(buf, TRUE); // close and delete the memline/memfile
872 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200873 if ((flags & BFA_KEEP_UNDO) == 0)
874 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100875 u_blockfree(buf); // free the memory allocated for undo
876 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100879 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100881#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100882 clear_buf_prop_types(buf);
883#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100884 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885}
886
887/*
888 * Free a buffer structure and the things it contains related to the buffer
889 * itself (not the file, that must have been done already).
890 */
891 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100892free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200894 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200896#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100897 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200898 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200899 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200900 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200901#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200902#ifdef FEAT_LUA
903 lua_buffer_free(buf);
904#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000905#ifdef FEAT_MZSCHEME
906 mzscheme_buffer_free(buf);
907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908#ifdef FEAT_PERL
909 perl_buf_free(buf);
910#endif
911#ifdef FEAT_PYTHON
912 python_buffer_free(buf);
913#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200914#ifdef FEAT_PYTHON3
915 python3_buffer_free(buf);
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#ifdef FEAT_RUBY
918 ruby_buffer_free(buf);
919#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200920#ifdef FEAT_JOB_CHANNEL
921 channel_buffer_free(buf);
922#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200923#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200924 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200925#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200926#ifdef FEAT_JOB_CHANNEL
927 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200928 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200929 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200930#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200931
932 buf_hashtab_remove(buf);
933
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200934 aubuflocal_remove(buf);
935
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200936 if (autocmd_busy)
937 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100938 // Do not free the buffer structure while autocommands are executing,
939 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200940 buf->b_next = au_pending_free_buf;
941 au_pending_free_buf = buf;
942 }
943 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100944 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200945 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100946 if (curbuf == buf)
947 curbuf = NULL; // make clear it's not to be used
948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949}
950
951/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100952 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100953 */
954 static void
955init_changedtick(buf_T *buf)
956{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100957 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100958
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100959 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
960 di->di_tv.v_type = VAR_NUMBER;
961 di->di_tv.v_lock = VAR_FIXED;
962 di->di_tv.vval.v_number = 0;
963
Bram Moolenaar92769c32017-02-25 15:41:37 +0100964#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100965 STRCPY(buf->b_ct_di.di_key, "changedtick");
966 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100967#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100968}
969
970/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
972 */
973 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100974free_buffer_stuff(
975 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100976 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
978 if (free_options)
979 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100980 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200982#ifdef FEAT_SPELL
983 ga_clear(&buf->b_s.b_langp);
984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 }
986#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100987 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100988 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100989
Bram Moolenaarc667da52019-11-30 20:52:27 +0100990 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100991 hash_init(&buf->b_vars->dv_hashtab);
992 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100993 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100994 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200997 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200999 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001001#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001002 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001003#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001004 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1005 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001006 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007}
1008
1009/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001010 * Free one wininfo_T.
1011 */
1012 void
1013free_wininfo(wininfo_T *wip)
1014{
1015 if (wip->wi_optset)
1016 {
1017 clear_winopt(&wip->wi_opt);
1018#ifdef FEAT_FOLDING
1019 deleteFoldRecurse(&wip->wi_folds);
1020#endif
1021 }
1022 vim_free(wip);
1023}
1024
1025/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 * Free the b_wininfo list for buffer "buf".
1027 */
1028 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001029clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 wininfo_T *wip;
1032
1033 while (buf->b_wininfo != NULL)
1034 {
1035 wip = buf->b_wininfo;
1036 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001037 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 }
1039}
1040
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041/*
1042 * Go to another buffer. Handles the result of the ATTENTION dialog.
1043 */
1044 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001045goto_buffer(
1046 exarg_T *eap,
1047 int start,
1048 int dir,
1049 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001051 bufref_T old_curbuf;
1052
1053 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054
1055 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1057 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1059 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001060#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001061 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001062
Bram Moolenaarc667da52019-11-30 20:52:27 +01001063 // Reset the error/interrupt/exception state here so that
1064 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001065 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001066#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001067
Bram Moolenaarc667da52019-11-30 20:52:27 +01001068 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 win_close(curwin, TRUE);
1070 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001071 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001073#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001074 // Restore the error/interrupt/exception state if not discarded by a
1075 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001076 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 }
1079 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001080 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001081}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083/*
1084 * Handle the situation of swap_exists_action being set.
1085 * It is allowed for "old_curbuf" to be NULL or invalid.
1086 */
1087 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001088handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001090#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001092#endif
1093#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001094 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001095#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001096 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001097
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 if (swap_exists_action == SEA_QUIT)
1099 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001100#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001101 // Reset the error/interrupt/exception state here so that
1102 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001103 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001104#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001105
Bram Moolenaarc667da52019-11-30 20:52:27 +01001106 // User selected Quit at ATTENTION prompt. Go back to previous
1107 // buffer. If that buffer is gone or the same as the current one,
1108 // open a new, empty buffer.
1109 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001110 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001111 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001112 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1113 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001114 {
1115 // Block autocommands here because curwin->w_buffer is NULL.
1116 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001117 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001118 unblock_autocmds();
1119 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001120 else
1121 buf = old_curbuf->br_buf;
1122 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001123 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001124 int old_msg_silent = msg_silent;
1125
1126 if (shortmess(SHM_FILEINFO))
1127 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001128 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001129 // restore msg_silent, so that the command line will be shown
1130 msg_silent = old_msg_silent;
1131
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001132#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001133 if (old_tw != curbuf->b_p_tw)
1134 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001135#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001136 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001137 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001138
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001139#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001140 // Restore the error/interrupt/exception state if not discarded by a
1141 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001142 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 }
1145 else if (swap_exists_action == SEA_RECOVER)
1146 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001147#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001148 // Reset the error/interrupt/exception state here so that
1149 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001150 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001151#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001152
Bram Moolenaarc667da52019-11-30 20:52:27 +01001153 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001155 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001156 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001158 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001159
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001160#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001161 // Restore the error/interrupt/exception state if not discarded by a
1162 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001163 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 }
1166 swap_exists_action = SEA_NONE;
1167}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001170 * Make the current buffer empty.
1171 * Used when it is wiped out and it's the last buffer.
1172 */
1173 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001174empty_curbuf(
1175 int close_others,
1176 int forceit,
1177 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001178{
1179 int retval;
1180 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001181 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001182
1183 if (action == DOBUF_UNLOAD)
1184 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001185 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001186 return FAIL;
1187 }
1188
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001189 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001190 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001191 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001192 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193
1194 setpcmark();
1195 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1196 forceit ? ECMD_FORCEIT : 0, curwin);
1197
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001198 // do_ecmd() may create a new buffer, then we have to delete
1199 // the old one. But do_ecmd() may have done that already, check
1200 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001201 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001202 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001203 if (!close_others)
1204 need_fileinfo = FALSE;
1205 return retval;
1206}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208/*
1209 * Implementation of the commands for the buffer list.
1210 *
1211 * action == DOBUF_GOTO go to specified buffer
1212 * action == DOBUF_SPLIT split window and go to specified buffer
1213 * action == DOBUF_UNLOAD unload specified buffer(s)
1214 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1215 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001216 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 *
1218 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1219 * start == DOBUF_FIRST go to "count" buffer from first buffer
1220 * start == DOBUF_LAST go to "count" buffer from last buffer
1221 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1222 *
1223 * Return FAIL or OK.
1224 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001225 static int
1226do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001227 int action,
1228 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001229 int dir, // FORWARD or BACKWARD
1230 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001231 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232{
1233 buf_T *buf;
1234 buf_T *bp;
1235 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001236 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
1238 switch (start)
1239 {
1240 case DOBUF_FIRST: buf = firstbuf; break;
1241 case DOBUF_LAST: buf = lastbuf; break;
1242 default: buf = curbuf; break;
1243 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001244 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 {
1246 while (count-- > 0)
1247 {
1248 do
1249 {
1250 buf = buf->b_next;
1251 if (buf == NULL)
1252 buf = firstbuf;
1253 }
1254 while (buf != curbuf && !bufIsChanged(buf));
1255 }
1256 if (!bufIsChanged(buf))
1257 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001258 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 return FAIL;
1260 }
1261 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001262 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
1264 while (buf != NULL && buf->b_fnum != count)
1265 buf = buf->b_next;
1266 }
1267 else
1268 {
1269 bp = NULL;
1270 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1271 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001272 // remember the buffer where we start, we come back there when all
1273 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 if (bp == NULL)
1275 bp = buf;
1276 if (dir == FORWARD)
1277 {
1278 buf = buf->b_next;
1279 if (buf == NULL)
1280 buf = firstbuf;
1281 }
1282 else
1283 {
1284 buf = buf->b_prev;
1285 if (buf == NULL)
1286 buf = lastbuf;
1287 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001288 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (unload || buf->b_p_bl)
1290 {
1291 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001292 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 }
1294 if (bp == buf)
1295 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001296 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001297 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 return FAIL;
1299 }
1300 }
1301 }
1302
Bram Moolenaarc667da52019-11-30 20:52:27 +01001303 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 {
1305 if (start == DOBUF_FIRST)
1306 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001307 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001309 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 }
1311 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001312 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001314 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 return FAIL;
1316 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001317#ifdef FEAT_PROP_POPUP
1318 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1319# ifdef FEAT_TERMINAL
1320 && !bt_terminal(buf)
1321#endif
1322 )
1323 return OK;
1324#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
1326#ifdef FEAT_GUI
1327 need_mouse_correct = TRUE;
1328#endif
1329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001331 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 */
1333 if (unload)
1334 {
1335 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001336 bufref_T bufref;
1337
Bram Moolenaar94f01952018-09-01 15:30:03 +02001338 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001339 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001340
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001341 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342
Bram Moolenaarc667da52019-11-30 20:52:27 +01001343 // When unloading or deleting a buffer that's already unloaded and
1344 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001345 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1346 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 return FAIL;
1348
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001349 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001351#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001352 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 {
1354 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001355 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001356 // Autocommand deleted buffer, oops! It's not changed
1357 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001359 // If it's still changed fail silently, the dialog already
1360 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001361 if (bufIsChanged(buf))
1362 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001364 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001367 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 buf->b_fnum);
1369 return FAIL;
1370 }
1371 }
1372
Bram Moolenaarc667da52019-11-30 20:52:27 +01001373 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001374 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001375 end_visual_mode();
1376
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001377 // If deleting the last (listed) buffer, make it empty.
1378 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001379 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (bp->b_p_bl && bp != buf)
1381 break;
1382 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001383 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001385 // If the deleted buffer is the current one, close the current window
1386 // (unless it's the only window). Repeat this so long as we end up in
1387 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001388 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001389 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001390 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001391 {
1392 if (win_close(curwin, FALSE) == FAIL)
1393 break;
1394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001396 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (buf != curbuf)
1398 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001399 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001400 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001401 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 return OK;
1403 }
1404
1405 /*
1406 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001407 * There should be another, otherwise it would have been handled
1408 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001409 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 * Then prefer the buffer we most recently visited.
1411 * Else try to find one that is loaded, after the current buffer,
1412 * then before the current buffer.
1413 * Finally use any buffer.
1414 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001415 buf = NULL; // selected buffer
1416 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001417 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1418 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001419 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 {
1421 int jumpidx;
1422
1423 jumpidx = curwin->w_jumplistidx - 1;
1424 if (jumpidx < 0)
1425 jumpidx = curwin->w_jumplistlen - 1;
1426
1427 forward = jumpidx;
1428 while (jumpidx != curwin->w_jumplistidx)
1429 {
1430 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1431 if (buf != NULL)
1432 {
1433 if (buf == curbuf || !buf->b_p_bl)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001434 buf = NULL; // skip current and unlisted bufs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 else if (buf->b_ml.ml_mfp == NULL)
1436 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001437 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 if (bp == NULL)
1439 bp = buf;
1440 buf = NULL;
1441 }
1442 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001443 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001445 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1447 break;
1448 if (--jumpidx < 0)
1449 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001450 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 break;
1452 }
1453 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454
Bram Moolenaarc667da52019-11-30 20:52:27 +01001455 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 {
1457 forward = TRUE;
1458 buf = curbuf->b_next;
1459 for (;;)
1460 {
1461 if (buf == NULL)
1462 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001463 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 break;
1465 buf = curbuf->b_prev;
1466 forward = FALSE;
1467 continue;
1468 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001469 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1471 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001472 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001474 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 bp = buf;
1476 }
1477 if (forward)
1478 buf = buf->b_next;
1479 else
1480 buf = buf->b_prev;
1481 }
1482 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001483 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001485 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001487 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 if (buf->b_p_bl && buf != curbuf)
1489 break;
1490 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001491 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 {
1493 if (curbuf->b_next != NULL)
1494 buf = curbuf->b_next;
1495 else
1496 buf = curbuf->b_prev;
1497 }
1498 }
1499
Bram Moolenaara02471e2014-01-10 16:43:14 +01001500 if (buf == NULL)
1501 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001502 // Autocommands must have wiped out all other buffers. Only option
1503 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001504 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001505 }
1506
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001508 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001510 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001512 // If 'switchbuf' contains "useopen": jump to first window containing
1513 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001514 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001515 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001516 // If 'switchbuf' contains "usetab": jump to first window in any tab
1517 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001518 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 return OK;
1520 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 return FAIL;
1522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523
Bram Moolenaarc667da52019-11-30 20:52:27 +01001524 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 if (buf == curbuf)
1526 return OK;
1527
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001528 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001529 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 {
1531#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001532 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001534 bufref_T bufref;
1535
1536 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001538 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001539 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 }
1542 if (bufIsChanged(curbuf))
1543#endif
1544 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001545 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 return FAIL;
1547 }
1548 }
1549
Bram Moolenaarc667da52019-11-30 20:52:27 +01001550 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 set_curbuf(buf, action);
1552
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001554 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001556#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001557 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 return FAIL;
1559#endif
1560
1561 return OK;
1562}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001564 int
1565do_buffer(
1566 int action,
1567 int start,
1568 int dir, // FORWARD or BACKWARD
1569 int count, // buffer number or number of buffers
1570 int forceit) // TRUE when using !
1571{
1572 return do_buffer_ext(action, start, dir, count,
1573 forceit ? DOBUF_FORCEIT : 0);
1574}
1575
1576/*
1577 * do_bufdel() - delete or unload buffer(s)
1578 *
1579 * addr_count == 0: ":bdel" - delete current buffer
1580 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1581 * buffer "end_bnr", then any other arguments.
1582 * addr_count == 2: ":N,N bdel" - delete buffers in range
1583 *
1584 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1585 * DOBUF_DEL (":bdel")
1586 *
1587 * Returns error message or NULL
1588 */
1589 char *
1590do_bufdel(
1591 int command,
1592 char_u *arg, // pointer to extra arguments
1593 int addr_count,
1594 int start_bnr, // first buffer number in a range
1595 int end_bnr, // buffer nr or last buffer nr in a range
1596 int forceit)
1597{
1598 int do_current = 0; // delete current buffer?
1599 int deleted = 0; // number of buffers deleted
1600 char *errormsg = NULL; // return value
1601 int bnr; // buffer number
1602 char_u *p;
1603
1604 if (addr_count == 0)
1605 {
1606 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1607 }
1608 else
1609 {
1610 if (addr_count == 2)
1611 {
1612 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001613 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001614 bnr = start_bnr;
1615 }
1616 else // addr_count == 1
1617 bnr = end_bnr;
1618
1619 for ( ;!got_int; ui_breakcheck())
1620 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001621 // Delete the current buffer last, otherwise when the
1622 // current buffer is deleted, the next buffer becomes
1623 // the current one and will be loaded, which may then
1624 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001625 if (bnr == curbuf->b_fnum)
1626 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001627 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001628 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1629 ++deleted;
1630
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001631 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001632 if (addr_count == 2)
1633 {
1634 if (++bnr > end_bnr)
1635 break;
1636 }
1637 else // addr_count == 1
1638 {
1639 arg = skipwhite(arg);
1640 if (*arg == NUL)
1641 break;
1642 if (!VIM_ISDIGIT(*arg))
1643 {
1644 p = skiptowhite_esc(arg);
1645 bnr = buflist_findpat(arg, p,
1646 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1647 FALSE, FALSE);
1648 if (bnr < 0) // failed
1649 break;
1650 arg = p;
1651 }
1652 else
1653 bnr = getdigits(&arg);
1654 }
1655 }
1656 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1657 FORWARD, do_current, forceit) == OK)
1658 ++deleted;
1659
1660 if (deleted == 0)
1661 {
1662 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001663 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001664 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001665 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001666 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001667 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001668 errormsg = (char *)IObuff;
1669 }
1670 else if (deleted >= p_report)
1671 {
1672 if (command == DOBUF_UNLOAD)
1673 smsg(NGETTEXT("%d buffer unloaded",
1674 "%d buffers unloaded", deleted), deleted);
1675 else if (command == DOBUF_DEL)
1676 smsg(NGETTEXT("%d buffer deleted",
1677 "%d buffers deleted", deleted), deleted);
1678 else
1679 smsg(NGETTEXT("%d buffer wiped out",
1680 "%d buffers wiped out", deleted), deleted);
1681 }
1682 }
1683
1684
1685 return errormsg;
1686}
1687
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688/*
1689 * Set current buffer to "buf". Executes autocommands and closes current
1690 * buffer. "action" tells how to close the current buffer:
1691 * DOBUF_GOTO free or hide it
1692 * DOBUF_SPLIT nothing
1693 * DOBUF_UNLOAD unload it
1694 * DOBUF_DEL delete it
1695 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001696 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 */
1698 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001699set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700{
1701 buf_T *prevbuf;
1702 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001703 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001704#ifdef FEAT_SYN_HL
1705 long old_tw = curbuf->b_p_tw;
1706#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001707 bufref_T newbufref;
1708 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001709 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710
1711 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001712 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001713 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1714 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715
Bram Moolenaarc667da52019-11-30 20:52:27 +01001716 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718
Bram Moolenaarc667da52019-11-30 20:52:27 +01001719 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001721 set_bufref(&prevbufref, prevbuf);
1722 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001724 // Autocommands may delete the current buffer and/or the buffer we want to
1725 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001726 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001727 || (bufref_valid(&prevbufref)
1728 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001729#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001730 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001732 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001734#ifdef FEAT_SYN_HL
1735 if (prevbuf == curwin->w_buffer)
1736 reset_synblock(curwin);
1737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001739 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001740#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001741 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001743 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001745 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001746 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001747
Bram Moolenaare615db02022-01-20 21:00:54 +00001748 // Do not sync when in Insert mode and the buffer is open in
1749 // another window, might be a timer doing something in another
1750 // window.
1751 if (prevbuf == curbuf
1752 && ((State & INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001753 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1755 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001756 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001757 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1758 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001759 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001760 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001761 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001764 // An autocommand may have deleted "buf", already entered it (e.g., when
1765 // it did ":bunload") or aborted the script processing.
1766 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001767 valid = buf_valid(buf);
1768 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001769#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001770 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001772 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001773 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001774 // If the buffer is not valid but curwin->w_buffer is NULL we must
1775 // enter some buffer. Using the last one is hopefully OK.
1776 if (!valid)
1777 enter_buffer(lastbuf);
1778 else
1779 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001780#ifdef FEAT_SYN_HL
1781 if (old_tw != curbuf->b_p_tw)
1782 check_colorcolumn(curwin);
1783#endif
1784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785}
1786
1787/*
1788 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001789 * Old curbuf must have been abandoned already! This also means "curbuf" may
1790 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001792 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001793enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001795 // Get the buffer in the current window.
1796 curwin->w_buffer = buf;
1797 curbuf = buf;
1798 ++curbuf->b_nwindows;
1799
1800 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1802 if (!buf->b_help)
1803 get_winopts(buf);
1804#ifdef FEAT_FOLDING
1805 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001806 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001808 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809#endif
1810
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001812 if (curwin->w_p_diff)
1813 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814#endif
1815
Bram Moolenaara971b822011-09-14 14:43:25 +02001816#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001817 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001818#endif
1819
Bram Moolenaarc667da52019-11-30 20:52:27 +01001820 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 curwin->w_cursor.lnum = 1;
1822 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001825 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826
Bram Moolenaarc667da52019-11-30 20:52:27 +01001827 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001828 curwin->w_valid = 0;
1829
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001830 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1831 curbuf->b_last_cursor.col, TRUE);
1832
Bram Moolenaarc667da52019-11-30 20:52:27 +01001833 // Make sure the buffer is loaded.
1834 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001835 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001836 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001837 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001838 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001839 if (*curbuf->b_p_ft == NUL)
1840 did_filetype = FALSE;
1841
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001842 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 else
1845 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001846 if (!msg_silent && !shortmess(SHM_FILEINFO))
1847 need_fileinfo = TRUE; // display file info after redraw
1848
1849 // check if file changed
1850 (void)buf_check_timestamp(curbuf, FALSE);
1851
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001853#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1857 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 }
1859
Bram Moolenaarc667da52019-11-30 20:52:27 +01001860 // If autocommands did not change the cursor position, restore cursor lnum
1861 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 if (curwin->w_cursor.lnum == 1 && inindent(0))
1863 buflist_getfpos();
1864
Bram Moolenaarc667da52019-11-30 20:52:27 +01001865 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001867 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001868 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001869 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870
Bram Moolenaar009b2592004-10-24 19:18:58 +00001871#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001872 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001873 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001874#endif
1875
Bram Moolenaarc667da52019-11-30 20:52:27 +01001876 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001877 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
1879#ifdef FEAT_KEYMAP
1880 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001881 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001883#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001884 // May need to set the spell language. Can only do this after the buffer
1885 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001886 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1887 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001888#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001889#ifdef FEAT_VIMINFO
1890 curbuf->b_last_used = vim_time();
1891#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001892
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 redraw_later(NOT_VALID);
1894}
1895
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001896#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1897/*
1898 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001899 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001900 */
1901 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001902do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001903{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001904 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001905 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001906 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001907 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001908 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001909 last_chdir_reason = "autochdir";
1910 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001911}
1912#endif
1913
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001914 void
1915no_write_message(void)
1916{
1917#ifdef FEAT_TERMINAL
1918 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001919 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001920 else
1921#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001922 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001923}
1924
1925 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001926no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001927{
1928#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001929 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001930 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001931 else
1932#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001933 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001934}
1935
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936/*
1937 * functions for dealing with the buffer list
1938 */
1939
1940/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001941 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1942 * only one window. That means it can be re-used.
1943 */
1944 int
1945curbuf_reusable(void)
1946{
1947 return (curbuf != NULL
1948 && curbuf->b_ffname == NULL
1949 && curbuf->b_nwindows <= 1
1950 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001951#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001952 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001953#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001954 && !curbufIsChanged());
1955}
1956
1957/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 * Add a file name to the buffer list. Return a pointer to the buffer.
1959 * If the same file name already exists return a pointer to that buffer.
1960 * If it does not exist, or if fname == NULL, a new entry is created.
1961 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1962 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1963 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001964 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001965 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1966 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001967 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 * This is the ONLY way to create a new buffer.
1969 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001971buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001972 char_u *ffname_arg, // full path of fname or relative
1973 char_u *sfname_arg, // short fname or NULL
1974 linenr_T lnum, // preferred cursor line
1975 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001977 char_u *ffname = ffname_arg;
1978 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 buf_T *buf;
1980#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001981 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982#endif
1983
Bram Moolenaar480778b2016-07-14 22:09:39 +02001984 if (top_file_num == 1)
1985 hash_init(&buf_hashtab);
1986
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001987 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988
1989 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001990 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 */
1992#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01001993 // On Unix we can use inode numbers when the file exists. Works better
1994 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1996 st.st_dev = (dev_T)-1;
1997#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001998 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999#ifdef UNIX
2000 buflist_findname_stat(ffname, &st)
2001#else
2002 buflist_findname(ffname)
2003#endif
2004 ) != NULL)
2005 {
2006 vim_free(ffname);
2007 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002008 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2009 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002010
2011 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002012 // copy the options now, if 'cpo' doesn't have 's' and not done
2013 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002014 buf_copy_options(buf, 0);
2015
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2017 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002018 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002019
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002021 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002023 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002024 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002025 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002026 return NULL;
2027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 }
2029 return buf;
2030 }
2031
2032 /*
2033 * If the current buffer has no name and no contents, use the current
2034 * buffer. Otherwise: Need to allocate a new buffer structure.
2035 *
2036 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002037 * (A spell file buffer is allocated in spell.c, but that's not a normal
2038 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 */
2040 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002041 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 {
2043 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002044 // It's like this buffer is deleted. Watch out for autocommands that
2045 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 if (curbuf->b_p_bl)
2047 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2048 if (buf == curbuf)
2049 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002050#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002051 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002052 {
2053 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002059 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 clear_string_option(&buf->b_p_bh);
2061 clear_string_option(&buf->b_p_bt);
2062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 }
2064 if (buf != curbuf || curbuf == NULL)
2065 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002066 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 if (buf == NULL)
2068 {
2069 vim_free(ffname);
2070 return NULL;
2071 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002072#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002073 // init b: variables
Bram Moolenaar429fa852013-04-15 12:27:36 +02002074 buf->b_vars = dict_alloc();
2075 if (buf->b_vars == NULL)
2076 {
2077 vim_free(ffname);
2078 vim_free(buf);
2079 return NULL;
2080 }
2081 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2082#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002083 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 }
2085
2086 if (ffname != NULL)
2087 {
2088 buf->b_ffname = ffname;
2089 buf->b_sfname = vim_strsave(sfname);
2090 }
2091
2092 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002093 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094
2095 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2096 || buf->b_wininfo == NULL)
2097 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002098 if (buf->b_sfname != buf->b_ffname)
2099 VIM_CLEAR(buf->b_sfname);
2100 else
2101 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002102 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 if (buf != curbuf)
2104 free_buffer(buf);
2105 return NULL;
2106 }
2107
2108 if (buf == curbuf)
2109 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002110 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002111 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002112 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002114#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002115 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 return NULL;
2117#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002118 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002119
Bram Moolenaarc667da52019-11-30 20:52:27 +01002120 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002121 buf->b_p_initialized = FALSE;
2122 buf_copy_options(buf, BCO_ENTER);
2123
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002125 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 curbuf->b_kmap_state |= KEYMAP_INIT;
2127#endif
2128 }
2129 else
2130 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002131 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002133 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 {
2135 buf->b_prev = NULL;
2136 firstbuf = buf;
2137 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002138 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 {
2140 lastbuf->b_next = buf;
2141 buf->b_prev = lastbuf;
2142 }
2143 lastbuf = buf;
2144
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002145 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2146 {
2147 // Recycle a previously used buffer number. Used for buffers which
2148 // are normally hidden, e.g. in a popup window. Avoids that the
2149 // buffer number grows rapidly.
2150 --buf_reuse.ga_len;
2151 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002152
2153 // Move buffer to the right place in the buffer list.
2154 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2155 {
2156 buf_T *prev = buf->b_prev;
2157
2158 prev->b_next = buf->b_next;
2159 if (prev->b_next != NULL)
2160 prev->b_next->b_prev = prev;
2161 buf->b_next = prev;
2162 buf->b_prev = prev->b_prev;
2163 if (buf->b_prev != NULL)
2164 buf->b_prev->b_next = buf;
2165 prev->b_prev = buf;
2166 if (lastbuf == buf)
2167 lastbuf = prev;
2168 if (firstbuf == prev)
2169 firstbuf = buf;
2170 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002171 }
2172 else
2173 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002174 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002176 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002177 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 {
2179 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002180 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 }
2182 top_file_num = 1;
2183 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002184 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002186 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 buf_copy_options(buf, BCO_ALWAYS);
2188 }
2189
2190 buf->b_wininfo->wi_fpos.lnum = lnum;
2191 buf->b_wininfo->wi_win = curwin;
2192
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002193#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002194 hash_init(&buf->b_s.b_keywtab);
2195 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196#endif
2197
2198 buf->b_fname = buf->b_sfname;
2199#ifdef UNIX
2200 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002201 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 else
2203 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002204 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 buf->b_dev = st.st_dev;
2206 buf->b_ino = st.st_ino;
2207 }
2208#endif
2209 buf->b_u_synced = TRUE;
2210 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002211 if (flags & BLN_DUMMY)
2212 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002214 clrallmarks(buf); // clear marks
2215 fmarks_check_names(buf); // check file marks for this file
2216 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 if (!(flags & BLN_DUMMY))
2218 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002219 bufref_T bufref;
2220
Bram Moolenaarc667da52019-11-30 20:52:27 +01002221 // Tricky: these autocommands may change the buffer list. They could
2222 // also split the window with re-using the one empty buffer. This may
2223 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002224 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002225 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002226 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002227 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002229 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002230 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002231 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002232 return NULL;
2233 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002234#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002235 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239
2240 return buf;
2241}
2242
2243/*
2244 * Free the memory for the options of a buffer.
2245 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2246 * 'fileencoding'.
2247 */
2248 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002249free_buf_options(
2250 buf_T *buf,
2251 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252{
2253 if (free_p_ff)
2254 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 clear_string_option(&buf->b_p_bh);
2258 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 }
2260#ifdef FEAT_FIND_ID
2261 clear_string_option(&buf->b_p_def);
2262 clear_string_option(&buf->b_p_inc);
2263# ifdef FEAT_EVAL
2264 clear_string_option(&buf->b_p_inex);
2265# endif
2266#endif
2267#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2268 clear_string_option(&buf->b_p_inde);
2269 clear_string_option(&buf->b_p_indk);
2270#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002271#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2272 clear_string_option(&buf->b_p_bexpr);
2273#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002274#if defined(FEAT_CRYPT)
2275 clear_string_option(&buf->b_p_cm);
2276#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002277 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002278#if defined(FEAT_EVAL)
2279 clear_string_option(&buf->b_p_fex);
2280#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002282# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002283 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2284 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2285 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002286# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 clear_string_option(&buf->b_p_key);
2288#endif
2289 clear_string_option(&buf->b_p_kp);
2290 clear_string_option(&buf->b_p_mps);
2291 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002292 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002294#ifdef FEAT_VARTABS
2295 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002296 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002297 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002298 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002299 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002300 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002301#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302#ifdef FEAT_KEYMAP
2303 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002304 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 ga_clear(&buf->b_kmap_ga);
2306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308#ifdef FEAT_FOLDING
2309 clear_string_option(&buf->b_p_cms);
2310#endif
2311 clear_string_option(&buf->b_p_nf);
2312#ifdef FEAT_SYN_HL
2313 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002314 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002315#endif
2316#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002317 clear_string_option(&buf->b_s.b_p_spc);
2318 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002319 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002320 buf->b_s.b_cap_prog = NULL;
2321 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002322 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323#endif
2324#ifdef FEAT_SEARCHPATH
2325 clear_string_option(&buf->b_p_sua);
2326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328#ifdef FEAT_CINDENT
2329 clear_string_option(&buf->b_p_cink);
2330 clear_string_option(&buf->b_p_cino);
2331#endif
2332#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2333 clear_string_option(&buf->b_p_cinw);
2334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002336#ifdef FEAT_COMPL_FUNC
2337 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002338 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002339 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002340 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002341 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002342 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344#ifdef FEAT_QUICKFIX
2345 clear_string_option(&buf->b_p_gp);
2346 clear_string_option(&buf->b_p_mp);
2347 clear_string_option(&buf->b_p_efm);
2348#endif
2349 clear_string_option(&buf->b_p_ep);
2350 clear_string_option(&buf->b_p_path);
2351 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002352 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002353#ifdef FEAT_EVAL
2354 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002355 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 clear_string_option(&buf->b_p_dict);
2358 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002359#ifdef FEAT_TEXTOBJ
2360 clear_string_option(&buf->b_p_qe);
2361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002363 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002364#ifdef FEAT_LISP
2365 clear_string_option(&buf->b_p_lw);
2366#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002367 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002368 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369}
2370
2371/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002372 * Get alternate file "n".
2373 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2374 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 * if (options & GETF_SETMARK) call setpcmark()
2376 * if (options & GETF_ALT) we are jumping to an alternate file.
2377 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2378 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002379 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 */
2381 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002382buflist_getfile(
2383 int n,
2384 linenr_T lnum,
2385 int options,
2386 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387{
2388 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 pos_T *fpos;
2391 colnr_T col;
2392
2393 buf = buflist_findnr(n);
2394 if (buf == NULL)
2395 {
2396 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002397 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002399 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 return FAIL;
2401 }
2402
Bram Moolenaarc667da52019-11-30 20:52:27 +01002403 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 if (buf == curbuf)
2405 return OK;
2406
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002407 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002408 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002409 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002411 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002412 if (curbuf_locked())
2413 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414
Bram Moolenaarc667da52019-11-30 20:52:27 +01002415 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 if (lnum == 0)
2417 {
2418 fpos = buflist_findfpos(buf);
2419 lnum = fpos->lnum;
2420 col = fpos->col;
2421 }
2422 else
2423 col = 0;
2424
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 if (options & GETF_SWITCH)
2426 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002427 // If 'switchbuf' contains "useopen": jump to first window containing
2428 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002429 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002431
Bram Moolenaarc667da52019-11-30 20:52:27 +01002432 // If 'switchbuf' contains "usetab": jump to first window in any tab
2433 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002434 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002435 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002436
Bram Moolenaarc667da52019-11-30 20:52:27 +01002437 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2438 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002439 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002440 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002442 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002443 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002444 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2445 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002447 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 }
2449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
2451 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002452 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2453 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 {
2455 --RedrawingDisabled;
2456
Bram Moolenaarc667da52019-11-30 20:52:27 +01002457 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 if (!p_sol && col != 0)
2459 {
2460 curwin->w_cursor.col = col;
2461 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 curwin->w_set_curswant = TRUE;
2464 }
2465 return OK;
2466 }
2467 --RedrawingDisabled;
2468 return FAIL;
2469}
2470
2471/*
2472 * go to the last know line number for the current buffer
2473 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002474 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002475buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476{
2477 pos_T *fpos;
2478
2479 fpos = buflist_findfpos(curbuf);
2480
2481 curwin->w_cursor.lnum = fpos->lnum;
2482 check_cursor_lnum();
2483
2484 if (p_sol)
2485 curwin->w_cursor.col = 0;
2486 else
2487 {
2488 curwin->w_cursor.col = fpos->col;
2489 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 curwin->w_set_curswant = TRUE;
2492 }
2493}
2494
Bram Moolenaar81695252004-12-29 20:58:21 +00002495#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2496/*
2497 * Find file in buffer list by name (it has to be for the current window).
2498 * Returns NULL if not found.
2499 */
2500 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002501buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002502{
2503 char_u *ffname;
2504 buf_T *buf = NULL;
2505
Bram Moolenaarc667da52019-11-30 20:52:27 +01002506 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002507 ffname = FullName_save(fname,
2508#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002509 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002510#else
2511 FALSE
2512#endif
2513 );
2514 if (ffname != NULL)
2515 {
2516 buf = buflist_findname(ffname);
2517 vim_free(ffname);
2518 }
2519 return buf;
2520}
2521#endif
2522
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523/*
2524 * Find file in buffer list by name (it has to be for the current window).
2525 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002526 * Skips dummy buffers.
2527 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 */
2529 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002530buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531{
2532#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002533 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534
2535 if (mch_stat((char *)ffname, &st) < 0)
2536 st.st_dev = (dev_T)-1;
2537 return buflist_findname_stat(ffname, &st);
2538}
2539
2540/*
2541 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2542 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002543 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 */
2545 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002546buflist_findname_stat(
2547 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002548 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549{
2550#endif
2551 buf_T *buf;
2552
Bram Moolenaarc667da52019-11-30 20:52:27 +01002553 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002554 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002555 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556#ifdef UNIX
2557 , stp
2558#endif
2559 ))
2560 return buf;
2561 return NULL;
2562}
2563
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564/*
2565 * Find file in buffer list by a regexp pattern.
2566 * Return fnum of the found buffer.
2567 * Return < 0 for error.
2568 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002570buflist_findpat(
2571 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002572 char_u *pattern_end, // pointer to first char after pattern
2573 int unlisted, // find unlisted buffers
2574 int diffmode UNUSED, // find diff-mode buffers only
2575 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576{
2577 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 int match = -1;
2579 int find_listed;
2580 char_u *pat;
2581 char_u *patend;
2582 int attempt;
2583 char_u *p;
2584 int toggledollar;
2585
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002586 // "%" is current file, "%%" or "#" is alternate file
2587 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2588 || (in_vim9script() && pattern_end == pattern + 2
2589 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002591 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002593 else
2594 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595#ifdef FEAT_DIFF
2596 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2597 match = -1;
2598#endif
2599 }
2600
2601 /*
2602 * Try four ways of matching a listed buffer:
2603 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002604 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 * attempt == 2: with '$' at end (only match at end)
2606 * attempt == 3: with '^' at start and '$' at end (only full match)
2607 * Repeat this for finding an unlisted buffer if there was no matching
2608 * listed buffer.
2609 */
2610 else
2611 {
2612 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2613 if (pat == NULL)
2614 return -1;
2615 patend = pat + STRLEN(pat) - 1;
2616 toggledollar = (patend > pat && *patend == '$');
2617
Bram Moolenaarc667da52019-11-30 20:52:27 +01002618 // First try finding a listed buffer. If not found and "unlisted"
2619 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 find_listed = TRUE;
2621 for (;;)
2622 {
2623 for (attempt = 0; attempt <= 3; ++attempt)
2624 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002625 regmatch_T regmatch;
2626
Bram Moolenaarc667da52019-11-30 20:52:27 +01002627 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002629 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002631 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002633 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002634 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 {
2636 vim_free(pat);
2637 return -1;
2638 }
2639
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002640 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 if (buf->b_p_bl == find_listed
2642#ifdef FEAT_DIFF
2643 && (!diffmode || diff_mode_buf(buf))
2644#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002645 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002647 if (curtab_only)
2648 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002649 // Ignore the match if the buffer is not open in
2650 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002651 win_T *wp;
2652
Bram Moolenaar29323592016-07-24 22:04:11 +02002653 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002654 if (wp->w_buffer == buf)
2655 break;
2656 if (wp == NULL)
2657 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002658 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002659 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 {
2661 match = -2;
2662 break;
2663 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002664 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 }
2666
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002667 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002668 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 break;
2670 }
2671
Bram Moolenaarc667da52019-11-30 20:52:27 +01002672 // Only search for unlisted buffers if there was no match with
2673 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 if (!unlisted || !find_listed || match != -1)
2675 break;
2676 find_listed = FALSE;
2677 }
2678
2679 vim_free(pat);
2680 }
2681
2682 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002683 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002685 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 return match;
2687}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688
Bram Moolenaar52410572019-10-27 05:12:45 +01002689#ifdef FEAT_VIMINFO
2690typedef struct {
2691 buf_T *buf;
2692 char_u *match;
2693} bufmatch_T;
2694#endif
2695
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696/*
2697 * Find all buffer names that match.
2698 * For command line expansion of ":buf" and ":sbuf".
2699 * Return OK if matches found, FAIL otherwise.
2700 */
2701 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002702ExpandBufnames(
2703 char_u *pat,
2704 int *num_file,
2705 char_u ***file,
2706 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707{
2708 int count = 0;
2709 buf_T *buf;
2710 int round;
2711 char_u *p;
2712 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002713 char_u *patc;
Bram Moolenaar52410572019-10-27 05:12:45 +01002714#ifdef FEAT_VIMINFO
2715 bufmatch_T *matches = NULL;
2716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717
Bram Moolenaarc667da52019-11-30 20:52:27 +01002718 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 *file = NULL;
2720
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002721#ifdef FEAT_DIFF
2722 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2723 return FAIL;
2724#endif
2725
Bram Moolenaarc667da52019-11-30 20:52:27 +01002726 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002727 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002729 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002730 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002732 STRCPY(patc, "\\(^\\|[\\/]\\)");
2733 STRCPY(patc + 11, pat + 1);
2734 }
2735 else
2736 patc = pat;
2737
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002738 // attempt == 0: try match with '\<', match at start of word
2739 // attempt == 1: try match without '\<', match anywhere
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002740 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002741 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002742 regmatch_T regmatch;
2743
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002744 if (attempt > 0 && patc == pat)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002745 break; // there was no anchor, no need to try again
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002746 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2747 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002748 {
2749 if (patc != pat)
2750 vim_free(patc);
2751 return FAIL;
2752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002754 // round == 1: Count the matches.
2755 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 for (round = 1; round <= 2; ++round)
2757 {
2758 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002759 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002761 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002763#ifdef FEAT_DIFF
2764 if (options & BUF_DIFF_FILTER)
2765 // Skip buffers not suitable for
2766 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002767 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002768 continue;
2769#endif
2770
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002771 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 if (p != NULL)
2773 {
2774 if (round == 1)
2775 ++count;
2776 else
2777 {
2778 if (options & WILD_HOME_REPLACE)
2779 p = home_replace_save(buf, p);
2780 else
2781 p = vim_strsave(p);
Bram Moolenaar52410572019-10-27 05:12:45 +01002782#ifdef FEAT_VIMINFO
2783 if (matches != NULL)
2784 {
2785 matches[count].buf = buf;
2786 matches[count].match = p;
2787 count++;
2788 }
2789 else
2790#endif
2791 (*file)[count++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 }
2793 }
2794 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002795 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 break;
2797 if (round == 1)
2798 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002799 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 if (*file == NULL)
2801 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002802 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002803 if (patc != pat)
2804 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 return FAIL;
2806 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002807#ifdef FEAT_VIMINFO
2808 if (options & WILD_BUFLASTUSED)
2809 matches = ALLOC_MULT(bufmatch_T, count);
2810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 }
2812 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002813 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002814 if (count) // match(es) found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 break;
2816 }
2817
Bram Moolenaar05159a02005-02-26 23:04:13 +00002818 if (patc != pat)
2819 vim_free(patc);
2820
Bram Moolenaar52410572019-10-27 05:12:45 +01002821#ifdef FEAT_VIMINFO
2822 if (matches != NULL)
2823 {
2824 int i;
2825 if (count > 1)
2826 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2827 // if the current buffer is first in the list, place it at the end
2828 if (matches[0].buf == curbuf)
2829 {
2830 for (i = 1; i < count; i++)
2831 (*file)[i-1] = matches[i].match;
2832 (*file)[count-1] = matches[0].match;
2833 }
2834 else
2835 {
2836 for (i = 0; i < count; i++)
2837 (*file)[i] = matches[i].match;
2838 }
2839 vim_free(matches);
2840 }
2841#endif
2842
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 *num_file = count;
2844 return (count == 0 ? FAIL : OK);
2845}
2846
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847/*
2848 * Check for a match on the file name for buffer "buf" with regprog "prog".
2849 */
2850 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002851buflist_match(
2852 regmatch_T *rmp,
2853 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002854 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855{
2856 char_u *match;
2857
Bram Moolenaarc667da52019-11-30 20:52:27 +01002858 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002859 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002861 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862
2863 return match;
2864}
2865
2866/*
2867 * Try matching the regexp in "prog" with file name "name".
2868 * Return "name" when there is a match, NULL when not.
2869 */
2870 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002871fname_match(
2872 regmatch_T *rmp,
2873 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002874 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875{
2876 char_u *match = NULL;
2877 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878
2879 if (name != NULL)
2880 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002881 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002882 rmp->rm_ic = p_fic || ignore_case;
2883 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 match = name;
2885 else
2886 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002887 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002889 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 match = name;
2891 vim_free(p);
2892 }
2893 }
2894
2895 return match;
2896}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897
2898/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002899 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 */
2901 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002902buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002904 char_u key[VIM_SIZEOF_INT * 2 + 1];
2905 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906
2907 if (nr == 0)
2908 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002909 sprintf((char *)key, "%x", nr);
2910 hi = hash_find(&buf_hashtab, key);
2911
2912 if (!HASHITEM_EMPTY(hi))
2913 return (buf_T *)(hi->hi_key
2914 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 return NULL;
2916}
2917
2918/*
2919 * Get name of file 'n' in the buffer list.
2920 * When the file has no name an empty string is returned.
2921 * home_replace() is used to shorten the file name (used for marks).
2922 * Returns a pointer to allocated memory, of NULL when failed.
2923 */
2924 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002925buflist_nr2name(
2926 int n,
2927 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002928 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929{
2930 buf_T *buf;
2931
2932 buf = buflist_findnr(n);
2933 if (buf == NULL)
2934 return NULL;
2935 return home_replace_save(helptail ? buf : NULL,
2936 fullname ? buf->b_ffname : buf->b_fname);
2937}
2938
2939/*
2940 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2941 * When "copy_options" is TRUE save the local window option values.
2942 * When "lnum" is 0 only do the options.
2943 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002944 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002945buflist_setfpos(
2946 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002947 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01002948 linenr_T lnum,
2949 colnr_T col,
2950 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951{
2952 wininfo_T *wip;
2953
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002954 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 if (wip->wi_win == win)
2956 break;
2957 if (wip == NULL)
2958 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002959 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002960 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 if (wip == NULL)
2962 return;
2963 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002964 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 lnum = 1;
2966 }
2967 else
2968 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002969 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 if (wip->wi_prev)
2971 wip->wi_prev->wi_next = wip->wi_next;
2972 else
2973 buf->b_wininfo = wip->wi_next;
2974 if (wip->wi_next)
2975 wip->wi_next->wi_prev = wip->wi_prev;
2976 if (copy_options && wip->wi_optset)
2977 {
2978 clear_winopt(&wip->wi_opt);
2979#ifdef FEAT_FOLDING
2980 deleteFoldRecurse(&wip->wi_folds);
2981#endif
2982 }
2983 }
2984 if (lnum != 0)
2985 {
2986 wip->wi_fpos.lnum = lnum;
2987 wip->wi_fpos.col = col;
2988 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002989 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002991 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2993#ifdef FEAT_FOLDING
2994 wip->wi_fold_manual = win->w_fold_manual;
2995 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2996#endif
2997 wip->wi_optset = TRUE;
2998 }
2999
Bram Moolenaarc667da52019-11-30 20:52:27 +01003000 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 wip->wi_next = buf->b_wininfo;
3002 buf->b_wininfo = wip;
3003 wip->wi_prev = NULL;
3004 if (wip->wi_next)
3005 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006}
3007
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003008#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003009/*
3010 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3011 * page. That's because a diff is local to a tab page.
3012 */
3013 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003014wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003015{
3016 win_T *wp;
3017
3018 if (wip->wi_opt.wo_diff)
3019 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003020 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003021 // return FALSE when it's a window in the current tab page, thus
3022 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003023 if (wip->wi_win == wp)
3024 return FALSE;
3025 return TRUE;
3026 }
3027 return FALSE;
3028}
3029#endif
3030
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031/*
3032 * Find info for the current window in buffer "buf".
3033 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003034 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003035 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3036 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 * Returns NULL when there isn't any info.
3038 */
3039 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003040find_wininfo(
3041 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003042 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003043 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044{
3045 wininfo_T *wip;
3046
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003047 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003048 if (wip->wi_win == curwin
3049#ifdef FEAT_DIFF
3050 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3051#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003052
3053 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003055
Bram Moolenaarc667da52019-11-30 20:52:27 +01003056 // If no wininfo for curwin, use the first in the list (that doesn't have
3057 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003058 // If "need_options" is TRUE skip entries that don't have options set,
3059 // unless the window is editing "buf", so we can copy from the window
3060 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003061 if (wip == NULL)
3062 {
3063#ifdef FEAT_DIFF
3064 if (skip_diff_buffer)
3065 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003066 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003067 if (!wininfo_other_tab_diff(wip)
3068 && (!need_options || wip->wi_optset
3069 || (wip->wi_win != NULL
3070 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003071 break;
3072 }
3073 else
3074#endif
3075 wip = buf->b_wininfo;
3076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 return wip;
3078}
3079
3080/*
3081 * Reset the local window options to the values last used in this window.
3082 * If the buffer wasn't used in this window before, use the values from
3083 * the most recently used window. If the values were never set, use the
3084 * global values for the window.
3085 */
3086 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003087get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088{
3089 wininfo_T *wip;
3090
3091 clear_winopt(&curwin->w_onebuf_opt);
3092#ifdef FEAT_FOLDING
3093 clearFolding(curwin);
3094#endif
3095
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003096 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003097 if (wip != NULL && wip->wi_win != NULL
3098 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003100 // The buffer is currently displayed in the window: use the actual
3101 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003102 win_T *wp = wip->wi_win;
3103
3104 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3105#ifdef FEAT_FOLDING
3106 curwin->w_fold_manual = wp->w_fold_manual;
3107 curwin->w_foldinvalid = TRUE;
3108 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3109#endif
3110 }
3111 else if (wip != NULL && wip->wi_optset)
3112 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003113 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3115#ifdef FEAT_FOLDING
3116 curwin->w_fold_manual = wip->wi_fold_manual;
3117 curwin->w_foldinvalid = TRUE;
3118 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3119#endif
3120 }
3121 else
3122 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3123
3124#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003125 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 if (p_fdls >= 0)
3127 curwin->w_p_fdl = p_fdls;
3128#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003129 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130}
3131
3132/*
3133 * Find the position (lnum and col) for the buffer 'buf' for the current
3134 * window.
3135 * Returns a pointer to no_position if no position is found.
3136 */
3137 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003138buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139{
3140 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003141 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003143 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 if (wip != NULL)
3145 return &(wip->wi_fpos);
3146 else
3147 return &no_position;
3148}
3149
3150/*
3151 * Find the lnum for the buffer 'buf' for the current window.
3152 */
3153 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003154buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155{
3156 return buflist_findfpos(buf)->lnum;
3157}
3158
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003160 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003163buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
Bram Moolenaar52410572019-10-27 05:12:45 +01003165 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 int len;
3167 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003168 int ro_char;
3169 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003170#ifdef FEAT_TERMINAL
3171 int job_running;
3172 int job_none_open;
3173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174
Bram Moolenaar52410572019-10-27 05:12:45 +01003175#ifdef FEAT_VIMINFO
3176 garray_T buflist;
3177 buf_T **buflist_data = NULL, **p;
3178
3179 if (vim_strchr(eap->arg, 't'))
3180 {
3181 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003182 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003183 {
3184 if (ga_grow(&buflist, 1) == OK)
3185 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3186 }
3187
3188 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3189 sizeof(buf_T *), buf_compare);
3190
Bram Moolenaar3b991522019-11-06 23:26:20 +01003191 buflist_data = (buf_T **)buflist.ga_data;
3192 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003193 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003194 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003195
Bram Moolenaar3b991522019-11-06 23:26:20 +01003196 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003197 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3198 : buf->b_next)
3199#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003201#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003203#ifdef FEAT_TERMINAL
3204 job_running = term_job_running(buf->b_term);
3205 job_none_open = job_running && term_none_open(buf->b_term);
3206#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003207 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003208 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3209 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3210 || (vim_strchr(eap->arg, '+')
3211 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3212 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003213 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003214 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003215 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3216#ifdef FEAT_TERMINAL
3217 || (vim_strchr(eap->arg, 'R')
3218 && (!job_running || (job_running && job_none_open)))
3219 || (vim_strchr(eap->arg, '?')
3220 && (!job_running || (job_running && !job_none_open)))
3221 || (vim_strchr(eap->arg, 'F')
3222 && (job_running || buf->b_term == NULL))
3223#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003224 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3225 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3226 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3227 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3228 || (vim_strchr(eap->arg, '#')
3229 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003232 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 else
3234 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003235 if (message_filtered(NameBuff))
3236 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003238 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3239 : (bufIsChanged(buf) ? '+' : ' ');
3240#ifdef FEAT_TERMINAL
3241 if (term_job_running(buf->b_term))
3242 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003243 if (term_none_open(buf->b_term))
3244 ro_char = '?';
3245 else
3246 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003247 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3248 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003249 }
3250 else if (buf->b_term != NULL)
3251 ro_char = 'F';
3252 else
3253#endif
3254 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3255
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003256 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003257 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 buf->b_fnum,
3259 buf->b_p_bl ? ' ' : 'u',
3260 buf == curbuf ? '%' :
3261 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3262 buf->b_ml.ml_mfp == NULL ? ' ' :
3263 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003264 ro_char,
3265 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003266 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003267 if (len > IOSIZE - 20)
3268 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269
Bram Moolenaarc667da52019-11-30 20:52:27 +01003270 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 i = 40 - vim_strsize(IObuff);
3272 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003274 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003275#ifdef FEAT_VIMINFO
3276 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3277 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3278 else
3279#endif
3280 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3281 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003282 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003284 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 ui_breakcheck();
3286 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003287
3288#ifdef FEAT_VIMINFO
3289 if (buflist_data)
3290 ga_clear(&buflist);
3291#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293
3294/*
3295 * Get file name and line number for file 'fnum'.
3296 * Used by DoOneCmd() for translating '%' and '#'.
3297 * Used by insert_reg() and cmdline_paste() for '#' register.
3298 * Return FAIL if not found, OK for success.
3299 */
3300 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003301buflist_name_nr(
3302 int fnum,
3303 char_u **fname,
3304 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305{
3306 buf_T *buf;
3307
3308 buf = buflist_findnr(fnum);
3309 if (buf == NULL || buf->b_fname == NULL)
3310 return FAIL;
3311
3312 *fname = buf->b_fname;
3313 *lnum = buflist_findlnum(buf);
3314
3315 return OK;
3316}
3317
3318/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003319 * Set the file name for "buf"' to "ffname_arg", short file name to
3320 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 * The file name with the full path is also remembered, for when :cd is used.
3322 * Returns FAIL for failure (file name already in use by other buffer)
3323 * OK otherwise.
3324 */
3325 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003326setfname(
3327 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003328 char_u *ffname_arg,
3329 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003330 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003332 char_u *ffname = ffname_arg;
3333 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003334 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003336 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#endif
3338
3339 if (ffname == NULL || *ffname == NUL)
3340 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003341 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003342 if (buf->b_sfname != buf->b_ffname)
3343 VIM_CLEAR(buf->b_sfname);
3344 else
3345 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003346 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347#ifdef UNIX
3348 st.st_dev = (dev_T)-1;
3349#endif
3350 }
3351 else
3352 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003353 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3354 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 return FAIL;
3356
3357 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003358 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 * - if the buffer is loaded, fail
3360 * - if the buffer is not loaded, delete it from the list
3361 */
3362#ifdef UNIX
3363 if (mch_stat((char *)ffname, &st) < 0)
3364 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003365#endif
3366 if (!(buf->b_flags & BF_DUMMY))
3367#ifdef UNIX
3368 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003370 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371#endif
3372 if (obuf != NULL && obuf != buf)
3373 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003374 win_T *win;
3375 tabpage_T *tab;
3376 int in_use = FALSE;
3377
3378 // during startup a window may use a buffer that is not loaded yet
3379 FOR_ALL_TAB_WINDOWS(tab, win)
3380 if (win->w_buffer == obuf)
3381 in_use = TRUE;
3382
3383 // it's loaded or used in a window, fail
3384 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 {
3386 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003387 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 vim_free(ffname);
3389 return FAIL;
3390 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003391 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003392 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 }
3394 sfname = vim_strsave(sfname);
3395 if (ffname == NULL || sfname == NULL)
3396 {
3397 vim_free(sfname);
3398 vim_free(ffname);
3399 return FAIL;
3400 }
3401#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003402 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003404 if (buf->b_sfname != buf->b_ffname)
3405 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 buf->b_ffname = ffname;
3408 buf->b_sfname = sfname;
3409 }
3410 buf->b_fname = buf->b_sfname;
3411#ifdef UNIX
3412 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003413 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 else
3415 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003416 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 buf->b_dev = st.st_dev;
3418 buf->b_ino = st.st_ino;
3419 }
3420#endif
3421
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423
3424 buf_name_changed(buf);
3425 return OK;
3426}
3427
3428/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003429 * Crude way of changing the name of a buffer. Use with care!
3430 * The name should be relative to the current directory.
3431 */
3432 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003433buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003434{
3435 buf_T *buf;
3436
3437 buf = buflist_findnr(fnum);
3438 if (buf != NULL)
3439 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003440 if (buf->b_sfname != buf->b_ffname)
3441 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003442 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003443 buf->b_ffname = vim_strsave(name);
3444 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003445 // Allocate ffname and expand into full path. Also resolves .lnk
3446 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003447 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003448 buf->b_fname = buf->b_sfname;
3449 }
3450}
3451
3452/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 * Take care of what needs to be done when the name of buffer "buf" has
3454 * changed.
3455 */
3456 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003457buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458{
3459 /*
3460 * If the file name changed, also change the name of the swapfile
3461 */
3462 if (buf->b_ml.ml_mfp != NULL)
3463 ml_setname(buf);
3464
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003465#ifdef FEAT_TERMINAL
3466 if (buf->b_term != NULL)
3467 term_clear_status_text(buf->b_term);
3468#endif
3469
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003471 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003472 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003473 status_redraw_all(); // status lines need to be redrawn
3474 fmarks_check_names(buf); // check named file marks
3475 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476}
3477
3478/*
3479 * set alternate file name for current window
3480 *
3481 * Used by do_one_cmd(), do_write() and do_ecmd().
3482 * Return the buffer.
3483 */
3484 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003485setaltfname(
3486 char_u *ffname,
3487 char_u *sfname,
3488 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489{
3490 buf_T *buf;
3491
Bram Moolenaarc667da52019-11-30 20:52:27 +01003492 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003494 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 curwin->w_alt_fnum = buf->b_fnum;
3496 return buf;
3497}
3498
3499/*
3500 * Get alternate file name for current window.
3501 * Return NULL if there isn't any, and give error message if requested.
3502 */
3503 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003504getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003505 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506{
3507 char_u *fname;
3508 linenr_T dummy;
3509
3510 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3511 {
3512 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003513 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 return NULL;
3515 }
3516 return fname;
3517}
3518
3519/*
3520 * Add a file name to the buflist and return its number.
3521 * Uses same flags as buflist_new(), except BLN_DUMMY.
3522 *
3523 * used by qf_init(), main() and doarglist()
3524 */
3525 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003526buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527{
3528 buf_T *buf;
3529
3530 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3531 if (buf != NULL)
3532 return buf->b_fnum;
3533 return 0;
3534}
3535
3536#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3537/*
3538 * Adjust slashes in file names. Called after 'shellslash' was set.
3539 */
3540 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003541buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542{
3543 buf_T *bp;
3544
Bram Moolenaar29323592016-07-24 22:04:11 +02003545 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 {
3547 if (bp->b_ffname != NULL)
3548 slash_adjust(bp->b_ffname);
3549 if (bp->b_sfname != NULL)
3550 slash_adjust(bp->b_sfname);
3551 }
3552}
3553#endif
3554
3555/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003556 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 * Also save the local window option values.
3558 */
3559 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003560buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003562 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563}
3564
3565/*
3566 * Return TRUE if 'ffname' is not the same file as current file.
3567 * Fname must have a full path (expanded by mch_FullName()).
3568 */
3569 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003570otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571{
3572 return otherfile_buf(curbuf, ffname
3573#ifdef UNIX
3574 , NULL
3575#endif
3576 );
3577}
3578
3579 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003580otherfile_buf(
3581 buf_T *buf,
3582 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003584 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003586 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003588 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3590 return TRUE;
3591 if (fnamecmp(ffname, buf->b_ffname) == 0)
3592 return FALSE;
3593#ifdef UNIX
3594 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003595 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596
Bram Moolenaarc667da52019-11-30 20:52:27 +01003597 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 if (stp == NULL)
3599 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003600 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 st.st_dev = (dev_T)-1;
3602 stp = &st;
3603 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003604 // Use dev/ino to check if the files are the same, even when the names
3605 // are different (possible with links). Still need to compare the
3606 // name above, for when the file doesn't exist yet.
3607 // Problem: The dev/ino changes when a file is deleted (and created
3608 // again) and remains the same when renamed/moved. We don't want to
3609 // mch_stat() each buffer each time, that would be too slow. Get the
3610 // dev/ino again when they appear to match, but not when they appear
3611 // to be different: Could skip a buffer when it's actually the same
3612 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 if (buf_same_ino(buf, stp))
3614 {
3615 buf_setino(buf);
3616 if (buf_same_ino(buf, stp))
3617 return FALSE;
3618 }
3619 }
3620#endif
3621 return TRUE;
3622}
3623
3624#if defined(UNIX) || defined(PROTO)
3625/*
3626 * Set inode and device number for a buffer.
3627 * Must always be called when b_fname is changed!.
3628 */
3629 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003630buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003632 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633
3634 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3635 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003636 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 buf->b_dev = st.st_dev;
3638 buf->b_ino = st.st_ino;
3639 }
3640 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003641 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642}
3643
3644/*
3645 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3646 */
3647 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003648buf_same_ino(
3649 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003650 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003652 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 && stp->st_dev == buf->b_dev
3654 && stp->st_ino == buf->b_ino);
3655}
3656#endif
3657
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003658/*
3659 * Print info about the current buffer.
3660 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003662fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003663 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003664 int shorthelp,
3665 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666{
3667 char_u *name;
3668 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003669 char *p;
3670 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003671 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003673 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 if (buffer == NULL)
3675 return;
3676
Bram Moolenaarc667da52019-11-30 20:52:27 +01003677 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003679 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 p = buffer + STRLEN(buffer);
3681 }
3682 else
3683 p = buffer;
3684
3685 *p++ = '"';
3686 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003687 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 else
3689 {
3690 if (!fullname && curbuf->b_fname != NULL)
3691 name = curbuf->b_fname;
3692 else
3693 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003694 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 (int)(IOSIZE - (p - buffer)), TRUE);
3696 }
3697
Bram Moolenaar32526b32019-01-19 17:43:09 +01003698 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 curbufIsChanged() ? (shortmess(SHM_MOD)
3700 ? " [+]" : _(" [Modified]")) : " ",
3701 (curbuf->b_flags & BF_NOTEDITED)
3702#ifdef FEAT_QUICKFIX
3703 && !bt_dontwrite(curbuf)
3704#endif
3705 ? _("[Not edited]") : "",
3706 (curbuf->b_flags & BF_NEW)
3707#ifdef FEAT_QUICKFIX
3708 && !bt_dontwrite(curbuf)
3709#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003710 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003712 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 : _("[readonly]")) : "",
3714 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3715 || curbuf->b_p_ro) ?
3716 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003717 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3718 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 if (curwin->w_cursor.lnum > 1000000L)
3720 n = (int)(((long)curwin->w_cursor.lnum) /
3721 ((long)curbuf->b_ml.ml_line_count / 100L));
3722 else
3723 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3724 (long)curbuf->b_ml.ml_line_count);
3725 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003726 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727#ifdef FEAT_CMDL_INFO
3728 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003729 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003730 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003731 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3732 curbuf->b_ml.ml_line_count),
3733 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734#endif
3735 else
3736 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003737 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 _("line %ld of %ld --%d%%-- col "),
3739 (long)curwin->w_cursor.lnum,
3740 (long)curbuf->b_ml.ml_line_count,
3741 n);
3742 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003743 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003744 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3746 }
3747
Bram Moolenaar32526b32019-01-19 17:43:09 +01003748 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3749 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750
3751 if (dont_truncate)
3752 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003753 // Temporarily set msg_scroll to avoid the message being truncated.
3754 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 msg_start();
3756 n = msg_scroll;
3757 msg_scroll = TRUE;
3758 msg(buffer);
3759 msg_scroll = n;
3760 }
3761 else
3762 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003763 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003765 // Need to repeat the message after redrawing when:
3766 // - When restart_edit is set (otherwise there will be a delay
3767 // before redrawing).
3768 // - When the screen was scrolled but there is no wait-return
3769 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003770 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 }
3772
3773 vim_free(buffer);
3774}
3775
3776 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003777col_print(
3778 char_u *buf,
3779 size_t buflen,
3780 int col,
3781 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782{
3783 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003784 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003786 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787}
3788
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789static char_u *lasttitle = NULL;
3790static char_u *lasticon = NULL;
3791
Bram Moolenaar84a93082018-06-16 22:58:15 +02003792/*
3793 * Put the file name in the title bar and icon of the window.
3794 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003796maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797{
3798 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003799 char_u *title_str = NULL;
3800 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 int maxlen = 0;
3802 int len;
3803 int mustset;
3804 char_u buf[IOSIZE];
3805 int off;
3806
3807 if (!redrawing())
3808 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003809 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 need_maketitle = TRUE;
3811 return;
3812 }
3813
3814 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003815 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003816 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817
3818 if (p_title)
3819 {
3820 if (p_titlelen > 0)
3821 {
3822 maxlen = p_titlelen * Columns / 100;
3823 if (maxlen < 10)
3824 maxlen = 10;
3825 }
3826
Bram Moolenaar84a93082018-06-16 22:58:15 +02003827 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 if (*p_titlestring != NUL)
3829 {
3830#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003831 if (stl_syntax & STL_IN_TITLE)
3832 {
3833 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003834 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003835
3836# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003837 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003838# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003839 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003840 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003841 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003842 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003843 set_string_option_direct((char_u *)"titlestring", -1,
3844 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 else
3847#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003848 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 }
3850 else
3851 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003852 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853
Bram Moolenaar2c666692012-09-05 13:30:40 +02003854#define SPACE_FOR_FNAME (IOSIZE - 100)
3855#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003856#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003858 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003859#ifdef FEAT_TERMINAL
3860 else if (curbuf->b_term != NULL)
3861 {
3862 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3863 SPACE_FOR_FNAME);
3864 }
3865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 else
3867 {
3868 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003869 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 }
3872
Bram Moolenaar21554412017-07-24 21:44:43 +02003873#ifdef FEAT_TERMINAL
3874 if (curbuf->b_term == NULL)
3875#endif
3876 switch (bufIsChanged(curbuf)
3877 + (curbuf->b_p_ro * 2)
3878 + (!curbuf->b_p_ma * 4))
3879 {
3880 case 1: STRCAT(buf, " +"); break;
3881 case 2: STRCAT(buf, " ="); break;
3882 case 3: STRCAT(buf, " =+"); break;
3883 case 4:
3884 case 6: STRCAT(buf, " -"); break;
3885 case 5:
3886 case 7: STRCAT(buf, " -+"); break;
3887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888
Bram Moolenaar21554412017-07-24 21:44:43 +02003889 if (curbuf->b_fname != NULL
3890#ifdef FEAT_TERMINAL
3891 && curbuf->b_term == NULL
3892#endif
3893 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003895 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 off = (int)STRLEN(buf);
3897 buf[off++] = ' ';
3898 buf[off++] = '(';
3899 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003900 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003902 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 if (isalpha(buf[off]) && buf[off + 1] == ':')
3904 off += 2;
3905#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003906 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003907 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003909 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003910 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003911 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003912 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003916
Bram Moolenaarc667da52019-11-30 20:52:27 +01003917 // Translate unprintable chars and concatenate. Keep some
3918 // room for the server name. When there is no room (very long
3919 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003920 if (off < SPACE_FOR_DIR)
3921 {
3922 p = transstr(buf + off);
3923 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3924 vim_free(p);
3925 }
3926 else
3927 {
3928 vim_strncpy(buf + off, (char_u *)"...",
3929 (size_t)(SPACE_FOR_ARGNR - off));
3930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 STRCAT(buf, ")");
3932 }
3933
Bram Moolenaar2c666692012-09-05 13:30:40 +02003934 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935
3936#if defined(FEAT_CLIENTSERVER)
3937 if (serverName != NULL)
3938 {
3939 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003940 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 }
3942 else
3943#endif
3944 STRCAT(buf, " - VIM");
3945
3946 if (maxlen > 0)
3947 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003948 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003949 if (vim_strsize(buf) > maxlen)
3950 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 }
3952 }
3953 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003954 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955
3956 if (p_icon)
3957 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003958 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 if (*p_iconstring != NUL)
3960 {
3961#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003962 if (stl_syntax & STL_IN_ICON)
3963 {
3964 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003965 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003966
3967# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003968 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003969# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003970 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003971 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003972 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003973 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003974 set_string_option_direct((char_u *)"iconstring", -1,
3975 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 else
3978#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003979 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 }
3981 else
3982 {
3983 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003984 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003985 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02003986 p = gettail(curbuf->b_ffname);
3987 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003988 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003989 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 if (len > 100)
3991 {
3992 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003994 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003995 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003997 STRCPY(icon_str, p);
3998 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 }
4000 }
4001
Bram Moolenaar84a93082018-06-16 22:58:15 +02004002 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003
4004 if (mustset)
4005 resettitle();
4006}
4007
4008/*
4009 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4010 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004011 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 */
4013 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004014value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015{
4016 if ((str == NULL) != (*last == NULL)
4017 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4018 {
4019 vim_free(*last);
4020 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004021 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004023 mch_restore_title(
4024 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004027 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004029 return TRUE;
4030 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 }
4032 return FALSE;
4033}
4034
4035/*
4036 * Put current window title back (used after calling a shell)
4037 */
4038 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004039resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040{
4041 mch_settitle(lasttitle, lasticon);
4042}
Bram Moolenaarea408852005-06-25 22:49:46 +00004043
4044# if defined(EXITFREE) || defined(PROTO)
4045 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004046free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004047{
4048 vim_free(lasttitle);
4049 vim_free(lasticon);
4050}
4051# endif
4052
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004054#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004055
4056/*
4057 * Used for building in the status line.
4058 */
4059typedef struct
4060{
4061 char_u *stl_start;
4062 int stl_minwid;
4063 int stl_maxwid;
4064 enum {
4065 Normal,
4066 Empty,
4067 Group,
4068 Middle,
4069 Highlight,
4070 TabPage,
4071 Trunc
4072 } stl_type;
4073} stl_item_T;
4074
4075static size_t stl_items_len = 20; // Initial value, grows as needed.
4076static stl_item_T *stl_items = NULL;
4077static int *stl_groupitem = NULL;
4078static stl_hlrec_T *stl_hltab = NULL;
4079static stl_hlrec_T *stl_tabtab = NULL;
4080
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004082 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 * Return length of string in screen cells.
4084 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004085 * Normally works for window "wp", except when working for 'tabline' then it
4086 * is "curwin".
4087 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 * Items are drawn interspersed with the text that surrounds it
4089 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4090 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4091 *
4092 * If maxwidth is not zero, the string will be filled at any middle marker
4093 * or truncated if too long, fillchar is used for all whitespace.
4094 */
4095 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004096build_stl_str_hl(
4097 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004098 char_u *out, // buffer to write into != NameBuff
4099 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004100 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004101 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004102 int fillchar,
4103 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004104 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4105 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106{
Bram Moolenaar10772302019-01-20 18:25:54 +01004107 linenr_T lnum;
4108 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 char_u *p;
4110 char_u *s;
4111 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004112 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004114 win_T *save_curwin;
4115 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004116 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117#endif
4118 int empty_line;
4119 colnr_T virtcol;
4120 long l;
4121 long n;
4122 int prevchar_isflag;
4123 int prevchar_isitem;
4124 int itemisflag;
4125 int fillable;
4126 char_u *str;
4127 long num;
4128 int width;
4129 int itemcnt;
4130 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004131 int group_end_userhl;
4132 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004134#ifdef FEAT_EVAL
4135 int evaldepth;
4136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 int minwid;
4138 int maxwid;
4139 int zeropad;
4140 char_u base;
4141 char_u opt;
4142#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004143 char_u buf_tmp[TMPLEN];
4144 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004145 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004146 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004147 int save_must_redraw = must_redraw;
4148 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004149
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004150 if (stl_items == NULL)
4151 {
4152 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4153 stl_groupitem = ALLOC_MULT(int, stl_items_len);
4154 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4155 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4156 }
4157
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004158#ifdef FEAT_EVAL
4159 /*
4160 * When the format starts with "%!" then evaluate it as an expression and
4161 * use the result as the actual format string.
4162 */
4163 if (fmt[0] == '%' && fmt[1] == '!')
4164 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004165 typval_T tv;
4166
4167 tv.v_type = VAR_NUMBER;
4168 tv.vval.v_number = wp->w_id;
4169 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4170
Bram Moolenaar9530b582022-01-22 13:39:08 +00004171 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004172 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004173 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004174
4175 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004176 }
4177#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178
4179 if (fillchar == 0)
4180 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004181
Bram Moolenaar10772302019-01-20 18:25:54 +01004182 // The cursor in windows other than the current one isn't always
4183 // up-to-date, esp. because of autocommands and timers.
4184 lnum = wp->w_cursor.lnum;
4185 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4186 {
4187 lnum = wp->w_buffer->b_ml.ml_line_count;
4188 wp->w_cursor.lnum = lnum;
4189 }
4190
4191 // Get line & check if empty (cursorpos will show "0-1"). Note that
4192 // p will become invalid when getting another buffer line.
4193 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004194 empty_line = (*p == NUL);
4195
Bram Moolenaar10772302019-01-20 18:25:54 +01004196 // Get the byte value now, in case we need it below. This is more efficient
4197 // than making a copy of the line.
4198 len = STRLEN(p);
4199 if (wp->w_cursor.col > (colnr_T)len)
4200 {
4201 // Line may have changed since checking the cursor column, or the lnum
4202 // was adjusted above.
4203 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004204 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004205 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004206 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004207 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004208 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209
4210 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004211#ifdef FEAT_EVAL
4212 evaldepth = 0;
4213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 p = out;
4215 curitem = 0;
4216 prevchar_isflag = TRUE;
4217 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004218 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004220 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004221 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004222 size_t new_len = stl_items_len * 3 / 2;
4223 stl_item_T *new_items;
4224 int *new_groupitem;
4225 stl_hlrec_T *new_hlrec;
4226
4227 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4228 if (new_items == NULL)
4229 break;
4230 stl_items = new_items;
4231 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4232 if (new_groupitem == NULL)
4233 break;
4234 stl_groupitem = new_groupitem;
4235 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len);
4236 if (new_hlrec == NULL)
4237 break;
4238 stl_hltab = new_hlrec;
4239 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len);
4240 if (new_hlrec == NULL)
4241 break;
4242 stl_tabtab = new_hlrec;
4243 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004244 }
4245
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 if (*s != NUL && *s != '%')
4247 prevchar_isflag = prevchar_isitem = FALSE;
4248
4249 /*
4250 * Handle up to the next '%' or the end.
4251 */
4252 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4253 *p++ = *s++;
4254 if (*s == NUL || p + 1 >= out + outlen)
4255 break;
4256
4257 /*
4258 * Handle one '%' item.
4259 */
4260 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004261 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004262 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 if (*s == '%')
4264 {
4265 if (p + 1 >= out + outlen)
4266 break;
4267 *p++ = *s++;
4268 prevchar_isflag = prevchar_isitem = FALSE;
4269 continue;
4270 }
4271 if (*s == STL_MIDDLEMARK)
4272 {
4273 s++;
4274 if (groupdepth > 0)
4275 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004276 stl_items[curitem].stl_type = Middle;
4277 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 continue;
4279 }
4280 if (*s == STL_TRUNCMARK)
4281 {
4282 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004283 stl_items[curitem].stl_type = Trunc;
4284 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 continue;
4286 }
4287 if (*s == ')')
4288 {
4289 s++;
4290 if (groupdepth < 1)
4291 continue;
4292 groupdepth--;
4293
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004294 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 *p = NUL;
4296 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004297 if (curitem > stl_groupitem[groupdepth] + 1
4298 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004300 // remove group if all items are empty and highlight group
4301 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004302 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004303 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004304 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004305 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004306 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004307 group_start_userhl = group_end_userhl =
4308 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004309 break;
4310 }
4311 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004312 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004313 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004314 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004316 if (stl_items[n].stl_type == Highlight)
4317 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004318 }
4319 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004321 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 p = t;
4323 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004324 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004325 {
4326 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004327 if (stl_items[n].stl_type == Highlight)
4328 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004329 // adjust the start position of TabPage to the next
4330 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004331 if (stl_items[n].stl_type == TabPage)
4332 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 }
4335 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004336 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004338 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 if (has_mbyte)
4340 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004341 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004343 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 {
4345 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004346 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 }
4348 }
4349 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004350 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4351 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352
4353 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004354 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004356
4357 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004358 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004359 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360
Bram Moolenaarc667da52019-11-30 20:52:27 +01004361 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004362 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004364 stl_items[l].stl_start -= n;
4365 if (stl_items[l].stl_start < t)
4366 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 }
4368 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004369 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004371 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004372 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 if (n < 0)
4374 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004375 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 n = 0 - n;
4377 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004378 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 }
4380 else
4381 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004382 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004383 l = (n - l) * MB_CHAR2LEN(fillchar);
4384 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004386 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004388 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4389 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004391 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 }
4393 }
4394 continue;
4395 }
4396 minwid = 0;
4397 maxwid = 9999;
4398 zeropad = FALSE;
4399 l = 1;
4400 if (*s == '0')
4401 {
4402 s++;
4403 zeropad = TRUE;
4404 }
4405 if (*s == '-')
4406 {
4407 s++;
4408 l = -1;
4409 }
4410 if (VIM_ISDIGIT(*s))
4411 {
4412 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004413 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 minwid = 0;
4415 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004416 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004418 stl_items[curitem].stl_type = Highlight;
4419 stl_items[curitem].stl_start = p;
4420 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 s++;
4422 curitem++;
4423 continue;
4424 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004425 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4426 {
4427 if (*s == STL_TABCLOSENR)
4428 {
4429 if (minwid == 0)
4430 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004431 // %X ends the close label, go back to the previously
4432 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004433 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004434 if (stl_items[n].stl_type == TabPage
4435 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004436 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004437 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004438 break;
4439 }
4440 }
4441 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004442 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004443 minwid = - minwid;
4444 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004445 stl_items[curitem].stl_type = TabPage;
4446 stl_items[curitem].stl_start = p;
4447 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004448 s++;
4449 curitem++;
4450 continue;
4451 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 if (*s == '.')
4453 {
4454 s++;
4455 if (VIM_ISDIGIT(*s))
4456 {
4457 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004458 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 maxwid = 50;
4460 }
4461 }
4462 minwid = (minwid > 50 ? 50 : minwid) * l;
4463 if (*s == '(')
4464 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004465 stl_groupitem[groupdepth++] = curitem;
4466 stl_items[curitem].stl_type = Group;
4467 stl_items[curitem].stl_start = p;
4468 stl_items[curitem].stl_minwid = minwid;
4469 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 s++;
4471 curitem++;
4472 continue;
4473 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004474#ifdef FEAT_EVAL
4475 // Denotes end of expanded %{} block
4476 if (*s == '}' && evaldepth > 0)
4477 {
4478 s++;
4479 evaldepth--;
4480 continue;
4481 }
4482#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 if (vim_strchr(STL_ALL, *s) == NULL)
4484 {
4485 s++;
4486 continue;
4487 }
4488 opt = *s++;
4489
Bram Moolenaarc667da52019-11-30 20:52:27 +01004490 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 base = 'D';
4492 itemisflag = FALSE;
4493 fillable = TRUE;
4494 num = -1;
4495 str = NULL;
4496 switch (opt)
4497 {
4498 case STL_FILEPATH:
4499 case STL_FULLPATH:
4500 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004501 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004503 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 else
4505 {
4506 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004507 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4509 }
4510 trans_characters(NameBuff, MAXPATHL);
4511 if (opt != STL_FILENAME)
4512 str = NameBuff;
4513 else
4514 str = gettail(NameBuff);
4515 break;
4516
Bram Moolenaarc667da52019-11-30 20:52:27 +01004517 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004518 {
4519#ifdef FEAT_EVAL
4520 char_u *block_start = s - 1;
4521#endif
4522 int reevaluate = (*s == '%');
4523
4524 if (reevaluate)
4525 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 itemisflag = TRUE;
4527 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004528 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4529 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004531 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 break;
4533 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004534 if (reevaluate)
4535 p[-1] = 0; // remove the % at the end of %{% expr %}
4536 else
4537 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004540 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4541 "%d", curbuf->b_fnum);
4542 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4543 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4544 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004546 save_curbuf = curbuf;
4547 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004548 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 curwin = wp;
4550 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004551 // Visual mode is only valid in the current window.
4552 if (curwin != save_curwin)
4553 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554
Bram Moolenaar9530b582022-01-22 13:39:08 +00004555 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004557 curwin = save_curwin;
4558 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004559 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004560 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004561 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
4563 if (str != NULL && *str != 0)
4564 {
4565 if (*skipdigits(str) == NUL)
4566 {
4567 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004568 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 itemisflag = FALSE;
4570 }
4571 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004572
4573 // If the output of the expression needs to be evaluated
4574 // replace the %{} block with the result of evaluation
4575 if (reevaluate && str != NULL && *str != 0
4576 && strchr((const char *)str, '%') != NULL
4577 && evaldepth < MAX_STL_EVAL_DEPTH)
4578 {
4579 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4580 size_t str_length = strlen((const char *)str);
4581 size_t fmt_length = strlen((const char *)s);
4582 size_t new_fmt_len = parsed_usefmt
4583 + str_length + fmt_length + 3;
4584 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4585 char_u *new_fmt_p = new_fmt;
4586
4587 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4588 + parsed_usefmt;
4589 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4590 + str_length;
4591 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4592 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4593 + fmt_length;
4594 *new_fmt_p = 0;
4595 new_fmt_p = NULL;
4596
4597 if (usefmt != fmt)
4598 vim_free(usefmt);
4599 VIM_CLEAR(str);
4600 usefmt = new_fmt;
4601 s = usefmt + parsed_usefmt;
4602 evaldepth++;
4603 continue;
4604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605#endif
4606 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 case STL_LINE:
4609 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4610 ? 0L : (long)(wp->w_cursor.lnum);
4611 break;
4612
4613 case STL_NUMLINES:
4614 num = wp->w_buffer->b_ml.ml_line_count;
4615 break;
4616
4617 case STL_COLUMN:
4618 num = !(State & INSERT) && empty_line
4619 ? 0 : (int)wp->w_cursor.col + 1;
4620 break;
4621
4622 case STL_VIRTCOL:
4623 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004624 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004625 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 if (opt == STL_VIRTCOL_ALT
4627 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4628 ? 0 : (int)wp->w_cursor.col + 1)))
4629 break;
4630 num = (long)virtcol;
4631 break;
4632
4633 case STL_PERCENTAGE:
4634 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4635 (long)wp->w_buffer->b_ml.ml_line_count);
4636 break;
4637
4638 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004639 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004640 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 break;
4642
4643 case STL_ARGLISTSTAT:
4644 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004645 buf_tmp[0] = 0;
4646 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4647 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 break;
4649
4650 case STL_KEYMAP:
4651 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004652 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4653 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 break;
4655 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004656#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004657 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658#else
4659 num = 0;
4660#endif
4661 break;
4662
4663 case STL_BUFNO:
4664 num = wp->w_buffer->b_fnum;
4665 break;
4666
4667 case STL_OFFSET_X:
4668 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004669 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 case STL_OFFSET:
4671#ifdef FEAT_BYTEOFF
4672 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4673 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4674 0L : l + 1 + (!(State & INSERT) && empty_line ?
4675 0 : (int)wp->w_cursor.col);
4676#endif
4677 break;
4678
4679 case STL_BYTEVAL_X:
4680 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004681 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004683 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 if (num == NL)
4685 num = 0;
4686 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4687 num = NL;
4688 break;
4689
4690 case STL_ROFLAG:
4691 case STL_ROFLAG_ALT:
4692 itemisflag = TRUE;
4693 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004694 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 break;
4696
4697 case STL_HELPFLAG:
4698 case STL_HELPFLAG_ALT:
4699 itemisflag = TRUE;
4700 if (wp->w_buffer->b_help)
4701 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004702 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 break;
4704
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 case STL_FILETYPE:
4706 if (*wp->w_buffer->b_p_ft != NUL
4707 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4708 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004709 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004710 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004711 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 }
4713 break;
4714
4715 case STL_FILETYPE_ALT:
4716 itemisflag = TRUE;
4717 if (*wp->w_buffer->b_p_ft != NUL
4718 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4719 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004720 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004721 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004722 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004724 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 }
4726 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727
Bram Moolenaar4033c552017-09-16 20:54:51 +02004728#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 case STL_PREVIEWFLAG:
4730 case STL_PREVIEWFLAG_ALT:
4731 itemisflag = TRUE;
4732 if (wp->w_p_pvw)
4733 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4734 : _("[Preview]"));
4735 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004736
4737 case STL_QUICKFIX:
4738 if (bt_quickfix(wp->w_buffer))
4739 str = (char_u *)(wp->w_llist_ref
4740 ? _(msg_loclist)
4741 : _(msg_qflist));
4742 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743#endif
4744
4745 case STL_MODIFIED:
4746 case STL_MODIFIED_ALT:
4747 itemisflag = TRUE;
4748 switch ((opt == STL_MODIFIED_ALT)
4749 + bufIsChanged(wp->w_buffer) * 2
4750 + (!wp->w_buffer->b_p_ma) * 4)
4751 {
4752 case 2: str = (char_u *)"[+]"; break;
4753 case 3: str = (char_u *)",+"; break;
4754 case 4: str = (char_u *)"[-]"; break;
4755 case 5: str = (char_u *)",-"; break;
4756 case 6: str = (char_u *)"[+-]"; break;
4757 case 7: str = (char_u *)",+-"; break;
4758 }
4759 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004760
4761 case STL_HIGHLIGHT:
4762 t = s;
4763 while (*s != '#' && *s != NUL)
4764 ++s;
4765 if (*s == '#')
4766 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004767 stl_items[curitem].stl_type = Highlight;
4768 stl_items[curitem].stl_start = p;
4769 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004770 curitem++;
4771 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004772 if (*s != NUL)
4773 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004774 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 }
4776
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004777 stl_items[curitem].stl_start = p;
4778 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 if (str != NULL && *str)
4780 {
4781 t = str;
4782 if (itemisflag)
4783 {
4784 if ((t[0] && t[1])
4785 && ((!prevchar_isitem && *t == ',')
4786 || (prevchar_isflag && *t == ' ')))
4787 t++;
4788 prevchar_isflag = TRUE;
4789 }
4790 l = vim_strsize(t);
4791 if (l > 0)
4792 prevchar_isitem = TRUE;
4793 if (l > maxwid)
4794 {
4795 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 if (has_mbyte)
4797 {
4798 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004799 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 }
4801 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 l -= byte2cells(*t++);
4803 if (p + 1 >= out + outlen)
4804 break;
4805 *p++ = '<';
4806 }
4807 if (minwid > 0)
4808 {
4809 for (; l < minwid && p + 1 < out + outlen; l++)
4810 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004811 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4813 *p++ = ' ';
4814 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004815 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 }
4817 minwid = 0;
4818 }
4819 else
4820 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004821 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004823 // Change a space by fillchar, unless fillchar is '-' and a
4824 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004825 if (fillable && *t == ' '
4826 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4827 MB_CHAR2BYTES(fillchar, p);
4828 else
4829 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 }
4831 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004832 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 }
4834 else if (num >= 0)
4835 {
4836 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4837 char_u nstr[20];
4838
4839 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004840 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 prevchar_isitem = TRUE;
4842 t = nstr;
4843 if (opt == STL_VIRTCOL_ALT)
4844 {
4845 *t++ = '-';
4846 minwid--;
4847 }
4848 *t++ = '%';
4849 if (zeropad)
4850 *t++ = '0';
4851 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004852 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 *t = 0;
4854
4855 for (n = num, l = 1; n >= nbase; n /= nbase)
4856 l++;
4857 if (opt == STL_VIRTCOL_ALT)
4858 l++;
4859 if (l > maxwid)
4860 {
4861 l += 2;
4862 n = l - maxwid;
4863 while (l-- > maxwid)
4864 num /= nbase;
4865 *t++ = '>';
4866 *t++ = '%';
4867 *t = t[-3];
4868 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004869 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4870 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 }
4872 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004873 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4874 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 p += STRLEN(p);
4876 }
4877 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004878 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879
4880 if (opt == STL_VIM_EXPR)
4881 vim_free(str);
4882
4883 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004884 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 curitem++;
4886 }
4887 *p = NUL;
4888 itemcnt = curitem;
4889
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004890#ifdef FEAT_EVAL
4891 if (usefmt != fmt)
4892 vim_free(usefmt);
4893#endif
4894
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 width = vim_strsize(out);
4896 if (maxwidth > 0 && width > maxwidth)
4897 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004898 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 l = 0;
4900 if (itemcnt == 0)
4901 s = out;
4902 else
4903 {
4904 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004905 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004907 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004908 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 break;
4910 }
4911 if (l == itemcnt)
4912 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004913 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004914 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 l = 0;
4916 }
4917 }
4918
4919 if (width - vim_strsize(s) >= maxwidth)
4920 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004921 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 if (has_mbyte)
4923 {
4924 s = out;
4925 width = 0;
4926 for (;;)
4927 {
4928 width += ptr2cells(s);
4929 if (width >= maxwidth)
4930 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004931 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01004933 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004935 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 }
4937 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 s = out + maxwidth - 1;
4939 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004940 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 break;
4942 itemcnt = l;
4943 *s++ = '>';
4944 *s = 0;
4945 }
4946 else
4947 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (has_mbyte)
4949 {
4950 n = 0;
4951 while (width >= maxwidth)
4952 {
4953 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004954 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 }
4956 }
4957 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 n = width - maxwidth + 1;
4959 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004960 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 *s = '<';
4962
Bram Moolenaarc667da52019-11-30 20:52:27 +01004963 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 while (++width < maxwidth)
4965 {
4966 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01004967 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 *s = NUL;
4969 }
4970
Bram Moolenaarc667da52019-11-30 20:52:27 +01004971 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 for (; l < itemcnt; l++)
4973 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004974 if (stl_items[l].stl_start - n >= s)
4975 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004977 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 }
4979 }
4980 width = maxwidth;
4981 }
4982 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4983 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004984 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004986 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 break;
4988 if (l < itemcnt)
4989 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01004990 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
4991 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004992 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01004993 for (s = stl_items[l].stl_start; s < p;)
4994 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004996 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 width = maxwidth;
4998 }
4999 }
5000
Bram Moolenaarc667da52019-11-30 20:52:27 +01005001 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005002 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005004 *hltab = stl_hltab;
5005 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 for (l = 0; l < itemcnt; l++)
5007 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005008 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005010 sp->start = stl_items[l].stl_start;
5011 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005012 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 }
5014 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005015 sp->start = NULL;
5016 sp->userhl = 0;
5017 }
5018
Bram Moolenaarc667da52019-11-30 20:52:27 +01005019 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005020 if (tabtab != NULL)
5021 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005022 *tabtab = stl_tabtab;
5023 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005024 for (l = 0; l < itemcnt; l++)
5025 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005026 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005027 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005028 sp->start = stl_items[l].stl_start;
5029 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005030 sp++;
5031 }
5032 }
5033 sp->start = NULL;
5034 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 }
5036
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005037 // When inside update_screen we do not want redrawing a statusline, ruler,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005038 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005039 if (updating_screen)
5040 {
5041 must_redraw = save_must_redraw;
5042 curwin->w_redr_type = save_redr_type;
5043 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005044
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 return width;
5046}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005047#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005049#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5050 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005052 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5053 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 */
5055 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005056get_rel_pos(
5057 win_T *wp,
5058 char_u *buf,
5059 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005061 long above; // number of lines above window
5062 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063
Bram Moolenaarc667da52019-11-30 20:52:27 +01005064 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005065 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 above = wp->w_topline - 1;
5067#ifdef FEAT_DIFF
5068 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005069 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005070 above = 0; // All buffer lines are displayed and there is an
5071 // indication of filler lines, that can be considered
5072 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073#endif
5074 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5075 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005076 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5077 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005079 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005081 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 ? (int)(above / ((above + below) / 100L))
5083 : (int)(above * 100L / (above + below)));
5084}
5085#endif
5086
5087/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005088 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 * Return TRUE if it was appended.
5090 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005091 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005092append_arg_number(
5093 win_T *wp,
5094 char_u *buf,
5095 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005096 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097{
5098 char_u *p;
5099
Bram Moolenaarc667da52019-11-30 20:52:27 +01005100 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 return FALSE;
5102
Bram Moolenaarc667da52019-11-30 20:52:27 +01005103 p = buf + STRLEN(buf); // go to the end of the buffer
5104 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 return FALSE;
5106 *p++ = ' ';
5107 *p++ = '(';
5108 if (add_file)
5109 {
5110 STRCPY(p, "file ");
5111 p += 5;
5112 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005113 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5114 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5116 return TRUE;
5117}
5118
5119/*
5120 * If fname is not a full path, make it a full path.
5121 * Returns pointer to allocated memory (NULL for failure).
5122 */
5123 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005124fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125{
5126 /*
5127 * Force expanding the path always for Unix, because symbolic links may
5128 * mess up the full path name, even though it starts with a '/'.
5129 * Also expand when there is ".." in the file name, try to remove it,
5130 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005131 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 * For MS-Windows also expand names like "longna~1" to "longname".
5133 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005134#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 return FullName_save(fname, TRUE);
5136#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005137 if (!vim_isAbsName(fname)
5138 || strstr((char *)fname, "..") != NULL
5139 || strstr((char *)fname, "//") != NULL
5140# ifdef BACKSLASH_IN_FILENAME
5141 || strstr((char *)fname, "\\\\") != NULL
5142# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005143# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005145# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 )
5147 return FullName_save(fname, FALSE);
5148
5149 fname = vim_strsave(fname);
5150
Bram Moolenaar9b942202007-10-03 12:31:33 +00005151# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005152 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005153 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005154# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155
5156 return fname;
5157#endif
5158}
5159
5160/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005161 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5162 * "*ffname" becomes a pointer to allocated memory (or NULL).
5163 * When resolving a link both "*sfname" and "*ffname" will point to the same
5164 * allocated memory.
5165 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005166 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005169fname_expand(
5170 buf_T *buf UNUSED,
5171 char_u **ffname,
5172 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005174 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005176 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005178 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179
5180#ifdef FEAT_SHORTCUT
5181 if (!buf->b_p_bin)
5182 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005183 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005185 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005186 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005187 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 {
5189 vim_free(*ffname);
5190 *ffname = rfname;
5191 *sfname = rfname;
5192 }
5193 }
5194#endif
5195}
5196
5197/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 * Open a window for a number of buffers.
5199 */
5200 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005201ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202{
5203 buf_T *buf;
5204 win_T *wp, *wpnext;
5205 int split_ret = OK;
5206 int p_ea_save;
5207 int open_wins = 0;
5208 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005209 int count; // Maximum number of windows to open.
5210 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005211 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005212 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213
Bram Moolenaarc667da52019-11-30 20:52:27 +01005214 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 count = 9999;
5216 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005217 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5219 all = FALSE;
5220 else
5221 all = TRUE;
5222
5223 setpcmark();
5224
5225#ifdef FEAT_GUI
5226 need_mouse_correct = TRUE;
5227#endif
5228
5229 /*
5230 * Close superfluous windows (two windows for the same buffer).
5231 * Also close windows that are not full-width.
5232 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005233 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005234 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005235 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005237 tpnext = curtab->tp_next;
5238 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005240 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005241 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1004402020-10-24 20:49:43 +02005242 || ((cmdmod.cmod_split & WSP_VERT)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005243 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005244 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005245 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005246 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005247 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005248 {
5249 win_close(wp, FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01005250 wpnext = firstwin; // just in case an autocommand does
5251 // something strange with windows
5252 tpnext = first_tabpage; // start all over...
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005253 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005254 }
5255 else
5256 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005258
Bram Moolenaarc667da52019-11-30 20:52:27 +01005259 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005260 if (had_tab == 0 || tpnext == NULL)
5261 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005262 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 }
5264
5265 /*
5266 * Go through the buffer list. When a buffer doesn't have a window yet,
5267 * open one. Otherwise move the window to the right position.
5268 * Watch out for autocommands that delete buffers or windows!
5269 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005270 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5275 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005276 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5278 continue;
5279
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005280 if (had_tab != 0)
5281 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005282 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005283 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005284 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005285 else
5286 wp = NULL;
5287 }
5288 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005289 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005290 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005291 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005292 if (wp->w_buffer == buf)
5293 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005294 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005295 if (wp != NULL)
5296 win_move_after(wp, curwin);
5297 }
5298
5299 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005301 bufref_T bufref;
5302
5303 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005304
Bram Moolenaarc667da52019-11-30 20:52:27 +01005305 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005307 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5309 ++open_wins;
5310 p_ea = p_ea_save;
5311 if (split_ret == FAIL)
5312 continue;
5313
Bram Moolenaarc667da52019-11-30 20:52:27 +01005314 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005317 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005319 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 break;
5322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 if (swap_exists_action == SEA_QUIT)
5324 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005325#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005326 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005327
Bram Moolenaarc667da52019-11-30 20:52:27 +01005328 // Reset the error/interrupt/exception state here so that
5329 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005330 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005331#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005332
Bram Moolenaarc667da52019-11-30 20:52:27 +01005333 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 win_close(curwin, TRUE);
5335 --open_wins;
5336 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005337 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005338
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005339#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005340 // Restore the error/interrupt/exception state if not
5341 // discarded by a new aborting error, interrupt, or uncaught
5342 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005343 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005344#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 }
5346 else
5347 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 }
5349
5350 ui_breakcheck();
5351 if (got_int)
5352 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005353 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 break;
5355 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005356#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005357 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005358 if (aborting())
5359 break;
5360#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005361 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005362 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005363 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005366 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368
5369 /*
5370 * Close superfluous windows.
5371 */
5372 for (wp = lastwin; open_wins > count; )
5373 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005374 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 if (!win_valid(wp))
5377 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005378 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 wp = lastwin;
5380 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005381 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005383 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 --open_wins;
5385 wp = lastwin;
5386 }
5387 else
5388 {
5389 wp = wp->w_prev;
5390 if (wp == NULL)
5391 break;
5392 }
5393 }
5394}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005397static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005398
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399/*
5400 * do_modelines() - process mode lines for the current file
5401 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005402 * "flags" can be:
5403 * OPT_WINONLY only set options local to window
5404 * OPT_NOWIN don't set options local to window
5405 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 * Returns immediately if the "ml" option isn't set.
5407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005409do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005411 linenr_T lnum;
5412 int nmlines;
5413 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414
5415 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5416 return;
5417
Bram Moolenaarc667da52019-11-30 20:52:27 +01005418 // Disallow recursive entry here. Can happen when executing a modeline
5419 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 if (entered)
5421 return;
5422
5423 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005424 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005426 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 nmlines = 0;
5428
Hu Jialun9dcd3492021-08-28 20:42:50 +02005429 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005431 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 nmlines = 0;
5433 --entered;
5434}
5435
Bram Moolenaarc667da52019-11-30 20:52:27 +01005436#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437
5438/*
5439 * chk_modeline() - check a single line for a mode string
5440 * Return FAIL if an error encountered.
5441 */
5442 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005443chk_modeline(
5444 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005445 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446{
5447 char_u *s;
5448 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005449 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 int prev;
5451 int vers;
5452 int end;
5453 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005454 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005455
Bram Moolenaare31ee862020-01-07 20:59:34 +01005456 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457
5458 prev = -1;
5459 for (s = ml_get(lnum); *s != NUL; ++s)
5460 {
5461 if (prev == -1 || vim_isspace(prev))
5462 {
5463 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5464 || STRNCMP(s, "vi:", (size_t)3) == 0)
5465 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005466 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005467 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 {
5469 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5470 e = s + 4;
5471 else
5472 e = s + 3;
5473 vers = getdigits(&e);
5474 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005475 && (s[0] != 'V'
5476 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 && (s[3] == ':'
5478 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5479 || (VIM_VERSION_100 < vers && s[3] == '<')
5480 || (VIM_VERSION_100 > vers && s[3] == '>')
5481 || (VIM_VERSION_100 == vers && s[3] == '=')))
5482 break;
5483 }
5484 }
5485 prev = *s;
5486 }
5487
5488 if (*s)
5489 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005490 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491 ++s;
5492 while (s[-1] != ':');
5493
Bram Moolenaarc667da52019-11-30 20:52:27 +01005494 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 if (linecopy == NULL)
5496 return FAIL;
5497
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005498 // prepare for emsg()
5499 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005500 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501
5502 end = FALSE;
5503 while (end == FALSE)
5504 {
5505 s = skipwhite(s);
5506 if (*s == NUL)
5507 break;
5508
5509 /*
5510 * Find end of set command: ':' or end of line.
5511 * Skip over "\:", replacing it with ":".
5512 */
5513 for (e = s; *e != ':' && *e != NUL; ++e)
5514 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005515 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 if (*e == NUL)
5517 end = TRUE;
5518
5519 /*
5520 * If there is a "set" command, require a terminating ':' and
5521 * ignore the stuff after the ':'.
5522 * "vi:set opt opt opt: foo" -- foo not interpreted
5523 * "vi:opt opt opt: foo" -- foo interpreted
5524 * Accept "se" for compatibility with Elvis.
5525 */
5526 if (STRNCMP(s, "set ", (size_t)4) == 0
5527 || STRNCMP(s, "se ", (size_t)3) == 0)
5528 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005529 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 break;
5531 end = TRUE;
5532 s = vim_strchr(s, ' ') + 1;
5533 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005534 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535
Bram Moolenaarc667da52019-11-30 20:52:27 +01005536 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005538 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005539
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005540 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005541 current_sctx.sc_version = 1;
5542#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005543 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005544 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005545 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005547
Bram Moolenaar5958f952018-11-20 04:25:21 +01005548 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005549 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005550
Bram Moolenaara3227e22006-03-08 21:32:40 +00005551 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005552
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005553 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005554 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005555 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 break;
5557 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005558 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 }
5560
Bram Moolenaare31ee862020-01-07 20:59:34 +01005561 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005562 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 vim_free(linecopy);
5564 }
5565 return retval;
5566}
5567
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005568/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005569 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5570 */
5571 int
5572bt_normal(buf_T *buf)
5573{
5574 return buf != NULL && buf->b_p_bt[0] == NUL;
5575}
5576
Bram Moolenaar113e1072019-01-20 15:30:40 +01005577#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005578/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005579 * Return TRUE if "buf" is the quickfix buffer.
5580 */
5581 int
5582bt_quickfix(buf_T *buf)
5583{
5584 return buf != NULL && buf->b_p_bt[0] == 'q';
5585}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005586#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005587
Bram Moolenaar113e1072019-01-20 15:30:40 +01005588#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005589/*
5590 * Return TRUE if "buf" is a terminal buffer.
5591 */
5592 int
5593bt_terminal(buf_T *buf)
5594{
5595 return buf != NULL && buf->b_p_bt[0] == 't';
5596}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005597#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005598
5599/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005600 * Return TRUE if "buf" is a help buffer.
5601 */
5602 int
5603bt_help(buf_T *buf)
5604{
5605 return buf != NULL && buf->b_help;
5606}
5607
5608/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005609 * Return TRUE if "buf" is a prompt buffer.
5610 */
5611 int
5612bt_prompt(buf_T *buf)
5613{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005614 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5615}
5616
Dominique Pelle748b3082022-01-08 12:41:16 +00005617#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005618/*
5619 * Return TRUE if "buf" is a buffer for a popup window.
5620 */
5621 int
5622bt_popup(buf_T *buf)
5623{
5624 return buf != NULL && buf->b_p_bt != NULL
5625 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005626}
Dominique Pelle748b3082022-01-08 12:41:16 +00005627#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005628
5629/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005630 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5631 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005632 */
5633 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005634bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005635{
5636 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5637 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005638 || buf->b_p_bt[0] == 't'
5639 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005640}
5641
Dominique Pelle748b3082022-01-08 12:41:16 +00005642#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005643/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005644 * Return TRUE if "buf" has 'buftype' set to "nofile".
5645 */
5646 int
5647bt_nofile(buf_T *buf)
5648{
5649 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5650}
Dominique Pelle748b3082022-01-08 12:41:16 +00005651#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005652
5653/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005654 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5655 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005656 */
5657 int
5658bt_dontwrite(buf_T *buf)
5659{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005660 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005661 || buf->b_p_bt[0] == 't'
5662 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005663}
5664
Bram Moolenaar113e1072019-01-20 15:30:40 +01005665#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005666 int
5667bt_dontwrite_msg(buf_T *buf)
5668{
5669 if (bt_dontwrite(buf))
5670 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005671 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005672 return TRUE;
5673 }
5674 return FALSE;
5675}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005676#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005677
5678/*
5679 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5680 * and 'bufhidden'.
5681 */
5682 int
5683buf_hide(buf_T *buf)
5684{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005685 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005686 switch (buf->b_p_bh[0])
5687 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005688 case 'u': // "unload"
5689 case 'w': // "wipe"
5690 case 'd': return FALSE; // "delete"
5691 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005692 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005693 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005694}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695
5696/*
5697 * Return special buffer name.
5698 * Returns NULL when the buffer has a normal file name.
5699 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005700 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005701buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005703#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005705 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005706 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005707 * Differentiate between the quickfix and location list buffers using
5708 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005709 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005710 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005711 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005712 else
5713 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005716
Bram Moolenaarc667da52019-11-30 20:52:27 +01005717 // There is no _file_ when 'buftype' is "nofile", b_sfname
5718 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005719 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005721#ifdef FEAT_TERMINAL
5722 if (buf->b_term != NULL)
5723 return term_get_status_text(buf->b_term);
5724#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005725 if (buf->b_fname != NULL)
5726 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005727#ifdef FEAT_JOB_CHANNEL
5728 if (bt_prompt(buf))
5729 return (char_u *)_("[Prompt]");
5730#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005731#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005732 if (bt_popup(buf))
5733 return (char_u *)_("[Popup]");
5734#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005735 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005737
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005739 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 return NULL;
5741}
5742
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005744 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5745 */
5746 char_u *
5747buf_get_fname(buf_T *buf)
5748{
5749 if (buf->b_fname == NULL)
5750 return (char_u *)_("[No Name]");
5751 return buf->b_fname;
5752}
5753
5754/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5756 */
5757 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005758set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759{
5760 if (on != curbuf->b_p_bl)
5761 {
5762 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 if (on)
5764 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5765 else
5766 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 }
5768}
5769
5770/*
5771 * Read the file for "buf" again and check if the contents changed.
5772 * Return TRUE if it changed or this could not be checked.
5773 */
5774 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005775buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776{
5777 buf_T *newbuf;
5778 int differ = TRUE;
5779 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 exarg_T ea;
5782
Bram Moolenaarc667da52019-11-30 20:52:27 +01005783 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5785 if (newbuf == NULL)
5786 return TRUE;
5787
Bram Moolenaarc667da52019-11-30 20:52:27 +01005788 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 if (prep_exarg(&ea, buf) == FAIL)
5790 {
5791 wipe_buffer(newbuf, FALSE);
5792 return TRUE;
5793 }
5794
Bram Moolenaarc667da52019-11-30 20:52:27 +01005795 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797
Bram Moolenaar4770d092006-01-12 23:22:24 +00005798 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 && readfile(buf->b_ffname, buf->b_fname,
5800 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5801 &ea, READ_NEW | READ_DUMMY) == OK)
5802 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005803 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5805 {
5806 differ = FALSE;
5807 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5808 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5809 {
5810 differ = TRUE;
5811 break;
5812 }
5813 }
5814 }
5815 vim_free(ea.cmd);
5816
Bram Moolenaarc667da52019-11-30 20:52:27 +01005817 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819
Bram Moolenaarc667da52019-11-30 20:52:27 +01005820 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 wipe_buffer(newbuf, FALSE);
5822
5823 return differ;
5824}
5825
5826/*
5827 * Wipe out a buffer and decrement the last buffer number if it was used for
5828 * this buffer. Call this to wipe out a temp buffer that does not contain any
5829 * marks.
5830 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005832wipe_buffer(
5833 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005834 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835{
5836 if (buf->b_fnum == top_file_num - 1)
5837 --top_file_num;
5838
Bram Moolenaarc667da52019-11-30 20:52:27 +01005839 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005840 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005841
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005842 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005843
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005845 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846}