blob: 436c0e95126f6061f754027edc61c32cc10a2a51 [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);
Bram Moolenaar188639d2022-04-04 16:57:21 +0100153 if (swap_exists_action != SEA_READONLY)
154 swap_exists_action = SEA_NONE;
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200155 open_buffer(FALSE, NULL, 0);
156 aucmd_restbuf(&aco);
157 }
158}
Dominique Pelle748b3082022-01-08 12:41:16 +0000159#endif
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200160
161/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200162 * Open current buffer, that is: open the memfile and read the file into
163 * memory.
164 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 */
166 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100167open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100168 int read_stdin, // read file from stdin
169 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
170 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171{
172 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200173 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100174#ifdef FEAT_SYN_HL
175 long old_tw = curbuf->b_p_tw;
176#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200177 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100179 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
180 // When re-entering the same buffer, it should not change, because the
181 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 if (readonlymode && curbuf->b_ffname != NULL
183 && (curbuf->b_flags & BF_NEVERLOADED))
184 curbuf->b_p_ro = TRUE;
185
Bram Moolenaar4770d092006-01-12 23:22:24 +0000186 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100188 // There MUST be a memfile, otherwise we can't do anything
189 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100190 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200191 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 if (curbuf->b_ml.ml_mfp != NULL)
193 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100194 // If there is no memfile at all, exit.
195 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 if (curbuf == NULL)
197 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000198 emsg(_(e_cannot_allocate_any_buffer_exiting));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200199
200 // Don't try to do any saving, with "curbuf" NULL almost nothing
201 // will work.
202 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 getout(2);
204 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200205
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000206 emsg(_(e_cannot_allocate_buffer_using_other_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100208#ifdef FEAT_SYN_HL
209 if (old_tw != curbuf->b_p_tw)
210 check_colorcolumn(curwin);
211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 return FAIL;
213 }
214
Bram Moolenaarc667da52019-11-30 20:52:27 +0100215 // The autocommands in readfile() may change the buffer, but only AFTER
216 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200217 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
Bram Moolenaarc667da52019-11-30 20:52:27 +0100220 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100221 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
223 if (curbuf->b_ffname != NULL
224#ifdef FEAT_NETBEANS_INTG
225 && netbeansReadFile
226#endif
227 )
228 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100229 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200230#ifdef UNIX
231 int save_bin = curbuf->b_p_bin;
232 int perm;
233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234#ifdef FEAT_NETBEANS_INTG
235 int oldFire = netbeansFireChanges;
236
237 netbeansFireChanges = 0;
238#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200239#ifdef UNIX
240 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200241 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200242 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200243# ifdef OPEN_CHR_FILES
244 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
245# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200246 ))
247 read_fifo = TRUE;
248 if (read_fifo)
249 curbuf->b_p_bin = TRUE;
250#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100251 if (shortmess(SHM_FILEINFO))
252 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200254 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200255 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
256#ifdef UNIX
257 if (read_fifo)
258 {
259 curbuf->b_p_bin = save_bin;
260 if (retval == OK)
261 retval = read_buffer(FALSE, eap, flags);
262 }
263#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100264 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265#ifdef FEAT_NETBEANS_INTG
266 netbeansFireChanges = oldFire;
267#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100268 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200269 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 fix_help_buffer();
271 }
272 else if (read_stdin)
273 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200274 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100276 // First read the text in binary mode into the buffer.
277 // Then read from that same buffer and append at the end. This makes
278 // it possible to retry when 'fileformat' or 'fileencoding' was
279 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 curbuf->b_p_bin = TRUE;
281 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200282 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
283 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 curbuf->b_p_bin = save_bin;
285 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200286 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 }
288
Bram Moolenaarc667da52019-11-30 20:52:27 +0100289 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100291 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100293 parse_cino(curbuf);
294 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100296 // Set/reset the Changed flag first, autocmds may change the buffer.
297 // Apply the automatic commands, before processing the modelines.
298 // So the modelines have priority over autocommands.
299 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100300 // When reading stdin, the buffer contents always needs writing, so set
301 // the changed flag. Unless in readonly mode: "ls | gview -".
302 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000303 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100304 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100305#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000308 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100310 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200311 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100312 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313
Bram Moolenaarc667da52019-11-30 20:52:27 +0100314 // Set last_changedtick to avoid triggering a TextChanged autocommand right
315 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100316 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100317 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100318 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100319
Bram Moolenaarc667da52019-11-30 20:52:27 +0100320 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321#ifdef FEAT_EVAL
322 if (aborting())
323#else
324 if (got_int)
325#endif
326 curbuf->b_flags |= BF_READERR;
327
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000328#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100329 // Need to update automatic folding. Do this before the autocommands,
330 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000331 foldUpdateAll(curwin);
332#endif
333
Bram Moolenaarc667da52019-11-30 20:52:27 +0100334 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 if (!(curwin->w_valid & VALID_TOPLINE))
336 {
337 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100338#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100342#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100344#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346#endif
347
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100348 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100350 // The autocommands may have changed the current buffer. Apply the
351 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200352 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 {
354 aco_save_T aco;
355
Bram Moolenaarc667da52019-11-30 20:52:27 +0100356 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200357 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000358 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
360
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100361 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100362#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100363 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
364 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100365#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100366 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
Bram Moolenaarc667da52019-11-30 20:52:27 +0100369 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 aucmd_restbuf(&aco);
371 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 }
373
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 return retval;
375}
376
377/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200378 * Store "buf" in "bufref" and set the free count.
379 */
380 void
381set_bufref(bufref_T *bufref, buf_T *buf)
382{
383 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200384 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200385 bufref->br_buf_free_count = buf_free_count;
386}
387
388/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200389 * Return TRUE if "bufref->br_buf" points to the same buffer as when
390 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200391 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200392 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
393 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200394 */
395 int
396bufref_valid(bufref_T *bufref)
397{
398 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200399 ? TRUE : buf_valid(bufref->br_buf)
400 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200401}
402
403/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200405 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 */
407 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100408buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409{
410 buf_T *bp;
411
Bram Moolenaarc667da52019-11-30 20:52:27 +0100412 // Assume that we more often have a recent buffer, start with the last
413 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200414 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 if (bp == buf)
416 return TRUE;
417 return FALSE;
418}
419
420/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200421 * A hash table used to quickly lookup a buffer by its number.
422 */
423static hashtab_T buf_hashtab;
424
425 static void
426buf_hashtab_add(buf_T *buf)
427{
428 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
429 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000430 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200431}
432
433 static void
434buf_hashtab_remove(buf_T *buf)
435{
436 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
437
438 if (!HASHITEM_EMPTY(hi))
439 hash_remove(&buf_hashtab, hi);
440}
441
Bram Moolenaar94f01952018-09-01 15:30:03 +0200442/*
443 * Return TRUE when buffer "buf" can be unloaded.
444 * Give an error message and return FALSE when the buffer is locked or the
445 * screen is being redrawn and the buffer is in a window.
446 */
447 static int
448can_unload_buffer(buf_T *buf)
449{
450 int can_unload = !buf->b_locked;
451
452 if (can_unload && updating_screen)
453 {
454 win_T *wp;
455
456 FOR_ALL_WINDOWS(wp)
457 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200458 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200459 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200460 break;
461 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200462 }
463 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000464 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200465 return can_unload;
466}
Bram Moolenaara997b452018-04-17 23:24:06 +0200467
Bram Moolenaar480778b2016-07-14 22:09:39 +0200468/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 * Close the link to a buffer.
470 * "action" is used when there is no longer a window for the buffer.
471 * It can be:
472 * 0 buffer becomes hidden
473 * DOBUF_UNLOAD buffer is unloaded
474 * DOBUF_DELETE buffer is unloaded and removed from buffer list
475 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200476 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 * When doing all but the first one on the current buffer, the caller should
478 * get a new buffer very soon!
479 *
480 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100481 *
482 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
483 * cause there to be only one window with this buffer. e.g. when ":quit" is
484 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100485 *
486 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100487 *
488 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100490 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100491close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100492 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100493 buf_T *buf,
494 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100495 int abort_if_last,
496 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100499 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200500 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100501 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200502 win_T *the_curwin = curwin;
503 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200505 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
506 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507
Bram Moolenaarcee52202020-03-11 14:19:58 +0100508 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100509
510 // Force unloading or deleting when 'bufhidden' says so.
511 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
512 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100513 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200514 {
515 del_buf = TRUE;
516 unload_buf = TRUE;
517 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100518 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200519 {
520 del_buf = TRUE;
521 unload_buf = TRUE;
522 wipe_buf = TRUE;
523 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100524 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200525 unload_buf = TRUE;
526
Bram Moolenaar94053a52017-08-01 21:44:33 +0200527#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200528 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200529 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100530 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200531 if (term_job_running(buf->b_term))
532 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200533 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200534 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200535 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100536 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200537
Bram Moolenaarc667da52019-11-30 20:52:27 +0100538 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200539 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200540 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200541 else
542 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100543 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200544 del_buf = FALSE;
545 unload_buf = FALSE;
546 }
547 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100548 else if (buf->b_p_bh[0] == 'h' && !del_buf)
549 {
550 // Hide a terminal buffer.
551 unload_buf = FALSE;
552 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200553 else
554 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100555 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200556 del_buf = TRUE;
557 unload_buf = TRUE;
558 wipe_buf = TRUE;
559 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100560 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200561 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563
Bram Moolenaarc667da52019-11-30 20:52:27 +0100564 // Disallow deleting the buffer when it is locked (already being closed or
565 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200566 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100567 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200568
Bram Moolenaarc667da52019-11-30 20:52:27 +0100569 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200570 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100572 // Set b_last_cursor when closing the last window for the buffer.
573 // Remember the last cursor position and window options of the buffer.
574 // This used to be only for the current window, but then options like
575 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 if (buf->b_nwindows == 1)
577 set_last_cursor(win);
578 buflist_setfpos(buf, win,
579 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
580 win->w_cursor.col, TRUE);
581 }
582
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200583 set_bufref(&bufref, buf);
584
Bram Moolenaarc667da52019-11-30 20:52:27 +0100585 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 if (buf->b_nwindows == 1)
587 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200588 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100589 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200590 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
591 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200592 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100593 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100594 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200595aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000596 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100597 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100598 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200599 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100600 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200601 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100602 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200603 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604
Bram Moolenaarc667da52019-11-30 20:52:27 +0100605 // When the buffer becomes hidden, but is not unloaded, trigger
606 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 if (!unload_buf)
608 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200609 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100610 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200611 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
612 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200613 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100614 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200615 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200616 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100617 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200618 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100619 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200620 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100622#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100623 // autocmds may abort script processing
624 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100625 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200628
Bram Moolenaarc667da52019-11-30 20:52:27 +0100629 // If the buffer was in curwin and the window has changed, go back to that
630 // window, if it still exists. This avoids that ":edit x" triggering a
631 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200632 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
633 {
634 block_autocmds();
635 goto_tabpage_win(the_curtab, the_curwin);
636 unblock_autocmds();
637 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200638
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640
Bram Moolenaarc667da52019-11-30 20:52:27 +0100641 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if (buf->b_nwindows > 0)
643 --buf->b_nwindows;
644
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100645#ifdef FEAT_DIFF
646 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100647 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100648#endif
649
Bram Moolenaarc667da52019-11-30 20:52:27 +0100650 // Return when a window is displaying the buffer or when it's not
651 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100653 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654
Bram Moolenaarc667da52019-11-30 20:52:27 +0100655 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 if (buf->b_ffname == NULL)
657 del_buf = TRUE;
658
Bram Moolenaarc667da52019-11-30 20:52:27 +0100659 // When closing the current buffer stop Visual mode before freeing
660 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200661 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200662#if defined(EXITFREE)
663 && !entered_free_all_mem
664#endif
665 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200666 end_visual_mode();
667
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100668 // Free all things allocated for this buffer.
669 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
670 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100671 // Remember if we are closing the current buffer. Restore the number of
672 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 is_curbuf = (buf == curbuf);
674 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100676 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100677 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100678 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679
Bram Moolenaarc667da52019-11-30 20:52:27 +0100680 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200681 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100682 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100683#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100684 // autocmds may abort script processing
685 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100686 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100689 // It's possible that autocommands change curbuf to the one being deleted.
690 // This might cause the previous curbuf to be deleted unexpectedly. But
691 // in some cases it's OK to delete the curbuf, because a new one is
692 // obtained anyway. Therefore only return if curbuf changed to the
693 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100695 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200696
Bram Moolenaar4033c552017-09-16 20:54:51 +0200697 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100698 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200699
Bram Moolenaarc667da52019-11-30 20:52:27 +0100700 // Autocommands may have opened or closed windows for this buffer.
701 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200702 if (buf->b_nwindows > 0)
703 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 /*
706 * Remove the buffer from the list.
707 */
708 if (wipe_buf)
709 {
Bram Moolenaar347538f2022-03-26 16:28:06 +0000710 // Do not wipe out the buffer if it is used in a window.
711 if (buf->b_nwindows > 0)
712 return FALSE;
713
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200714 if (action == DOBUF_WIPE_REUSE)
715 {
716 // we can re-use this buffer number, store it
717 if (buf_reuse.ga_itemsize == 0)
718 ga_init2(&buf_reuse, sizeof(int), 50);
719 if (ga_grow(&buf_reuse, 1) == OK)
720 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
721 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200722 if (buf->b_sfname != buf->b_ffname)
723 VIM_CLEAR(buf->b_sfname);
724 else
725 buf->b_sfname = NULL;
726 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 if (buf->b_prev == NULL)
728 firstbuf = buf->b_next;
729 else
730 buf->b_prev->b_next = buf->b_next;
731 if (buf->b_next == NULL)
732 lastbuf = buf->b_prev;
733 else
734 buf->b_next->b_prev = buf->b_prev;
735 free_buffer(buf);
736 }
737 else
738 {
739 if (del_buf)
740 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100741 // Free all internal variables and reset option values, to make
742 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 free_buffer_stuff(buf, TRUE);
744
Bram Moolenaarc667da52019-11-30 20:52:27 +0100745 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
747
Bram Moolenaarc667da52019-11-30 20:52:27 +0100748 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 buf->b_p_initialized = FALSE;
750 }
751 buf_clear_file(buf);
752 if (del_buf)
753 buf->b_p_bl = FALSE;
754 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100755 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100756 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757}
758
759/*
760 * Make buffer not contain a file.
761 */
762 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100763buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764{
765 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200766 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 buf->b_p_eol = TRUE;
769 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000771 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100773 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774#ifdef FEAT_NETBEANS_INTG
775 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776#endif
777}
778
779/*
780 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200781 * the file. Careful: get here with "curwin" NULL when exiting.
782 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100783 * BFA_DEL buffer is going to be deleted
784 * BFA_WIPE buffer is going to be wiped out
785 * BFA_KEEP_UNDO do not free undo information
786 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100789buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200792 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200793 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200794 win_T *the_curwin = curwin;
795 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796
Bram Moolenaarc667da52019-11-30 20:52:27 +0100797 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200798 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100799 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200800 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200801 if (buf->b_ml.ml_mfp != NULL)
802 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200803 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
804 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200805 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100806 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200807 return;
808 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200809 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200811 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
812 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200813 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100814 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 return;
816 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200817 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200819 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
820 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200821 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100822 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 return;
824 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200825 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100826 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200827
Bram Moolenaarc667da52019-11-30 20:52:27 +0100828 // If the buffer was in curwin and the window has changed, go back to that
829 // window, if it still exists. This avoids that ":edit x" triggering a
830 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200831 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
832 {
833 block_autocmds();
834 goto_tabpage_win(the_curtab, the_curwin);
835 unblock_autocmds();
836 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200837
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100838#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100839 // autocmds may abort script processing
840 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100842#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100844 // It's possible that autocommands change curbuf to the one being deleted.
845 // This might cause curbuf to be deleted unexpectedly. But in some cases
846 // it's OK to delete the curbuf, because a new one is obtained anyway.
847 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 if (buf == curbuf && !is_curbuf)
849 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100851 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200853#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100854 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200855 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100856 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200857#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000858
859#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100860 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000861 {
862 win_T *win;
863 tabpage_T *tp;
864
865 FOR_ALL_TAB_WINDOWS(tp, win)
866 if (win->w_buffer == buf)
867 clearFolding(win);
868 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000869#endif
870
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871#ifdef FEAT_TCL
872 tcl_buffer_free(buf);
873#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100874 ml_close(buf, TRUE); // close and delete the memline/memfile
875 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200876 if ((flags & BFA_KEEP_UNDO) == 0)
877 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100878 u_blockfree(buf); // free the memory allocated for undo
879 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100882 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100884#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100885 clear_buf_prop_types(buf);
886#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100887 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888}
889
890/*
891 * Free a buffer structure and the things it contains related to the buffer
892 * itself (not the file, that must have been done already).
893 */
894 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100895free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200897 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200899#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100900 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200901 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200902 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200903 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200904#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200905#ifdef FEAT_LUA
906 lua_buffer_free(buf);
907#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000908#ifdef FEAT_MZSCHEME
909 mzscheme_buffer_free(buf);
910#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911#ifdef FEAT_PERL
912 perl_buf_free(buf);
913#endif
914#ifdef FEAT_PYTHON
915 python_buffer_free(buf);
916#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200917#ifdef FEAT_PYTHON3
918 python3_buffer_free(buf);
919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920#ifdef FEAT_RUBY
921 ruby_buffer_free(buf);
922#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200923#ifdef FEAT_JOB_CHANNEL
924 channel_buffer_free(buf);
925#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200926#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200927 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200928#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200929#ifdef FEAT_JOB_CHANNEL
930 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200931 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200932 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200933#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200934
935 buf_hashtab_remove(buf);
936
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200937 aubuflocal_remove(buf);
938
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200939 if (autocmd_busy)
940 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100941 // Do not free the buffer structure while autocommands are executing,
942 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200943 buf->b_next = au_pending_free_buf;
944 au_pending_free_buf = buf;
945 }
946 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100947 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200948 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100949 if (curbuf == buf)
950 curbuf = NULL; // make clear it's not to be used
951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952}
953
954/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100955 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100956 */
957 static void
958init_changedtick(buf_T *buf)
959{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100960 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100961
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100962 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
963 di->di_tv.v_type = VAR_NUMBER;
964 di->di_tv.v_lock = VAR_FIXED;
965 di->di_tv.vval.v_number = 0;
966
Bram Moolenaar92769c32017-02-25 15:41:37 +0100967#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100968 STRCPY(buf->b_ct_di.di_key, "changedtick");
969 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100970#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100971}
972
973/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
975 */
976 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100977free_buffer_stuff(
978 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100979 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980{
981 if (free_options)
982 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100983 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200985#ifdef FEAT_SPELL
986 ga_clear(&buf->b_s.b_langp);
987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 }
989#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100990 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100991 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100992
Bram Moolenaarc667da52019-11-30 20:52:27 +0100993 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100994 hash_init(&buf->b_vars->dv_hashtab);
995 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100996 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100997 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100998 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001000 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001002 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001004#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001005 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001006#endif
Bram Moolenaar0c740e72022-07-25 19:07:04 +01001007#ifdef FEAT_PROP_POPUP
1008 ga_clear_strings(&buf->b_textprop_text);
1009#endif
zeertzjqc207fd22022-06-29 10:37:40 +01001010 map_clear_mode(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1011 map_clear_mode(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001012 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013}
1014
1015/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001016 * Free one wininfo_T.
1017 */
1018 void
1019free_wininfo(wininfo_T *wip)
1020{
1021 if (wip->wi_optset)
1022 {
1023 clear_winopt(&wip->wi_opt);
1024#ifdef FEAT_FOLDING
1025 deleteFoldRecurse(&wip->wi_folds);
1026#endif
1027 }
1028 vim_free(wip);
1029}
1030
1031/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 * Free the b_wininfo list for buffer "buf".
1033 */
1034 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001035clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036{
1037 wininfo_T *wip;
1038
1039 while (buf->b_wininfo != NULL)
1040 {
1041 wip = buf->b_wininfo;
1042 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001043 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 }
1045}
1046
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047/*
1048 * Go to another buffer. Handles the result of the ATTENTION dialog.
1049 */
1050 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001051goto_buffer(
1052 exarg_T *eap,
1053 int start,
1054 int dir,
1055 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001057 bufref_T old_curbuf;
Bram Moolenaar188639d2022-04-04 16:57:21 +01001058 int save_sea = swap_exists_action;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001059
1060 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061
Bram Moolenaar188639d2022-04-04 16:57:21 +01001062 if (swap_exists_action == SEA_NONE)
1063 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1065 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1067 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001068#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001069 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001070
Bram Moolenaarc667da52019-11-30 20:52:27 +01001071 // Reset the error/interrupt/exception state here so that
1072 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001073 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001074#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001075
Bram Moolenaarc667da52019-11-30 20:52:27 +01001076 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 win_close(curwin, TRUE);
Bram Moolenaar188639d2022-04-04 16:57:21 +01001078 swap_exists_action = save_sea;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001079 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001080
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001081#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001082 // Restore the error/interrupt/exception state if not discarded by a
1083 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001084 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001085#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 }
1087 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001088 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001089}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091/*
1092 * Handle the situation of swap_exists_action being set.
1093 * It is allowed for "old_curbuf" to be NULL or invalid.
1094 */
1095 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001096handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001098#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001099 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001100#endif
1101#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001102 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001103#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001104 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 if (swap_exists_action == SEA_QUIT)
1107 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001108#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001109 // Reset the error/interrupt/exception state here so that
1110 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001111 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001112#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001113
Bram Moolenaarc667da52019-11-30 20:52:27 +01001114 // User selected Quit at ATTENTION prompt. Go back to previous
1115 // buffer. If that buffer is gone or the same as the current one,
1116 // open a new, empty buffer.
1117 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001118 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001119 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001120 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1121 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001122 {
1123 // Block autocommands here because curwin->w_buffer is NULL.
1124 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001125 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001126 unblock_autocmds();
1127 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001128 else
1129 buf = old_curbuf->br_buf;
1130 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001131 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001132 int old_msg_silent = msg_silent;
1133
1134 if (shortmess(SHM_FILEINFO))
1135 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001136 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001137 // restore msg_silent, so that the command line will be shown
1138 msg_silent = old_msg_silent;
1139
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001140#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001141 if (old_tw != curbuf->b_p_tw)
1142 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001143#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001144 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001145 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001146
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001147#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001148 // Restore the error/interrupt/exception state if not discarded by a
1149 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001150 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 }
1153 else if (swap_exists_action == SEA_RECOVER)
1154 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001155#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001156 // Reset the error/interrupt/exception state here so that
1157 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001158 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001159#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001160
Bram Moolenaarc667da52019-11-30 20:52:27 +01001161 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001163 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001164 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001166 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001167
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001168#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001169 // Restore the error/interrupt/exception state if not discarded by a
1170 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001171 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 }
1174 swap_exists_action = SEA_NONE;
1175}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001178 * Make the current buffer empty.
1179 * Used when it is wiped out and it's the last buffer.
1180 */
1181 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001182empty_curbuf(
1183 int close_others,
1184 int forceit,
1185 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001186{
1187 int retval;
1188 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001189 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001190
1191 if (action == DOBUF_UNLOAD)
1192 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001193 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001194 return FAIL;
1195 }
1196
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001197 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001198 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001199 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001200 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001201
1202 setpcmark();
1203 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1204 forceit ? ECMD_FORCEIT : 0, curwin);
1205
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001206 // do_ecmd() may create a new buffer, then we have to delete
1207 // the old one. But do_ecmd() may have done that already, check
1208 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001209 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001210 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001211 if (!close_others)
1212 need_fileinfo = FALSE;
1213 return retval;
1214}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001215
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216/*
1217 * Implementation of the commands for the buffer list.
1218 *
1219 * action == DOBUF_GOTO go to specified buffer
1220 * action == DOBUF_SPLIT split window and go to specified buffer
1221 * action == DOBUF_UNLOAD unload specified buffer(s)
1222 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1223 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001224 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 *
1226 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1227 * start == DOBUF_FIRST go to "count" buffer from first buffer
1228 * start == DOBUF_LAST go to "count" buffer from last buffer
1229 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1230 *
1231 * Return FAIL or OK.
1232 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001233 static int
1234do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001235 int action,
1236 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001237 int dir, // FORWARD or BACKWARD
1238 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001239 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240{
1241 buf_T *buf;
1242 buf_T *bp;
1243 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001244 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245
1246 switch (start)
1247 {
1248 case DOBUF_FIRST: buf = firstbuf; break;
1249 case DOBUF_LAST: buf = lastbuf; break;
1250 default: buf = curbuf; break;
1251 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001252 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 {
1254 while (count-- > 0)
1255 {
1256 do
1257 {
1258 buf = buf->b_next;
1259 if (buf == NULL)
1260 buf = firstbuf;
1261 }
1262 while (buf != curbuf && !bufIsChanged(buf));
1263 }
1264 if (!bufIsChanged(buf))
1265 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001266 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 return FAIL;
1268 }
1269 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001270 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 {
1272 while (buf != NULL && buf->b_fnum != count)
1273 buf = buf->b_next;
1274 }
1275 else
1276 {
1277 bp = NULL;
1278 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1279 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001280 // remember the buffer where we start, we come back there when all
1281 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 if (bp == NULL)
1283 bp = buf;
1284 if (dir == FORWARD)
1285 {
1286 buf = buf->b_next;
1287 if (buf == NULL)
1288 buf = firstbuf;
1289 }
1290 else
1291 {
1292 buf = buf->b_prev;
1293 if (buf == NULL)
1294 buf = lastbuf;
1295 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001296 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 if (unload || buf->b_p_bl)
1298 {
1299 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001300 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 }
1302 if (bp == buf)
1303 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001304 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001305 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 return FAIL;
1307 }
1308 }
1309 }
1310
Bram Moolenaarc667da52019-11-30 20:52:27 +01001311 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 {
1313 if (start == DOBUF_FIRST)
1314 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001315 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001317 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 }
1319 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001320 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001322 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 return FAIL;
1324 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001325#ifdef FEAT_PROP_POPUP
1326 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1327# ifdef FEAT_TERMINAL
1328 && !bt_terminal(buf)
1329#endif
1330 )
1331 return OK;
1332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333
1334#ifdef FEAT_GUI
1335 need_mouse_correct = TRUE;
1336#endif
1337
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001339 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 */
1341 if (unload)
1342 {
1343 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001344 bufref_T bufref;
1345
Bram Moolenaar94f01952018-09-01 15:30:03 +02001346 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001347 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001348
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001349 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
Bram Moolenaarc667da52019-11-30 20:52:27 +01001351 // When unloading or deleting a buffer that's already unloaded and
1352 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001353 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1354 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 return FAIL;
1356
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001357 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001359#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001360 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 {
1362 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001363 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001364 // Autocommand deleted buffer, oops! It's not changed
1365 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001367 // If it's still changed fail silently, the dialog already
1368 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001369 if (bufIsChanged(buf))
1370 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001372 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001373#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001375 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 buf->b_fnum);
1377 return FAIL;
1378 }
1379 }
1380
Bram Moolenaarc667da52019-11-30 20:52:27 +01001381 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001382 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001383 end_visual_mode();
1384
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001385 // If deleting the last (listed) buffer, make it empty.
1386 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001387 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 if (bp->b_p_bl && bp != buf)
1389 break;
1390 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001391 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001393 // If the deleted buffer is the current one, close the current window
1394 // (unless it's the only window). Repeat this so long as we end up in
1395 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001396 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001397 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001398 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001399 {
1400 if (win_close(curwin, FALSE) == FAIL)
1401 break;
1402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001404 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 if (buf != curbuf)
1406 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001407 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001408 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001409 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 return OK;
1411 }
1412
1413 /*
1414 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001415 * There should be another, otherwise it would have been handled
1416 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001417 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 * Then prefer the buffer we most recently visited.
1419 * Else try to find one that is loaded, after the current buffer,
1420 * then before the current buffer.
1421 * Finally use any buffer.
1422 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001423 buf = NULL; // selected buffer
1424 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001425 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1426 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001427 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 {
1429 int jumpidx;
1430
1431 jumpidx = curwin->w_jumplistidx - 1;
1432 if (jumpidx < 0)
1433 jumpidx = curwin->w_jumplistlen - 1;
1434
1435 forward = jumpidx;
1436 while (jumpidx != curwin->w_jumplistidx)
1437 {
1438 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1439 if (buf != NULL)
1440 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001441 // Skip current and unlisted bufs. Also skip a quickfix
1442 // buffer, it might be deleted soon.
1443 if (buf == curbuf || !buf->b_p_bl
1444#if defined(FEAT_QUICKFIX)
1445 || bt_quickfix(buf)
1446#endif
1447 )
1448 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 else if (buf->b_ml.ml_mfp == NULL)
1450 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001451 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 if (bp == NULL)
1453 bp = buf;
1454 buf = NULL;
1455 }
1456 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001457 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001459 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1461 break;
1462 if (--jumpidx < 0)
1463 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001464 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 break;
1466 }
1467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468
Bram Moolenaarc667da52019-11-30 20:52:27 +01001469 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 {
1471 forward = TRUE;
1472 buf = curbuf->b_next;
1473 for (;;)
1474 {
1475 if (buf == NULL)
1476 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001477 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 break;
1479 buf = curbuf->b_prev;
1480 forward = FALSE;
1481 continue;
1482 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001483 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001484 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1485#if defined(FEAT_QUICKFIX)
1486 && !bt_quickfix(buf)
1487#endif
1488 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001490 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001492 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 bp = buf;
1494 }
1495 if (forward)
1496 buf = buf->b_next;
1497 else
1498 buf = buf->b_prev;
1499 }
1500 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001501 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001503 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001505 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001506 if (buf->b_p_bl && buf != curbuf
1507#if defined(FEAT_QUICKFIX)
1508 && !bt_quickfix(buf)
1509#endif
1510 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 break;
1512 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001513 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 {
1515 if (curbuf->b_next != NULL)
1516 buf = curbuf->b_next;
1517 else
1518 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001519#if defined(FEAT_QUICKFIX)
1520 if (bt_quickfix(buf))
1521 buf = NULL;
1522#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 }
1524 }
1525
Bram Moolenaara02471e2014-01-10 16:43:14 +01001526 if (buf == NULL)
1527 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001528 // Autocommands must have wiped out all other buffers. Only option
1529 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001530 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001531 }
1532
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001534 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001536 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001538 // If 'switchbuf' contains "useopen": jump to first window containing
1539 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001540 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001541 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001542 // If 'switchbuf' contains "usetab": jump to first window in any tab
1543 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001544 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 return OK;
1546 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 return FAIL;
1548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549
Bram Moolenaarc667da52019-11-30 20:52:27 +01001550 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 if (buf == curbuf)
1552 return OK;
1553
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001554 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001555 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 {
1557#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001558 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001560 bufref_T bufref;
1561
1562 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001564 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001565 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 }
1568 if (bufIsChanged(curbuf))
1569#endif
1570 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001571 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 return FAIL;
1573 }
1574 }
1575
Bram Moolenaarc667da52019-11-30 20:52:27 +01001576 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 set_curbuf(buf, action);
1578
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001580 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001582#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001583 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 return FAIL;
1585#endif
1586
1587 return OK;
1588}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001590 int
1591do_buffer(
1592 int action,
1593 int start,
1594 int dir, // FORWARD or BACKWARD
1595 int count, // buffer number or number of buffers
1596 int forceit) // TRUE when using !
1597{
1598 return do_buffer_ext(action, start, dir, count,
1599 forceit ? DOBUF_FORCEIT : 0);
1600}
1601
1602/*
1603 * do_bufdel() - delete or unload buffer(s)
1604 *
1605 * addr_count == 0: ":bdel" - delete current buffer
1606 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1607 * buffer "end_bnr", then any other arguments.
1608 * addr_count == 2: ":N,N bdel" - delete buffers in range
1609 *
1610 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1611 * DOBUF_DEL (":bdel")
1612 *
1613 * Returns error message or NULL
1614 */
1615 char *
1616do_bufdel(
1617 int command,
1618 char_u *arg, // pointer to extra arguments
1619 int addr_count,
1620 int start_bnr, // first buffer number in a range
1621 int end_bnr, // buffer nr or last buffer nr in a range
1622 int forceit)
1623{
1624 int do_current = 0; // delete current buffer?
1625 int deleted = 0; // number of buffers deleted
1626 char *errormsg = NULL; // return value
1627 int bnr; // buffer number
1628 char_u *p;
1629
1630 if (addr_count == 0)
1631 {
1632 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1633 }
1634 else
1635 {
1636 if (addr_count == 2)
1637 {
1638 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001639 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001640 bnr = start_bnr;
1641 }
1642 else // addr_count == 1
1643 bnr = end_bnr;
1644
1645 for ( ;!got_int; ui_breakcheck())
1646 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001647 // Delete the current buffer last, otherwise when the
1648 // current buffer is deleted, the next buffer becomes
1649 // the current one and will be loaded, which may then
1650 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001651 if (bnr == curbuf->b_fnum)
1652 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001653 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001654 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1655 ++deleted;
1656
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001657 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001658 if (addr_count == 2)
1659 {
1660 if (++bnr > end_bnr)
1661 break;
1662 }
1663 else // addr_count == 1
1664 {
1665 arg = skipwhite(arg);
1666 if (*arg == NUL)
1667 break;
1668 if (!VIM_ISDIGIT(*arg))
1669 {
1670 p = skiptowhite_esc(arg);
1671 bnr = buflist_findpat(arg, p,
1672 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1673 FALSE, FALSE);
1674 if (bnr < 0) // failed
1675 break;
1676 arg = p;
1677 }
1678 else
1679 bnr = getdigits(&arg);
1680 }
1681 }
1682 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1683 FORWARD, do_current, forceit) == OK)
1684 ++deleted;
1685
1686 if (deleted == 0)
1687 {
1688 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001689 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001690 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001691 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001692 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001693 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001694 errormsg = (char *)IObuff;
1695 }
1696 else if (deleted >= p_report)
1697 {
1698 if (command == DOBUF_UNLOAD)
1699 smsg(NGETTEXT("%d buffer unloaded",
1700 "%d buffers unloaded", deleted), deleted);
1701 else if (command == DOBUF_DEL)
1702 smsg(NGETTEXT("%d buffer deleted",
1703 "%d buffers deleted", deleted), deleted);
1704 else
1705 smsg(NGETTEXT("%d buffer wiped out",
1706 "%d buffers wiped out", deleted), deleted);
1707 }
1708 }
1709
1710
1711 return errormsg;
1712}
1713
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714/*
1715 * Set current buffer to "buf". Executes autocommands and closes current
1716 * buffer. "action" tells how to close the current buffer:
1717 * DOBUF_GOTO free or hide it
1718 * DOBUF_SPLIT nothing
1719 * DOBUF_UNLOAD unload it
1720 * DOBUF_DEL delete it
1721 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001722 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 */
1724 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001725set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726{
1727 buf_T *prevbuf;
1728 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001729 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001730#ifdef FEAT_SYN_HL
1731 long old_tw = curbuf->b_p_tw;
1732#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001733 bufref_T newbufref;
1734 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001735 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736
1737 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001738 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001739 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1740 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
Bram Moolenaarc667da52019-11-30 20:52:27 +01001742 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744
Bram Moolenaarc667da52019-11-30 20:52:27 +01001745 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001747 set_bufref(&prevbufref, prevbuf);
1748 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001750 // Autocommands may delete the current buffer and/or the buffer we want to
1751 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001752 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001753 || (bufref_valid(&prevbufref)
1754 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001755#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001756 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001758 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001760#ifdef FEAT_SYN_HL
1761 if (prevbuf == curwin->w_buffer)
1762 reset_synblock(curwin);
1763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001765 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001766#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001767 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001769 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001771 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001772 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001773
Bram Moolenaare615db02022-01-20 21:00:54 +00001774 // Do not sync when in Insert mode and the buffer is open in
1775 // another window, might be a timer doing something in another
1776 // window.
1777 if (prevbuf == curbuf
Bram Moolenaar24959102022-05-07 20:01:16 +01001778 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001779 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1781 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001782 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001783 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1784 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001785 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001786 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001787 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001788 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001790 // An autocommand may have deleted "buf", already entered it (e.g., when
1791 // it did ":bunload") or aborted the script processing.
1792 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001793 valid = buf_valid(buf);
1794 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001795#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001796 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001798 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001799 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001800 // If the buffer is not valid but curwin->w_buffer is NULL we must
1801 // enter some buffer. Using the last one is hopefully OK.
1802 if (!valid)
1803 enter_buffer(lastbuf);
1804 else
1805 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001806#ifdef FEAT_SYN_HL
1807 if (old_tw != curbuf->b_p_tw)
1808 check_colorcolumn(curwin);
1809#endif
1810 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811}
1812
1813/*
1814 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001815 * Old curbuf must have been abandoned already! This also means "curbuf" may
1816 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001818 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001819enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001821 // Get the buffer in the current window.
1822 curwin->w_buffer = buf;
1823 curbuf = buf;
1824 ++curbuf->b_nwindows;
1825
1826 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1828 if (!buf->b_help)
1829 get_winopts(buf);
1830#ifdef FEAT_FOLDING
1831 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001832 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001834 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835#endif
1836
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001838 if (curwin->w_p_diff)
1839 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840#endif
1841
Bram Moolenaara971b822011-09-14 14:43:25 +02001842#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001843 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001844#endif
1845
Bram Moolenaarc667da52019-11-30 20:52:27 +01001846 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 curwin->w_cursor.lnum = 1;
1848 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001851 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852
Bram Moolenaarc667da52019-11-30 20:52:27 +01001853 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001854 curwin->w_valid = 0;
1855
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001856 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1857 curbuf->b_last_cursor.col, TRUE);
1858
Bram Moolenaarc667da52019-11-30 20:52:27 +01001859 // Make sure the buffer is loaded.
1860 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001861 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001862 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001863 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001864 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001865 if (*curbuf->b_p_ft == NUL)
1866 did_filetype = FALSE;
1867
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001868 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 else
1871 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001872 if (!msg_silent && !shortmess(SHM_FILEINFO))
1873 need_fileinfo = TRUE; // display file info after redraw
1874
1875 // check if file changed
1876 (void)buf_check_timestamp(curbuf, FALSE);
1877
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001879#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1883 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 }
1885
Bram Moolenaarc667da52019-11-30 20:52:27 +01001886 // If autocommands did not change the cursor position, restore cursor lnum
1887 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 if (curwin->w_cursor.lnum == 1 && inindent(0))
1889 buflist_getfpos();
1890
Bram Moolenaarc667da52019-11-30 20:52:27 +01001891 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001893 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001894 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001895 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896
Bram Moolenaar009b2592004-10-24 19:18:58 +00001897#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001898 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001899 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001900#endif
1901
Bram Moolenaarc667da52019-11-30 20:52:27 +01001902 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001903 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905#ifdef FEAT_KEYMAP
1906 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001907 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001909#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001910 // May need to set the spell language. Can only do this after the buffer
1911 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001912 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1913 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001914#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001915#ifdef FEAT_VIMINFO
1916 curbuf->b_last_used = vim_time();
1917#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001918
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 redraw_later(NOT_VALID);
1920}
1921
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001922#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1923/*
1924 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001925 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001926 */
1927 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001928do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001929{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001930 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001931 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001932 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001933 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001934 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001935 last_chdir_reason = "autochdir";
1936 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001937}
1938#endif
1939
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001940 void
1941no_write_message(void)
1942{
1943#ifdef FEAT_TERMINAL
1944 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001945 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001946 else
1947#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001948 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001949}
1950
1951 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001952no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001953{
1954#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001955 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001956 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001957 else
1958#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001959 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001960}
1961
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962/*
1963 * functions for dealing with the buffer list
1964 */
1965
1966/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001967 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1968 * only one window. That means it can be re-used.
1969 */
1970 int
1971curbuf_reusable(void)
1972{
1973 return (curbuf != NULL
1974 && curbuf->b_ffname == NULL
1975 && curbuf->b_nwindows <= 1
1976 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001977#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001978 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001979#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001980 && !curbufIsChanged());
1981}
1982
1983/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 * Add a file name to the buffer list. Return a pointer to the buffer.
1985 * If the same file name already exists return a pointer to that buffer.
1986 * If it does not exist, or if fname == NULL, a new entry is created.
1987 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1988 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1989 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001990 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001991 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1992 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001993 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 * This is the ONLY way to create a new buffer.
1995 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001997buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001998 char_u *ffname_arg, // full path of fname or relative
1999 char_u *sfname_arg, // short fname or NULL
2000 linenr_T lnum, // preferred cursor line
2001 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002003 char_u *ffname = ffname_arg;
2004 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 buf_T *buf;
2006#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002007 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008#endif
2009
Bram Moolenaar480778b2016-07-14 22:09:39 +02002010 if (top_file_num == 1)
2011 hash_init(&buf_hashtab);
2012
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002013 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014
2015 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002016 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 */
2018#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002019 // On Unix we can use inode numbers when the file exists. Works better
2020 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2022 st.st_dev = (dev_T)-1;
2023#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002024 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025#ifdef UNIX
2026 buflist_findname_stat(ffname, &st)
2027#else
2028 buflist_findname(ffname)
2029#endif
2030 ) != NULL)
2031 {
2032 vim_free(ffname);
2033 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002034 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2035 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002036
2037 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002038 // copy the options now, if 'cpo' doesn't have 's' and not done
2039 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002040 buf_copy_options(buf, 0);
2041
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2043 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002044 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002045
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002047 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002049 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002050 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002051 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002052 return NULL;
2053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 }
2055 return buf;
2056 }
2057
2058 /*
2059 * If the current buffer has no name and no contents, use the current
2060 * buffer. Otherwise: Need to allocate a new buffer structure.
2061 *
2062 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002063 * (A spell file buffer is allocated in spell.c, but that's not a normal
2064 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 */
2066 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002067 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 {
2069 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002070 // It's like this buffer is deleted. Watch out for autocommands that
2071 // change curbuf! If that happens, allocate a new buffer anyway.
Charlie Grovesfef44852022-04-19 16:24:12 +01002072 buf_freeall(buf, BFA_WIPE | BFA_DEL);
2073 if (buf != curbuf) // autocommands deleted the buffer!
2074 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002075#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002076 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002077 {
2078 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 }
2083 if (buf != curbuf || curbuf == NULL)
2084 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002085 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 if (buf == NULL)
2087 {
2088 vim_free(ffname);
2089 return NULL;
2090 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002091#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002092 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002093 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002094 if (buf->b_vars == NULL)
2095 {
2096 vim_free(ffname);
2097 vim_free(buf);
2098 return NULL;
2099 }
2100 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2101#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002102 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 }
2104
2105 if (ffname != NULL)
2106 {
2107 buf->b_ffname = ffname;
2108 buf->b_sfname = vim_strsave(sfname);
2109 }
2110
2111 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002112 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113
2114 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2115 || buf->b_wininfo == NULL)
2116 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002117 if (buf->b_sfname != buf->b_ffname)
2118 VIM_CLEAR(buf->b_sfname);
2119 else
2120 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002121 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 if (buf != curbuf)
2123 free_buffer(buf);
2124 return NULL;
2125 }
2126
2127 if (buf == curbuf)
2128 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002129 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002130
Bram Moolenaarc667da52019-11-30 20:52:27 +01002131 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002132 buf->b_p_initialized = FALSE;
2133 buf_copy_options(buf, BCO_ENTER);
2134
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002136 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 curbuf->b_kmap_state |= KEYMAP_INIT;
2138#endif
2139 }
2140 else
2141 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002142 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002144 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 {
2146 buf->b_prev = NULL;
2147 firstbuf = buf;
2148 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002149 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 {
2151 lastbuf->b_next = buf;
2152 buf->b_prev = lastbuf;
2153 }
2154 lastbuf = buf;
2155
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002156 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2157 {
2158 // Recycle a previously used buffer number. Used for buffers which
2159 // are normally hidden, e.g. in a popup window. Avoids that the
2160 // buffer number grows rapidly.
2161 --buf_reuse.ga_len;
2162 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002163
2164 // Move buffer to the right place in the buffer list.
2165 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2166 {
2167 buf_T *prev = buf->b_prev;
2168
2169 prev->b_next = buf->b_next;
2170 if (prev->b_next != NULL)
2171 prev->b_next->b_prev = prev;
2172 buf->b_next = prev;
2173 buf->b_prev = prev->b_prev;
2174 if (buf->b_prev != NULL)
2175 buf->b_prev->b_next = buf;
2176 prev->b_prev = buf;
2177 if (lastbuf == buf)
2178 lastbuf = prev;
2179 if (firstbuf == prev)
2180 firstbuf = buf;
2181 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002182 }
2183 else
2184 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002185 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002187 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002188 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 {
2190 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002191 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 }
2193 top_file_num = 1;
2194 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002195 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002197 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 buf_copy_options(buf, BCO_ALWAYS);
2199 }
2200
2201 buf->b_wininfo->wi_fpos.lnum = lnum;
2202 buf->b_wininfo->wi_win = curwin;
2203
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002204#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002205 hash_init(&buf->b_s.b_keywtab);
2206 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207#endif
2208
2209 buf->b_fname = buf->b_sfname;
2210#ifdef UNIX
2211 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002212 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 else
2214 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002215 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 buf->b_dev = st.st_dev;
2217 buf->b_ino = st.st_ino;
2218 }
2219#endif
2220 buf->b_u_synced = TRUE;
2221 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002222 if (flags & BLN_DUMMY)
2223 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002225 clrallmarks(buf); // clear marks
2226 fmarks_check_names(buf); // check file marks for this file
2227 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 if (!(flags & BLN_DUMMY))
2229 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002230 bufref_T bufref;
2231
Bram Moolenaarc667da52019-11-30 20:52:27 +01002232 // Tricky: these autocommands may change the buffer list. They could
2233 // also split the window with re-using the one empty buffer. This may
2234 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002235 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002236 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002237 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002238 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002240 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002241 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002242 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002243 return NULL;
2244 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002245#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002246 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250
2251 return buf;
2252}
2253
2254/*
2255 * Free the memory for the options of a buffer.
2256 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2257 * 'fileencoding'.
2258 */
2259 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002260free_buf_options(
2261 buf_T *buf,
2262 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263{
2264 if (free_p_ff)
2265 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 clear_string_option(&buf->b_p_bh);
2269 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 }
2271#ifdef FEAT_FIND_ID
2272 clear_string_option(&buf->b_p_def);
2273 clear_string_option(&buf->b_p_inc);
2274# ifdef FEAT_EVAL
2275 clear_string_option(&buf->b_p_inex);
2276# endif
2277#endif
Bram Moolenaar8e145b82022-05-21 20:17:31 +01002278#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 clear_string_option(&buf->b_p_inde);
2280 clear_string_option(&buf->b_p_indk);
2281#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002282#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2283 clear_string_option(&buf->b_p_bexpr);
2284#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002285#if defined(FEAT_CRYPT)
2286 clear_string_option(&buf->b_p_cm);
2287#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002288 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002289#if defined(FEAT_EVAL)
2290 clear_string_option(&buf->b_p_fex);
2291#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002293# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002294 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2295 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2296 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002297# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 clear_string_option(&buf->b_p_key);
2299#endif
2300 clear_string_option(&buf->b_p_kp);
2301 clear_string_option(&buf->b_p_mps);
2302 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002303 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002305#ifdef FEAT_VARTABS
2306 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002307 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002308 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002309 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002310 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002311 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313#ifdef FEAT_KEYMAP
2314 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002315 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 ga_clear(&buf->b_kmap_ga);
2317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319#ifdef FEAT_FOLDING
2320 clear_string_option(&buf->b_p_cms);
2321#endif
2322 clear_string_option(&buf->b_p_nf);
2323#ifdef FEAT_SYN_HL
2324 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002325 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002326#endif
2327#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002328 clear_string_option(&buf->b_s.b_p_spc);
2329 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002330 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002331 buf->b_s.b_cap_prog = NULL;
2332 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002333 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334#endif
2335#ifdef FEAT_SEARCHPATH
2336 clear_string_option(&buf->b_p_sua);
2337#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 clear_string_option(&buf->b_p_cink);
2340 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002341 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 clear_string_option(&buf->b_p_cinw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002344#ifdef FEAT_COMPL_FUNC
2345 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002346 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002347 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002348 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002349 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002350 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002351#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352#ifdef FEAT_QUICKFIX
2353 clear_string_option(&buf->b_p_gp);
2354 clear_string_option(&buf->b_p_mp);
2355 clear_string_option(&buf->b_p_efm);
2356#endif
2357 clear_string_option(&buf->b_p_ep);
2358 clear_string_option(&buf->b_p_path);
2359 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002360 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002361#ifdef FEAT_EVAL
2362 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002363 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002364#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 clear_string_option(&buf->b_p_dict);
2366 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002367#ifdef FEAT_TEXTOBJ
2368 clear_string_option(&buf->b_p_qe);
2369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002371 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002372 clear_string_option(&buf->b_p_lw);
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002373 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002374 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375}
2376
2377/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002378 * Get alternate file "n".
2379 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2380 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 * if (options & GETF_SETMARK) call setpcmark()
2382 * if (options & GETF_ALT) we are jumping to an alternate file.
2383 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2384 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002385 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 */
2387 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002388buflist_getfile(
2389 int n,
2390 linenr_T lnum,
2391 int options,
2392 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393{
2394 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 pos_T *fpos;
2397 colnr_T col;
2398
2399 buf = buflist_findnr(n);
2400 if (buf == NULL)
2401 {
2402 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002403 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002405 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 return FAIL;
2407 }
2408
Bram Moolenaarc667da52019-11-30 20:52:27 +01002409 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 if (buf == curbuf)
2411 return OK;
2412
Bram Moolenaar71223e22022-05-30 15:23:09 +01002413 if (text_or_buf_locked())
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002414 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415
Bram Moolenaarc667da52019-11-30 20:52:27 +01002416 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 if (lnum == 0)
2418 {
2419 fpos = buflist_findfpos(buf);
2420 lnum = fpos->lnum;
2421 col = fpos->col;
2422 }
2423 else
2424 col = 0;
2425
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 if (options & GETF_SWITCH)
2427 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002428 // If 'switchbuf' contains "useopen": jump to first window containing
2429 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002430 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002432
Bram Moolenaarc667da52019-11-30 20:52:27 +01002433 // If 'switchbuf' contains "usetab": jump to first window in any tab
2434 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002435 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002436 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002437
Bram Moolenaarc667da52019-11-30 20:52:27 +01002438 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2439 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002440 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002441 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002443 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002444 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002445 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2446 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002448 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 }
2450 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451
2452 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002453 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2454 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 {
2456 --RedrawingDisabled;
2457
Bram Moolenaarc667da52019-11-30 20:52:27 +01002458 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 if (!p_sol && col != 0)
2460 {
2461 curwin->w_cursor.col = col;
2462 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 curwin->w_set_curswant = TRUE;
2465 }
2466 return OK;
2467 }
2468 --RedrawingDisabled;
2469 return FAIL;
2470}
2471
2472/*
2473 * go to the last know line number for the current buffer
2474 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002475 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002476buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477{
2478 pos_T *fpos;
2479
2480 fpos = buflist_findfpos(curbuf);
2481
2482 curwin->w_cursor.lnum = fpos->lnum;
2483 check_cursor_lnum();
2484
2485 if (p_sol)
2486 curwin->w_cursor.col = 0;
2487 else
2488 {
2489 curwin->w_cursor.col = fpos->col;
2490 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 curwin->w_set_curswant = TRUE;
2493 }
2494}
2495
Bram Moolenaar81695252004-12-29 20:58:21 +00002496#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2497/*
2498 * Find file in buffer list by name (it has to be for the current window).
2499 * Returns NULL if not found.
2500 */
2501 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002502buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002503{
2504 char_u *ffname;
2505 buf_T *buf = NULL;
2506
Bram Moolenaarc667da52019-11-30 20:52:27 +01002507 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002508 ffname = FullName_save(fname,
2509#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002510 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002511#else
2512 FALSE
2513#endif
2514 );
2515 if (ffname != NULL)
2516 {
2517 buf = buflist_findname(ffname);
2518 vim_free(ffname);
2519 }
2520 return buf;
2521}
2522#endif
2523
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524/*
2525 * Find file in buffer list by name (it has to be for the current window).
2526 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002527 * Skips dummy buffers.
2528 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 */
2530 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002531buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532{
2533#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002534 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535
2536 if (mch_stat((char *)ffname, &st) < 0)
2537 st.st_dev = (dev_T)-1;
2538 return buflist_findname_stat(ffname, &st);
2539}
2540
2541/*
2542 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2543 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002544 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 */
2546 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002547buflist_findname_stat(
2548 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002549 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
2551#endif
2552 buf_T *buf;
2553
Bram Moolenaarc667da52019-11-30 20:52:27 +01002554 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002555 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002556 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557#ifdef UNIX
2558 , stp
2559#endif
2560 ))
2561 return buf;
2562 return NULL;
2563}
2564
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565/*
2566 * Find file in buffer list by a regexp pattern.
2567 * Return fnum of the found buffer.
2568 * Return < 0 for error.
2569 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002571buflist_findpat(
2572 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002573 char_u *pattern_end, // pointer to first char after pattern
2574 int unlisted, // find unlisted buffers
2575 int diffmode UNUSED, // find diff-mode buffers only
2576 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577{
2578 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 int match = -1;
2580 int find_listed;
2581 char_u *pat;
2582 char_u *patend;
2583 int attempt;
2584 char_u *p;
2585 int toggledollar;
2586
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002587 // "%" is current file, "%%" or "#" is alternate file
2588 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2589 || (in_vim9script() && pattern_end == pattern + 2
2590 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002592 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002594 else
2595 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596#ifdef FEAT_DIFF
2597 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2598 match = -1;
2599#endif
2600 }
2601
2602 /*
2603 * Try four ways of matching a listed buffer:
2604 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002605 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 * attempt == 2: with '$' at end (only match at end)
2607 * attempt == 3: with '^' at start and '$' at end (only full match)
2608 * Repeat this for finding an unlisted buffer if there was no matching
2609 * listed buffer.
2610 */
2611 else
2612 {
2613 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2614 if (pat == NULL)
2615 return -1;
2616 patend = pat + STRLEN(pat) - 1;
2617 toggledollar = (patend > pat && *patend == '$');
2618
Bram Moolenaarc667da52019-11-30 20:52:27 +01002619 // First try finding a listed buffer. If not found and "unlisted"
2620 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 find_listed = TRUE;
2622 for (;;)
2623 {
2624 for (attempt = 0; attempt <= 3; ++attempt)
2625 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002626 regmatch_T regmatch;
2627
Bram Moolenaarc667da52019-11-30 20:52:27 +01002628 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002630 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002632 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002634 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002636 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002637 {
2638 if (regmatch.regprog == NULL)
2639 {
2640 // invalid pattern, possibly after switching engine
2641 vim_free(pat);
2642 return -1;
2643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 if (buf->b_p_bl == find_listed
2645#ifdef FEAT_DIFF
2646 && (!diffmode || diff_mode_buf(buf))
2647#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002648 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002650 if (curtab_only)
2651 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002652 // Ignore the match if the buffer is not open in
2653 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002654 win_T *wp;
2655
Bram Moolenaar29323592016-07-24 22:04:11 +02002656 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002657 if (wp->w_buffer == buf)
2658 break;
2659 if (wp == NULL)
2660 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002661 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002662 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 {
2664 match = -2;
2665 break;
2666 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002667 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 }
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002669 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002671 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002672 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 break;
2674 }
2675
Bram Moolenaarc667da52019-11-30 20:52:27 +01002676 // Only search for unlisted buffers if there was no match with
2677 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 if (!unlisted || !find_listed || match != -1)
2679 break;
2680 find_listed = FALSE;
2681 }
2682
2683 vim_free(pat);
2684 }
2685
2686 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002687 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002689 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 return match;
2691}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692
Bram Moolenaar52410572019-10-27 05:12:45 +01002693#ifdef FEAT_VIMINFO
2694typedef struct {
2695 buf_T *buf;
2696 char_u *match;
2697} bufmatch_T;
2698#endif
2699
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700/*
2701 * Find all buffer names that match.
2702 * For command line expansion of ":buf" and ":sbuf".
2703 * Return OK if matches found, FAIL otherwise.
2704 */
2705 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002706ExpandBufnames(
2707 char_u *pat,
2708 int *num_file,
2709 char_u ***file,
2710 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711{
2712 int count = 0;
2713 buf_T *buf;
2714 int round;
2715 char_u *p;
2716 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002717 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002718#ifdef FEAT_VIMINFO
2719 bufmatch_T *matches = NULL;
2720#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002721 int fuzzy;
2722 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723
Bram Moolenaarc667da52019-11-30 20:52:27 +01002724 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 *file = NULL;
2726
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002727#ifdef FEAT_DIFF
2728 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2729 return FAIL;
2730#endif
2731
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002732 fuzzy = cmdline_fuzzy_complete(pat);
2733
2734 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2735 // expression matching)
2736 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002738 if (*pat == '^')
2739 {
2740 patc = alloc(STRLEN(pat) + 11);
2741 if (patc == NULL)
2742 return FAIL;
2743 STRCPY(patc, "\\(^\\|[\\/]\\)");
2744 STRCPY(patc + 11, pat + 1);
2745 }
2746 else
2747 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002748 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002749
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002750 // attempt == 0: try match with '\<', match at start of word
2751 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002752 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002753 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002754 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002755 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002756
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002757 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002758 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002759 if (attempt > 0 && patc == pat)
2760 break; // there was no anchor, no need to try again
2761 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002764 // round == 1: Count the matches.
2765 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 for (round = 1; round <= 2; ++round)
2767 {
2768 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002769 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002771 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002773#ifdef FEAT_DIFF
2774 if (options & BUF_DIFF_FILTER)
2775 // Skip buffers not suitable for
2776 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002777 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002778 continue;
2779#endif
2780
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002781 if (!fuzzy)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002782 {
2783 if (regmatch.regprog == NULL)
2784 {
2785 // invalid pattern, possibly after recompiling
2786 if (patc != pat)
2787 vim_free(patc);
2788 return FAIL;
2789 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002790 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002791 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002792 else
2793 {
2794 p = NULL;
2795 // first try matching with the short file name
2796 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2797 p = buf->b_sfname;
2798 if (p == NULL)
2799 {
2800 // next try matching with the full path file name
2801 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2802 p = buf->b_ffname;
2803 }
2804 }
2805
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002806 if (p == NULL)
2807 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002808
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002809 if (round == 1)
2810 {
2811 ++count;
2812 continue;
2813 }
2814
2815 if (options & WILD_HOME_REPLACE)
2816 p = home_replace_save(buf, p);
2817 else
2818 p = vim_strsave(p);
2819
2820 if (!fuzzy)
2821 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002822#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002823 if (matches != NULL)
2824 {
2825 matches[count].buf = buf;
2826 matches[count].match = p;
2827 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002829 else
2830#endif
2831 (*file)[count++] = p;
2832 }
2833 else
2834 {
2835 fuzmatch[count].idx = count;
2836 fuzmatch[count].str = p;
2837 fuzmatch[count].score = score;
2838 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 }
2840 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002841 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 break;
2843 if (round == 1)
2844 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002845 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002847 *file = ALLOC_MULT(char_u *, count);
2848 if (*file == NULL)
2849 {
2850 vim_regfree(regmatch.regprog);
2851 if (patc != pat)
2852 vim_free(patc);
2853 return FAIL;
2854 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002855#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002856 if (options & WILD_BUFLASTUSED)
2857 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002858#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002859 }
2860 else
2861 {
2862 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2863 if (fuzmatch == NULL)
2864 {
2865 *num_file = 0;
2866 *file = NULL;
2867 return FAIL;
2868 }
2869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 }
2871 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002872
2873 if (!fuzzy)
2874 {
2875 vim_regfree(regmatch.regprog);
2876 if (count) // match(es) found, break here
2877 break;
2878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 }
2880
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002881 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002882 vim_free(patc);
2883
Bram Moolenaar52410572019-10-27 05:12:45 +01002884#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002885 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002886 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002887 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002888 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002889 int i;
2890 if (count > 1)
2891 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2892 // if the current buffer is first in the list, place it at the end
2893 if (matches[0].buf == curbuf)
2894 {
2895 for (i = 1; i < count; i++)
2896 (*file)[i-1] = matches[i].match;
2897 (*file)[count-1] = matches[0].match;
2898 }
2899 else
2900 {
2901 for (i = 0; i < count; i++)
2902 (*file)[i] = matches[i].match;
2903 }
2904 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002905 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002906 }
2907 else
2908 {
2909 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2910 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002911 }
2912#endif
2913
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 *num_file = count;
2915 return (count == 0 ? FAIL : OK);
2916}
2917
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918/*
2919 * Check for a match on the file name for buffer "buf" with regprog "prog".
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002920 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 */
2922 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002923buflist_match(
2924 regmatch_T *rmp,
2925 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002926 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927{
2928 char_u *match;
2929
Bram Moolenaarc667da52019-11-30 20:52:27 +01002930 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002931 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaara59f2df2022-05-11 11:42:28 +01002932 if (match == NULL && rmp->regprog != NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002933 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934
2935 return match;
2936}
2937
2938/*
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002939 * Try matching the regexp in "rmp->regprog" with file name "name".
2940 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 * Return "name" when there is a match, NULL when not.
2942 */
2943 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002944fname_match(
2945 regmatch_T *rmp,
2946 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002947 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 char_u *match = NULL;
2950 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002952 // extra check for valid arguments
2953 if (name != NULL && rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002955 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002956 rmp->rm_ic = p_fic || ignore_case;
2957 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 match = name;
Bram Moolenaar8e4b76d2022-05-07 11:28:06 +01002959 else if (rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002961 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002963 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 match = name;
2965 vim_free(p);
2966 }
2967 }
2968
2969 return match;
2970}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971
2972/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002973 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 */
2975 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002976buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002978 char_u key[VIM_SIZEOF_INT * 2 + 1];
2979 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980
2981 if (nr == 0)
2982 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002983 sprintf((char *)key, "%x", nr);
2984 hi = hash_find(&buf_hashtab, key);
2985
2986 if (!HASHITEM_EMPTY(hi))
2987 return (buf_T *)(hi->hi_key
2988 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 return NULL;
2990}
2991
2992/*
2993 * Get name of file 'n' in the buffer list.
2994 * When the file has no name an empty string is returned.
2995 * home_replace() is used to shorten the file name (used for marks).
2996 * Returns a pointer to allocated memory, of NULL when failed.
2997 */
2998 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002999buflist_nr2name(
3000 int n,
3001 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003002 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
3004 buf_T *buf;
3005
3006 buf = buflist_findnr(n);
3007 if (buf == NULL)
3008 return NULL;
3009 return home_replace_save(helptail ? buf : NULL,
3010 fullname ? buf->b_ffname : buf->b_fname);
3011}
3012
3013/*
3014 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3015 * When "copy_options" is TRUE save the local window option values.
3016 * When "lnum" is 0 only do the options.
3017 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003018 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003019buflist_setfpos(
3020 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003021 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003022 linenr_T lnum,
3023 colnr_T col,
3024 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025{
3026 wininfo_T *wip;
3027
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003028 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 if (wip->wi_win == win)
3030 break;
3031 if (wip == NULL)
3032 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003033 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003034 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 if (wip == NULL)
3036 return;
3037 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003038 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 lnum = 1;
3040 }
3041 else
3042 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003043 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 if (wip->wi_prev)
3045 wip->wi_prev->wi_next = wip->wi_next;
3046 else
3047 buf->b_wininfo = wip->wi_next;
3048 if (wip->wi_next)
3049 wip->wi_next->wi_prev = wip->wi_prev;
3050 if (copy_options && wip->wi_optset)
3051 {
3052 clear_winopt(&wip->wi_opt);
3053#ifdef FEAT_FOLDING
3054 deleteFoldRecurse(&wip->wi_folds);
3055#endif
3056 }
3057 }
3058 if (lnum != 0)
3059 {
3060 wip->wi_fpos.lnum = lnum;
3061 wip->wi_fpos.col = col;
3062 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003063 if (win != NULL)
3064 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003065 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003067 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3069#ifdef FEAT_FOLDING
3070 wip->wi_fold_manual = win->w_fold_manual;
3071 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3072#endif
3073 wip->wi_optset = TRUE;
3074 }
3075
Bram Moolenaarc667da52019-11-30 20:52:27 +01003076 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 wip->wi_next = buf->b_wininfo;
3078 buf->b_wininfo = wip;
3079 wip->wi_prev = NULL;
3080 if (wip->wi_next)
3081 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082}
3083
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003084#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003085/*
3086 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3087 * page. That's because a diff is local to a tab page.
3088 */
3089 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003090wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003091{
3092 win_T *wp;
3093
3094 if (wip->wi_opt.wo_diff)
3095 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003096 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003097 // return FALSE when it's a window in the current tab page, thus
3098 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003099 if (wip->wi_win == wp)
3100 return FALSE;
3101 return TRUE;
3102 }
3103 return FALSE;
3104}
3105#endif
3106
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107/*
3108 * Find info for the current window in buffer "buf".
3109 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003110 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003111 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3112 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 * Returns NULL when there isn't any info.
3114 */
3115 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003116find_wininfo(
3117 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003118 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003119 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120{
3121 wininfo_T *wip;
3122
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003123 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003124 if (wip->wi_win == curwin
3125#ifdef FEAT_DIFF
3126 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3127#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003128
3129 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003131
Bram Moolenaarc667da52019-11-30 20:52:27 +01003132 // If no wininfo for curwin, use the first in the list (that doesn't have
3133 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003134 // If "need_options" is TRUE skip entries that don't have options set,
3135 // unless the window is editing "buf", so we can copy from the window
3136 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003137 if (wip == NULL)
3138 {
3139#ifdef FEAT_DIFF
3140 if (skip_diff_buffer)
3141 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003142 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003143 if (!wininfo_other_tab_diff(wip)
3144 && (!need_options || wip->wi_optset
3145 || (wip->wi_win != NULL
3146 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003147 break;
3148 }
3149 else
3150#endif
3151 wip = buf->b_wininfo;
3152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 return wip;
3154}
3155
3156/*
3157 * Reset the local window options to the values last used in this window.
3158 * If the buffer wasn't used in this window before, use the values from
3159 * the most recently used window. If the values were never set, use the
3160 * global values for the window.
3161 */
3162 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003163get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
3165 wininfo_T *wip;
3166
3167 clear_winopt(&curwin->w_onebuf_opt);
3168#ifdef FEAT_FOLDING
3169 clearFolding(curwin);
3170#endif
3171
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003172 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003173 if (wip != NULL && wip->wi_win != NULL
3174 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003176 // The buffer is currently displayed in the window: use the actual
3177 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003178 win_T *wp = wip->wi_win;
3179
3180 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3181#ifdef FEAT_FOLDING
3182 curwin->w_fold_manual = wp->w_fold_manual;
3183 curwin->w_foldinvalid = TRUE;
3184 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3185#endif
3186 }
3187 else if (wip != NULL && wip->wi_optset)
3188 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003189 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3191#ifdef FEAT_FOLDING
3192 curwin->w_fold_manual = wip->wi_fold_manual;
3193 curwin->w_foldinvalid = TRUE;
3194 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3195#endif
3196 }
3197 else
3198 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003199 if (wip != NULL)
3200 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
3202#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003203 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 if (p_fdls >= 0)
3205 curwin->w_p_fdl = p_fdls;
3206#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003207 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208}
3209
3210/*
3211 * Find the position (lnum and col) for the buffer 'buf' for the current
3212 * window.
3213 * Returns a pointer to no_position if no position is found.
3214 */
3215 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003216buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217{
3218 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003219 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003221 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 if (wip != NULL)
3223 return &(wip->wi_fpos);
3224 else
3225 return &no_position;
3226}
3227
3228/*
3229 * Find the lnum for the buffer 'buf' for the current window.
3230 */
3231 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003232buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233{
3234 return buflist_findfpos(buf)->lnum;
3235}
3236
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003238 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003241buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242{
Bram Moolenaar52410572019-10-27 05:12:45 +01003243 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 int len;
3245 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003246 int ro_char;
3247 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003248#ifdef FEAT_TERMINAL
3249 int job_running;
3250 int job_none_open;
3251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
Bram Moolenaar52410572019-10-27 05:12:45 +01003253#ifdef FEAT_VIMINFO
3254 garray_T buflist;
3255 buf_T **buflist_data = NULL, **p;
3256
3257 if (vim_strchr(eap->arg, 't'))
3258 {
3259 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003260 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003261 {
3262 if (ga_grow(&buflist, 1) == OK)
3263 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3264 }
3265
3266 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3267 sizeof(buf_T *), buf_compare);
3268
Bram Moolenaar3b991522019-11-06 23:26:20 +01003269 buflist_data = (buf_T **)buflist.ga_data;
3270 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003271 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003272 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003273
Bram Moolenaar3b991522019-11-06 23:26:20 +01003274 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003275 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3276 : buf->b_next)
3277#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003279#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003281#ifdef FEAT_TERMINAL
3282 job_running = term_job_running(buf->b_term);
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003283 job_none_open = term_none_open(buf->b_term);
Bram Moolenaar0751f512018-03-29 16:37:16 +02003284#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003285 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003286 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3287 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3288 || (vim_strchr(eap->arg, '+')
3289 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3290 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003291 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003292 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003293 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3294#ifdef FEAT_TERMINAL
3295 || (vim_strchr(eap->arg, 'R')
3296 && (!job_running || (job_running && job_none_open)))
3297 || (vim_strchr(eap->arg, '?')
3298 && (!job_running || (job_running && !job_none_open)))
3299 || (vim_strchr(eap->arg, 'F')
3300 && (job_running || buf->b_term == NULL))
3301#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003302 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3303 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3304 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3305 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3306 || (vim_strchr(eap->arg, '#')
3307 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003310 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 else
3312 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003313 if (message_filtered(NameBuff))
3314 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003316 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3317 : (bufIsChanged(buf) ? '+' : ' ');
3318#ifdef FEAT_TERMINAL
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003319 if (job_running)
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003320 {
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003321 if (job_none_open)
Bram Moolenaar4033c552017-09-16 20:54:51 +02003322 ro_char = '?';
3323 else
3324 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003325 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3326 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003327 }
3328 else if (buf->b_term != NULL)
3329 ro_char = 'F';
3330 else
3331#endif
3332 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3333
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003334 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003335 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 buf->b_fnum,
3337 buf->b_p_bl ? ' ' : 'u',
3338 buf == curbuf ? '%' :
3339 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3340 buf->b_ml.ml_mfp == NULL ? ' ' :
3341 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003342 ro_char,
3343 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003344 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003345 if (len > IOSIZE - 20)
3346 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347
Bram Moolenaarc667da52019-11-30 20:52:27 +01003348 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 i = 40 - vim_strsize(IObuff);
3350 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003352 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003353#ifdef FEAT_VIMINFO
3354 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3355 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3356 else
3357#endif
3358 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3359 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003360 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003362 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 ui_breakcheck();
3364 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003365
3366#ifdef FEAT_VIMINFO
3367 if (buflist_data)
3368 ga_clear(&buflist);
3369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371
3372/*
3373 * Get file name and line number for file 'fnum'.
3374 * Used by DoOneCmd() for translating '%' and '#'.
3375 * Used by insert_reg() and cmdline_paste() for '#' register.
3376 * Return FAIL if not found, OK for success.
3377 */
3378 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003379buflist_name_nr(
3380 int fnum,
3381 char_u **fname,
3382 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383{
3384 buf_T *buf;
3385
3386 buf = buflist_findnr(fnum);
3387 if (buf == NULL || buf->b_fname == NULL)
3388 return FAIL;
3389
3390 *fname = buf->b_fname;
3391 *lnum = buflist_findlnum(buf);
3392
3393 return OK;
3394}
3395
3396/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003397 * Set the file name for "buf"' to "ffname_arg", short file name to
3398 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 * The file name with the full path is also remembered, for when :cd is used.
3400 * Returns FAIL for failure (file name already in use by other buffer)
3401 * OK otherwise.
3402 */
3403 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003404setfname(
3405 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003406 char_u *ffname_arg,
3407 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003408 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003410 char_u *ffname = ffname_arg;
3411 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003412 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003414 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415#endif
3416
3417 if (ffname == NULL || *ffname == NUL)
3418 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003419 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003420 if (buf->b_sfname != buf->b_ffname)
3421 VIM_CLEAR(buf->b_sfname);
3422 else
3423 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003424 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425#ifdef UNIX
3426 st.st_dev = (dev_T)-1;
3427#endif
3428 }
3429 else
3430 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003431 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3432 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 return FAIL;
3434
3435 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003436 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 * - if the buffer is loaded, fail
3438 * - if the buffer is not loaded, delete it from the list
3439 */
3440#ifdef UNIX
3441 if (mch_stat((char *)ffname, &st) < 0)
3442 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003443#endif
3444 if (!(buf->b_flags & BF_DUMMY))
3445#ifdef UNIX
3446 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003448 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449#endif
3450 if (obuf != NULL && obuf != buf)
3451 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003452 win_T *win;
3453 tabpage_T *tab;
3454 int in_use = FALSE;
3455
3456 // during startup a window may use a buffer that is not loaded yet
3457 FOR_ALL_TAB_WINDOWS(tab, win)
3458 if (win->w_buffer == obuf)
3459 in_use = TRUE;
3460
3461 // it's loaded or used in a window, fail
3462 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 {
3464 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003465 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 vim_free(ffname);
3467 return FAIL;
3468 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003469 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003470 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 }
3472 sfname = vim_strsave(sfname);
3473 if (ffname == NULL || sfname == NULL)
3474 {
3475 vim_free(sfname);
3476 vim_free(ffname);
3477 return FAIL;
3478 }
3479#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003480 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003482 if (buf->b_sfname != buf->b_ffname)
3483 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 buf->b_ffname = ffname;
3486 buf->b_sfname = sfname;
3487 }
3488 buf->b_fname = buf->b_sfname;
3489#ifdef UNIX
3490 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003491 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 else
3493 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003494 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 buf->b_dev = st.st_dev;
3496 buf->b_ino = st.st_ino;
3497 }
3498#endif
3499
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501
3502 buf_name_changed(buf);
3503 return OK;
3504}
3505
3506/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003507 * Crude way of changing the name of a buffer. Use with care!
3508 * The name should be relative to the current directory.
3509 */
3510 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003511buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003512{
3513 buf_T *buf;
3514
3515 buf = buflist_findnr(fnum);
3516 if (buf != NULL)
3517 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003518 if (buf->b_sfname != buf->b_ffname)
3519 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003520 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003521 buf->b_ffname = vim_strsave(name);
3522 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003523 // Allocate ffname and expand into full path. Also resolves .lnk
3524 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003525 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003526 buf->b_fname = buf->b_sfname;
3527 }
3528}
3529
3530/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 * Take care of what needs to be done when the name of buffer "buf" has
3532 * changed.
3533 */
3534 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003535buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536{
3537 /*
3538 * If the file name changed, also change the name of the swapfile
3539 */
3540 if (buf->b_ml.ml_mfp != NULL)
3541 ml_setname(buf);
3542
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003543#ifdef FEAT_TERMINAL
3544 if (buf->b_term != NULL)
3545 term_clear_status_text(buf->b_term);
3546#endif
3547
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003549 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003550 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003551 status_redraw_all(); // status lines need to be redrawn
3552 fmarks_check_names(buf); // check named file marks
3553 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554}
3555
3556/*
3557 * set alternate file name for current window
3558 *
3559 * Used by do_one_cmd(), do_write() and do_ecmd().
3560 * Return the buffer.
3561 */
3562 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003563setaltfname(
3564 char_u *ffname,
3565 char_u *sfname,
3566 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567{
3568 buf_T *buf;
3569
Bram Moolenaarc667da52019-11-30 20:52:27 +01003570 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003572 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 curwin->w_alt_fnum = buf->b_fnum;
3574 return buf;
3575}
3576
3577/*
3578 * Get alternate file name for current window.
3579 * Return NULL if there isn't any, and give error message if requested.
3580 */
3581 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003582getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003583 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584{
3585 char_u *fname;
3586 linenr_T dummy;
3587
3588 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3589 {
3590 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003591 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 return NULL;
3593 }
3594 return fname;
3595}
3596
3597/*
3598 * Add a file name to the buflist and return its number.
3599 * Uses same flags as buflist_new(), except BLN_DUMMY.
3600 *
3601 * used by qf_init(), main() and doarglist()
3602 */
3603 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003604buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605{
3606 buf_T *buf;
3607
3608 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3609 if (buf != NULL)
3610 return buf->b_fnum;
3611 return 0;
3612}
3613
3614#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3615/*
3616 * Adjust slashes in file names. Called after 'shellslash' was set.
3617 */
3618 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003619buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620{
3621 buf_T *bp;
3622
Bram Moolenaar29323592016-07-24 22:04:11 +02003623 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 {
3625 if (bp->b_ffname != NULL)
3626 slash_adjust(bp->b_ffname);
3627 if (bp->b_sfname != NULL)
3628 slash_adjust(bp->b_sfname);
3629 }
3630}
3631#endif
3632
3633/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003634 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 * Also save the local window option values.
3636 */
3637 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003638buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003640 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641}
3642
3643/*
3644 * Return TRUE if 'ffname' is not the same file as current file.
3645 * Fname must have a full path (expanded by mch_FullName()).
3646 */
3647 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003648otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649{
3650 return otherfile_buf(curbuf, ffname
3651#ifdef UNIX
3652 , NULL
3653#endif
3654 );
3655}
3656
3657 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003658otherfile_buf(
3659 buf_T *buf,
3660 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003662 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003664 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003666 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3668 return TRUE;
3669 if (fnamecmp(ffname, buf->b_ffname) == 0)
3670 return FALSE;
3671#ifdef UNIX
3672 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003673 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674
Bram Moolenaarc667da52019-11-30 20:52:27 +01003675 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 if (stp == NULL)
3677 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003678 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 st.st_dev = (dev_T)-1;
3680 stp = &st;
3681 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003682 // Use dev/ino to check if the files are the same, even when the names
3683 // are different (possible with links). Still need to compare the
3684 // name above, for when the file doesn't exist yet.
3685 // Problem: The dev/ino changes when a file is deleted (and created
3686 // again) and remains the same when renamed/moved. We don't want to
3687 // mch_stat() each buffer each time, that would be too slow. Get the
3688 // dev/ino again when they appear to match, but not when they appear
3689 // to be different: Could skip a buffer when it's actually the same
3690 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 if (buf_same_ino(buf, stp))
3692 {
3693 buf_setino(buf);
3694 if (buf_same_ino(buf, stp))
3695 return FALSE;
3696 }
3697 }
3698#endif
3699 return TRUE;
3700}
3701
3702#if defined(UNIX) || defined(PROTO)
3703/*
3704 * Set inode and device number for a buffer.
3705 * Must always be called when b_fname is changed!.
3706 */
3707 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003708buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003710 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711
3712 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3713 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003714 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 buf->b_dev = st.st_dev;
3716 buf->b_ino = st.st_ino;
3717 }
3718 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003719 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720}
3721
3722/*
3723 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3724 */
3725 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003726buf_same_ino(
3727 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003728 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003730 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 && stp->st_dev == buf->b_dev
3732 && stp->st_ino == buf->b_ino);
3733}
3734#endif
3735
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003736/*
3737 * Print info about the current buffer.
3738 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003740fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003741 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003742 int shorthelp,
3743 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744{
3745 char_u *name;
3746 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003747 char *p;
3748 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003749 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003751 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 if (buffer == NULL)
3753 return;
3754
Bram Moolenaarc667da52019-11-30 20:52:27 +01003755 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003757 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 p = buffer + STRLEN(buffer);
3759 }
3760 else
3761 p = buffer;
3762
3763 *p++ = '"';
3764 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003765 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 else
3767 {
3768 if (!fullname && curbuf->b_fname != NULL)
3769 name = curbuf->b_fname;
3770 else
3771 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003772 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 (int)(IOSIZE - (p - buffer)), TRUE);
3774 }
3775
Bram Moolenaar32526b32019-01-19 17:43:09 +01003776 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 curbufIsChanged() ? (shortmess(SHM_MOD)
3778 ? " [+]" : _(" [Modified]")) : " ",
3779 (curbuf->b_flags & BF_NOTEDITED)
3780#ifdef FEAT_QUICKFIX
3781 && !bt_dontwrite(curbuf)
3782#endif
3783 ? _("[Not edited]") : "",
3784 (curbuf->b_flags & BF_NEW)
3785#ifdef FEAT_QUICKFIX
3786 && !bt_dontwrite(curbuf)
3787#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003788 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003790 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 : _("[readonly]")) : "",
3792 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3793 || curbuf->b_p_ro) ?
3794 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003795 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3796 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 if (curwin->w_cursor.lnum > 1000000L)
3798 n = (int)(((long)curwin->w_cursor.lnum) /
3799 ((long)curbuf->b_ml.ml_line_count / 100L));
3800 else
3801 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3802 (long)curbuf->b_ml.ml_line_count);
3803 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003804 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805#ifdef FEAT_CMDL_INFO
3806 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003807 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003808 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003809 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3810 curbuf->b_ml.ml_line_count),
3811 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812#endif
3813 else
3814 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003815 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 _("line %ld of %ld --%d%%-- col "),
3817 (long)curwin->w_cursor.lnum,
3818 (long)curbuf->b_ml.ml_line_count,
3819 n);
3820 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003821 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003822 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3824 }
3825
Bram Moolenaar32526b32019-01-19 17:43:09 +01003826 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3827 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
3829 if (dont_truncate)
3830 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003831 // Temporarily set msg_scroll to avoid the message being truncated.
3832 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 msg_start();
3834 n = msg_scroll;
3835 msg_scroll = TRUE;
3836 msg(buffer);
3837 msg_scroll = n;
3838 }
3839 else
3840 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003841 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003843 // Need to repeat the message after redrawing when:
3844 // - When restart_edit is set (otherwise there will be a delay
3845 // before redrawing).
3846 // - When the screen was scrolled but there is no wait-return
3847 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003848 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 }
3850
3851 vim_free(buffer);
3852}
3853
3854 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003855col_print(
3856 char_u *buf,
3857 size_t buflen,
3858 int col,
3859 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860{
3861 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003862 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003864 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865}
3866
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867static char_u *lasttitle = NULL;
3868static char_u *lasticon = NULL;
3869
Bram Moolenaar84a93082018-06-16 22:58:15 +02003870/*
3871 * Put the file name in the title bar and icon of the window.
3872 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003874maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875{
3876 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003877 char_u *title_str = NULL;
3878 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 int maxlen = 0;
3880 int len;
3881 int mustset;
3882 char_u buf[IOSIZE];
3883 int off;
3884
3885 if (!redrawing())
3886 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003887 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 need_maketitle = TRUE;
3889 return;
3890 }
3891
3892 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003893 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003894 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895
3896 if (p_title)
3897 {
3898 if (p_titlelen > 0)
3899 {
3900 maxlen = p_titlelen * Columns / 100;
3901 if (maxlen < 10)
3902 maxlen = 10;
3903 }
3904
Bram Moolenaar84a93082018-06-16 22:58:15 +02003905 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 if (*p_titlestring != NUL)
3907 {
3908#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003909 if (stl_syntax & STL_IN_TITLE)
3910 {
3911 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003912 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003913
3914# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003915 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003916# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003917 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003918 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003919 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003920 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003921 set_string_option_direct((char_u *)"titlestring", -1,
3922 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003923 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 else
3925#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003926 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 }
3928 else
3929 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003930 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931
Bram Moolenaar2c666692012-09-05 13:30:40 +02003932#define SPACE_FOR_FNAME (IOSIZE - 100)
3933#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003934#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003936 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003937#ifdef FEAT_TERMINAL
3938 else if (curbuf->b_term != NULL)
3939 {
3940 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3941 SPACE_FOR_FNAME);
3942 }
3943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 else
3945 {
3946 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003947 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 }
3950
Bram Moolenaar21554412017-07-24 21:44:43 +02003951#ifdef FEAT_TERMINAL
3952 if (curbuf->b_term == NULL)
3953#endif
3954 switch (bufIsChanged(curbuf)
3955 + (curbuf->b_p_ro * 2)
3956 + (!curbuf->b_p_ma * 4))
3957 {
3958 case 1: STRCAT(buf, " +"); break;
3959 case 2: STRCAT(buf, " ="); break;
3960 case 3: STRCAT(buf, " =+"); break;
3961 case 4:
3962 case 6: STRCAT(buf, " -"); break;
3963 case 5:
3964 case 7: STRCAT(buf, " -+"); break;
3965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966
Bram Moolenaar21554412017-07-24 21:44:43 +02003967 if (curbuf->b_fname != NULL
3968#ifdef FEAT_TERMINAL
3969 && curbuf->b_term == NULL
3970#endif
3971 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003973 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 off = (int)STRLEN(buf);
3975 buf[off++] = ' ';
3976 buf[off++] = '(';
3977 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003978 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003980 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 if (isalpha(buf[off]) && buf[off + 1] == ':')
3982 off += 2;
3983#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003984 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003985 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003987 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003988 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003989 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003990 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003991 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003994
Bram Moolenaarc667da52019-11-30 20:52:27 +01003995 // Translate unprintable chars and concatenate. Keep some
3996 // room for the server name. When there is no room (very long
3997 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003998 if (off < SPACE_FOR_DIR)
3999 {
4000 p = transstr(buf + off);
4001 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4002 vim_free(p);
4003 }
4004 else
4005 {
4006 vim_strncpy(buf + off, (char_u *)"...",
4007 (size_t)(SPACE_FOR_ARGNR - off));
4008 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 STRCAT(buf, ")");
4010 }
4011
Bram Moolenaar2c666692012-09-05 13:30:40 +02004012 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013
4014#if defined(FEAT_CLIENTSERVER)
4015 if (serverName != NULL)
4016 {
4017 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004018 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 }
4020 else
4021#endif
4022 STRCAT(buf, " - VIM");
4023
4024 if (maxlen > 0)
4025 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004026 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004027 if (vim_strsize(buf) > maxlen)
4028 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 }
4030 }
4031 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004032 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033
4034 if (p_icon)
4035 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004036 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 if (*p_iconstring != NUL)
4038 {
4039#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004040 if (stl_syntax & STL_IN_ICON)
4041 {
4042 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004043 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004044
4045# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004046 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004047# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004048 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004049 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004050 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004051 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004052 set_string_option_direct((char_u *)"iconstring", -1,
4053 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004054 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 else
4056#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004057 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 }
4059 else
4060 {
4061 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004062 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004063 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004064 p = gettail(curbuf->b_ffname);
4065 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004066 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004067 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 if (len > 100)
4069 {
4070 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004072 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004073 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004075 STRCPY(icon_str, p);
4076 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 }
4078 }
4079
Bram Moolenaar84a93082018-06-16 22:58:15 +02004080 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081
4082 if (mustset)
4083 resettitle();
4084}
4085
4086/*
4087 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4088 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004089 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 */
4091 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004092value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093{
4094 if ((str == NULL) != (*last == NULL)
4095 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4096 {
4097 vim_free(*last);
4098 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004099 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004101 mch_restore_title(
4102 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004105 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004107 return TRUE;
4108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 }
4110 return FALSE;
4111}
4112
4113/*
4114 * Put current window title back (used after calling a shell)
4115 */
4116 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004117resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118{
4119 mch_settitle(lasttitle, lasticon);
4120}
Bram Moolenaarea408852005-06-25 22:49:46 +00004121
4122# if defined(EXITFREE) || defined(PROTO)
4123 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004124free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004125{
4126 vim_free(lasttitle);
4127 vim_free(lasticon);
4128}
4129# endif
4130
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004132#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004133
4134/*
4135 * Used for building in the status line.
4136 */
4137typedef struct
4138{
4139 char_u *stl_start;
4140 int stl_minwid;
4141 int stl_maxwid;
4142 enum {
4143 Normal,
4144 Empty,
4145 Group,
4146 Middle,
4147 Highlight,
4148 TabPage,
4149 Trunc
4150 } stl_type;
4151} stl_item_T;
4152
4153static size_t stl_items_len = 20; // Initial value, grows as needed.
4154static stl_item_T *stl_items = NULL;
4155static int *stl_groupitem = NULL;
4156static stl_hlrec_T *stl_hltab = NULL;
4157static stl_hlrec_T *stl_tabtab = NULL;
4158
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004160 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 * Return length of string in screen cells.
4162 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004163 * Normally works for window "wp", except when working for 'tabline' then it
4164 * is "curwin".
4165 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 * Items are drawn interspersed with the text that surrounds it
4167 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4168 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4169 *
4170 * If maxwidth is not zero, the string will be filled at any middle marker
4171 * or truncated if too long, fillchar is used for all whitespace.
4172 */
4173 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004174build_stl_str_hl(
4175 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004176 char_u *out, // buffer to write into != NameBuff
4177 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004178 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004179 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004180 int fillchar,
4181 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004182 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4183 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184{
Bram Moolenaar10772302019-01-20 18:25:54 +01004185 linenr_T lnum;
4186 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 char_u *p;
4188 char_u *s;
4189 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004190 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004192 win_T *save_curwin;
4193 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004194 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195#endif
4196 int empty_line;
4197 colnr_T virtcol;
4198 long l;
4199 long n;
4200 int prevchar_isflag;
4201 int prevchar_isitem;
4202 int itemisflag;
4203 int fillable;
4204 char_u *str;
4205 long num;
4206 int width;
4207 int itemcnt;
4208 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004209 int group_end_userhl;
4210 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004212#ifdef FEAT_EVAL
4213 int evaldepth;
4214#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 int minwid;
4216 int maxwid;
4217 int zeropad;
4218 char_u base;
4219 char_u opt;
4220#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004221 char_u buf_tmp[TMPLEN];
4222 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004223 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004224 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004225 int save_must_redraw = must_redraw;
4226 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004227 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004228
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004229 if (stl_items == NULL)
4230 {
4231 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4232 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004233
4234 // Allocate one more, because the last element is used to indicate the
4235 // end of the list.
4236 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4237 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004238 }
4239
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004240#ifdef FEAT_EVAL
4241 /*
4242 * When the format starts with "%!" then evaluate it as an expression and
4243 * use the result as the actual format string.
4244 */
4245 if (fmt[0] == '%' && fmt[1] == '!')
4246 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004247 typval_T tv;
4248
4249 tv.v_type = VAR_NUMBER;
4250 tv.vval.v_number = wp->w_id;
4251 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4252
Bram Moolenaar9530b582022-01-22 13:39:08 +00004253 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004254 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004255 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004256
4257 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004258 }
4259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260
4261 if (fillchar == 0)
4262 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004263
Bram Moolenaar10772302019-01-20 18:25:54 +01004264 // The cursor in windows other than the current one isn't always
4265 // up-to-date, esp. because of autocommands and timers.
4266 lnum = wp->w_cursor.lnum;
4267 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4268 {
4269 lnum = wp->w_buffer->b_ml.ml_line_count;
4270 wp->w_cursor.lnum = lnum;
4271 }
4272
4273 // Get line & check if empty (cursorpos will show "0-1"). Note that
4274 // p will become invalid when getting another buffer line.
4275 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004276 empty_line = (*p == NUL);
4277
Bram Moolenaar10772302019-01-20 18:25:54 +01004278 // Get the byte value now, in case we need it below. This is more efficient
4279 // than making a copy of the line.
4280 len = STRLEN(p);
4281 if (wp->w_cursor.col > (colnr_T)len)
4282 {
4283 // Line may have changed since checking the cursor column, or the lnum
4284 // was adjusted above.
4285 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004286 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004287 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004288 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004289 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004290 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291
4292 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004293#ifdef FEAT_EVAL
4294 evaldepth = 0;
4295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 p = out;
4297 curitem = 0;
4298 prevchar_isflag = TRUE;
4299 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004300 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004302 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004303 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004304 size_t new_len = stl_items_len * 3 / 2;
4305 stl_item_T *new_items;
4306 int *new_groupitem;
4307 stl_hlrec_T *new_hlrec;
4308
4309 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4310 if (new_items == NULL)
4311 break;
4312 stl_items = new_items;
4313 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4314 if (new_groupitem == NULL)
4315 break;
4316 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004317 new_hlrec = vim_realloc(stl_hltab,
4318 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004319 if (new_hlrec == NULL)
4320 break;
4321 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004322 new_hlrec = vim_realloc(stl_tabtab,
4323 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004324 if (new_hlrec == NULL)
4325 break;
4326 stl_tabtab = new_hlrec;
4327 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004328 }
4329
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 if (*s != NUL && *s != '%')
4331 prevchar_isflag = prevchar_isitem = FALSE;
4332
4333 /*
4334 * Handle up to the next '%' or the end.
4335 */
4336 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4337 *p++ = *s++;
4338 if (*s == NUL || p + 1 >= out + outlen)
4339 break;
4340
4341 /*
4342 * Handle one '%' item.
4343 */
4344 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004345 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004346 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 if (*s == '%')
4348 {
4349 if (p + 1 >= out + outlen)
4350 break;
4351 *p++ = *s++;
4352 prevchar_isflag = prevchar_isitem = FALSE;
4353 continue;
4354 }
4355 if (*s == STL_MIDDLEMARK)
4356 {
4357 s++;
4358 if (groupdepth > 0)
4359 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004360 stl_items[curitem].stl_type = Middle;
4361 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 continue;
4363 }
4364 if (*s == STL_TRUNCMARK)
4365 {
4366 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004367 stl_items[curitem].stl_type = Trunc;
4368 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 continue;
4370 }
4371 if (*s == ')')
4372 {
4373 s++;
4374 if (groupdepth < 1)
4375 continue;
4376 groupdepth--;
4377
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004378 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 *p = NUL;
4380 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004381 if (curitem > stl_groupitem[groupdepth] + 1
4382 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004384 // remove group if all items are empty and highlight group
4385 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004386 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004387 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004388 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004389 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004390 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004391 group_start_userhl = group_end_userhl =
4392 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004393 break;
4394 }
4395 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004396 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004397 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004398 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004400 if (stl_items[n].stl_type == Highlight)
4401 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004402 }
4403 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004405 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 p = t;
4407 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004408 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004409 {
4410 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004411 if (stl_items[n].stl_type == Highlight)
4412 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004413 // adjust the start position of TabPage to the next
4414 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004415 if (stl_items[n].stl_type == TabPage)
4416 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 }
4419 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004420 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004422 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 if (has_mbyte)
4424 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004425 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004427 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 {
4429 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004430 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 }
4432 }
4433 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004434 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4435 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436
4437 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004438 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004440
4441 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004442 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004443 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444
Bram Moolenaarc667da52019-11-30 20:52:27 +01004445 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004446 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 {
LemonBoy57ff5262022-05-09 21:03:47 +01004448 // Minus one for the leading '<' added above.
4449 stl_items[l].stl_start -= n - 1;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004450 if (stl_items[l].stl_start < t)
4451 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 }
4453 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004454 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004456 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004457 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 if (n < 0)
4459 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004460 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 n = 0 - n;
4462 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004463 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 }
4465 else
4466 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004467 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004468 l = (n - l) * MB_CHAR2LEN(fillchar);
4469 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004471 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004473 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4474 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004476 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 }
4478 }
4479 continue;
4480 }
4481 minwid = 0;
4482 maxwid = 9999;
4483 zeropad = FALSE;
4484 l = 1;
4485 if (*s == '0')
4486 {
4487 s++;
4488 zeropad = TRUE;
4489 }
4490 if (*s == '-')
4491 {
4492 s++;
4493 l = -1;
4494 }
4495 if (VIM_ISDIGIT(*s))
4496 {
4497 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004498 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 minwid = 0;
4500 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004501 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004503 stl_items[curitem].stl_type = Highlight;
4504 stl_items[curitem].stl_start = p;
4505 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 s++;
4507 curitem++;
4508 continue;
4509 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004510 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4511 {
4512 if (*s == STL_TABCLOSENR)
4513 {
4514 if (minwid == 0)
4515 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004516 // %X ends the close label, go back to the previously
4517 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004518 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004519 if (stl_items[n].stl_type == TabPage
4520 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004521 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004522 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004523 break;
4524 }
4525 }
4526 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004527 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004528 minwid = - minwid;
4529 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004530 stl_items[curitem].stl_type = TabPage;
4531 stl_items[curitem].stl_start = p;
4532 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004533 s++;
4534 curitem++;
4535 continue;
4536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537 if (*s == '.')
4538 {
4539 s++;
4540 if (VIM_ISDIGIT(*s))
4541 {
4542 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004543 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 maxwid = 50;
4545 }
4546 }
4547 minwid = (minwid > 50 ? 50 : minwid) * l;
4548 if (*s == '(')
4549 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004550 stl_groupitem[groupdepth++] = curitem;
4551 stl_items[curitem].stl_type = Group;
4552 stl_items[curitem].stl_start = p;
4553 stl_items[curitem].stl_minwid = minwid;
4554 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 s++;
4556 curitem++;
4557 continue;
4558 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004559#ifdef FEAT_EVAL
4560 // Denotes end of expanded %{} block
4561 if (*s == '}' && evaldepth > 0)
4562 {
4563 s++;
4564 evaldepth--;
4565 continue;
4566 }
4567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 if (vim_strchr(STL_ALL, *s) == NULL)
4569 {
4570 s++;
4571 continue;
4572 }
4573 opt = *s++;
4574
Bram Moolenaarc667da52019-11-30 20:52:27 +01004575 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 base = 'D';
4577 itemisflag = FALSE;
4578 fillable = TRUE;
4579 num = -1;
4580 str = NULL;
4581 switch (opt)
4582 {
4583 case STL_FILEPATH:
4584 case STL_FULLPATH:
4585 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004586 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004588 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 else
4590 {
4591 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004592 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4594 }
4595 trans_characters(NameBuff, MAXPATHL);
4596 if (opt != STL_FILENAME)
4597 str = NameBuff;
4598 else
4599 str = gettail(NameBuff);
4600 break;
4601
Bram Moolenaarc667da52019-11-30 20:52:27 +01004602 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004603 {
4604#ifdef FEAT_EVAL
4605 char_u *block_start = s - 1;
4606#endif
4607 int reevaluate = (*s == '%');
4608
4609 if (reevaluate)
4610 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 itemisflag = TRUE;
4612 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004613 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4614 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004616 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 break;
4618 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004619 if (reevaluate)
4620 p[-1] = 0; // remove the % at the end of %{% expr %}
4621 else
4622 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004625 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4626 "%d", curbuf->b_fnum);
4627 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4628 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4629 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004631 save_curbuf = curbuf;
4632 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004633 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 curwin = wp;
4635 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004636 // Visual mode is only valid in the current window.
4637 if (curwin != save_curwin)
4638 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639
Bram Moolenaar9530b582022-01-22 13:39:08 +00004640 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004642 curwin = save_curwin;
4643 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004644 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004645 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004646 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647
4648 if (str != NULL && *str != 0)
4649 {
4650 if (*skipdigits(str) == NUL)
4651 {
4652 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004653 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 itemisflag = FALSE;
4655 }
4656 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004657
4658 // If the output of the expression needs to be evaluated
4659 // replace the %{} block with the result of evaluation
4660 if (reevaluate && str != NULL && *str != 0
4661 && strchr((const char *)str, '%') != NULL
4662 && evaldepth < MAX_STL_EVAL_DEPTH)
4663 {
4664 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4665 size_t str_length = strlen((const char *)str);
4666 size_t fmt_length = strlen((const char *)s);
4667 size_t new_fmt_len = parsed_usefmt
4668 + str_length + fmt_length + 3;
4669 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4670 char_u *new_fmt_p = new_fmt;
4671
4672 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4673 + parsed_usefmt;
4674 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4675 + str_length;
4676 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4677 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4678 + fmt_length;
4679 *new_fmt_p = 0;
4680 new_fmt_p = NULL;
4681
4682 if (usefmt != fmt)
4683 vim_free(usefmt);
4684 VIM_CLEAR(str);
4685 usefmt = new_fmt;
4686 s = usefmt + parsed_usefmt;
4687 evaldepth++;
4688 continue;
4689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690#endif
4691 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004692 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 case STL_LINE:
4694 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4695 ? 0L : (long)(wp->w_cursor.lnum);
4696 break;
4697
4698 case STL_NUMLINES:
4699 num = wp->w_buffer->b_ml.ml_line_count;
4700 break;
4701
4702 case STL_COLUMN:
Bram Moolenaar24959102022-05-07 20:01:16 +01004703 num = (State & MODE_INSERT) == 0 && empty_line
4704 ? 0 : (int)wp->w_cursor.col + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 break;
4706
4707 case STL_VIRTCOL:
4708 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004709 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004710 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 if (opt == STL_VIRTCOL_ALT
Bram Moolenaar24959102022-05-07 20:01:16 +01004712 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0
4713 && empty_line ? 0 : (int)wp->w_cursor.col + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 break;
4715 num = (long)virtcol;
4716 break;
4717
4718 case STL_PERCENTAGE:
4719 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4720 (long)wp->w_buffer->b_ml.ml_line_count);
4721 break;
4722
4723 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004724 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004725 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 break;
4727
4728 case STL_ARGLISTSTAT:
4729 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004730 buf_tmp[0] = 0;
4731 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4732 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 break;
4734
4735 case STL_KEYMAP:
4736 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004737 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4738 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 break;
4740 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004741#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004742 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743#else
4744 num = 0;
4745#endif
4746 break;
4747
4748 case STL_BUFNO:
4749 num = wp->w_buffer->b_fnum;
4750 break;
4751
4752 case STL_OFFSET_X:
4753 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004754 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 case STL_OFFSET:
4756#ifdef FEAT_BYTEOFF
4757 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
Bram Moolenaar24959102022-05-07 20:01:16 +01004758 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0
4759 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line
4760 ? 0 : (int)wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761#endif
4762 break;
4763
4764 case STL_BYTEVAL_X:
4765 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004766 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004768 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 if (num == NL)
4770 num = 0;
4771 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4772 num = NL;
4773 break;
4774
4775 case STL_ROFLAG:
4776 case STL_ROFLAG_ALT:
4777 itemisflag = TRUE;
4778 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004779 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 break;
4781
4782 case STL_HELPFLAG:
4783 case STL_HELPFLAG_ALT:
4784 itemisflag = TRUE;
4785 if (wp->w_buffer->b_help)
4786 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004787 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 break;
4789
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 case STL_FILETYPE:
4791 if (*wp->w_buffer->b_p_ft != NUL
4792 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4793 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004794 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004795 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004796 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 }
4798 break;
4799
4800 case STL_FILETYPE_ALT:
4801 itemisflag = TRUE;
4802 if (*wp->w_buffer->b_p_ft != NUL
4803 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4804 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004805 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004806 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004807 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004809 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 }
4811 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812
Bram Moolenaar4033c552017-09-16 20:54:51 +02004813#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 case STL_PREVIEWFLAG:
4815 case STL_PREVIEWFLAG_ALT:
4816 itemisflag = TRUE;
4817 if (wp->w_p_pvw)
4818 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4819 : _("[Preview]"));
4820 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004821
4822 case STL_QUICKFIX:
4823 if (bt_quickfix(wp->w_buffer))
4824 str = (char_u *)(wp->w_llist_ref
4825 ? _(msg_loclist)
4826 : _(msg_qflist));
4827 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828#endif
4829
4830 case STL_MODIFIED:
4831 case STL_MODIFIED_ALT:
4832 itemisflag = TRUE;
4833 switch ((opt == STL_MODIFIED_ALT)
4834 + bufIsChanged(wp->w_buffer) * 2
4835 + (!wp->w_buffer->b_p_ma) * 4)
4836 {
4837 case 2: str = (char_u *)"[+]"; break;
4838 case 3: str = (char_u *)",+"; break;
4839 case 4: str = (char_u *)"[-]"; break;
4840 case 5: str = (char_u *)",-"; break;
4841 case 6: str = (char_u *)"[+-]"; break;
4842 case 7: str = (char_u *)",+-"; break;
4843 }
4844 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004845
4846 case STL_HIGHLIGHT:
4847 t = s;
4848 while (*s != '#' && *s != NUL)
4849 ++s;
4850 if (*s == '#')
4851 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004852 stl_items[curitem].stl_type = Highlight;
4853 stl_items[curitem].stl_start = p;
4854 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004855 curitem++;
4856 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004857 if (*s != NUL)
4858 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004859 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 }
4861
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004862 stl_items[curitem].stl_start = p;
4863 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 if (str != NULL && *str)
4865 {
4866 t = str;
4867 if (itemisflag)
4868 {
4869 if ((t[0] && t[1])
4870 && ((!prevchar_isitem && *t == ',')
4871 || (prevchar_isflag && *t == ' ')))
4872 t++;
4873 prevchar_isflag = TRUE;
4874 }
4875 l = vim_strsize(t);
4876 if (l > 0)
4877 prevchar_isitem = TRUE;
4878 if (l > maxwid)
4879 {
4880 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 if (has_mbyte)
4882 {
4883 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004884 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 }
4886 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 l -= byte2cells(*t++);
4888 if (p + 1 >= out + outlen)
4889 break;
4890 *p++ = '<';
4891 }
4892 if (minwid > 0)
4893 {
4894 for (; l < minwid && p + 1 < out + outlen; l++)
4895 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004896 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4898 *p++ = ' ';
4899 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004900 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 }
4902 minwid = 0;
4903 }
4904 else
4905 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004906 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004908 // Change a space by fillchar, unless fillchar is '-' and a
4909 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004910 if (fillable && *t == ' '
4911 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4912 MB_CHAR2BYTES(fillchar, p);
4913 else
4914 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 }
4916 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004917 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 }
4919 else if (num >= 0)
4920 {
4921 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4922 char_u nstr[20];
4923
4924 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004925 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 prevchar_isitem = TRUE;
4927 t = nstr;
4928 if (opt == STL_VIRTCOL_ALT)
4929 {
4930 *t++ = '-';
4931 minwid--;
4932 }
4933 *t++ = '%';
4934 if (zeropad)
4935 *t++ = '0';
4936 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004937 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 *t = 0;
4939
4940 for (n = num, l = 1; n >= nbase; n /= nbase)
4941 l++;
4942 if (opt == STL_VIRTCOL_ALT)
4943 l++;
4944 if (l > maxwid)
4945 {
4946 l += 2;
4947 n = l - maxwid;
4948 while (l-- > maxwid)
4949 num /= nbase;
4950 *t++ = '>';
4951 *t++ = '%';
4952 *t = t[-3];
4953 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004954 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4955 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 }
4957 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004958 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4959 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 p += STRLEN(p);
4961 }
4962 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004963 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964
4965 if (opt == STL_VIM_EXPR)
4966 vim_free(str);
4967
4968 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004969 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 curitem++;
4971 }
4972 *p = NUL;
4973 itemcnt = curitem;
4974
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004975#ifdef FEAT_EVAL
4976 if (usefmt != fmt)
4977 vim_free(usefmt);
4978#endif
4979
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 width = vim_strsize(out);
4981 if (maxwidth > 0 && width > maxwidth)
4982 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004983 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 l = 0;
4985 if (itemcnt == 0)
4986 s = out;
4987 else
4988 {
4989 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004990 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004992 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004993 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 break;
4995 }
4996 if (l == itemcnt)
4997 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004998 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004999 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 l = 0;
5001 }
5002 }
5003
5004 if (width - vim_strsize(s) >= maxwidth)
5005 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005006 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 if (has_mbyte)
5008 {
5009 s = out;
5010 width = 0;
5011 for (;;)
5012 {
5013 width += ptr2cells(s);
5014 if (width >= maxwidth)
5015 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005016 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005018 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005020 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 }
5022 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 s = out + maxwidth - 1;
5024 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005025 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 break;
5027 itemcnt = l;
5028 *s++ = '>';
5029 *s = 0;
5030 }
5031 else
5032 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 if (has_mbyte)
5034 {
5035 n = 0;
5036 while (width >= maxwidth)
5037 {
5038 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005039 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 }
5041 }
5042 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 n = width - maxwidth + 1;
5044 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005045 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 *s = '<';
5047
Bram Moolenaarc667da52019-11-30 20:52:27 +01005048 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 while (++width < maxwidth)
5050 {
5051 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005052 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 *s = NUL;
5054 }
5055
Bram Moolenaarc667da52019-11-30 20:52:27 +01005056 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 for (; l < itemcnt; l++)
5058 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005059 if (stl_items[l].stl_start - n >= s)
5060 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005062 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 }
5064 }
5065 width = maxwidth;
5066 }
5067 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5068 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005069 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005071 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 break;
5073 if (l < itemcnt)
5074 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005075 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5076 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005077 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005078 for (s = stl_items[l].stl_start; s < p;)
5079 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005081 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 width = maxwidth;
5083 }
5084 }
5085
Bram Moolenaarc667da52019-11-30 20:52:27 +01005086 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005087 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005089 *hltab = stl_hltab;
5090 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 for (l = 0; l < itemcnt; l++)
5092 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005093 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005095 sp->start = stl_items[l].stl_start;
5096 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005097 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 }
5099 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005100 sp->start = NULL;
5101 sp->userhl = 0;
5102 }
5103
Bram Moolenaarc667da52019-11-30 20:52:27 +01005104 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005105 if (tabtab != NULL)
5106 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005107 *tabtab = stl_tabtab;
5108 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005109 for (l = 0; l < itemcnt; l++)
5110 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005111 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005112 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005113 sp->start = stl_items[l].stl_start;
5114 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005115 sp++;
5116 }
5117 }
5118 sp->start = NULL;
5119 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 }
5121
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005122 // When inside update_screen we do not want redrawing a statusline, ruler,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005123 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005124 if (updating_screen)
5125 {
5126 must_redraw = save_must_redraw;
5127 curwin->w_redr_type = save_redr_type;
5128 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005129
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005130 // A user function may reset KeyTyped, restore it.
5131 KeyTyped = save_KeyTyped;
5132
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 return width;
5134}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005135#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005137#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5138 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005140 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5141 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 */
5143 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005144get_rel_pos(
5145 win_T *wp,
5146 char_u *buf,
5147 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005149 long above; // number of lines above window
5150 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151
Bram Moolenaarc667da52019-11-30 20:52:27 +01005152 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005153 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 above = wp->w_topline - 1;
5155#ifdef FEAT_DIFF
5156 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005157 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005158 above = 0; // All buffer lines are displayed and there is an
5159 // indication of filler lines, that can be considered
5160 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161#endif
5162 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5163 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005164 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5165 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005167 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005169 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 ? (int)(above / ((above + below) / 100L))
5171 : (int)(above * 100L / (above + below)));
5172}
5173#endif
5174
5175/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005176 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 * Return TRUE if it was appended.
5178 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005179 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005180append_arg_number(
5181 win_T *wp,
5182 char_u *buf,
5183 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005184 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185{
5186 char_u *p;
5187
Bram Moolenaarc667da52019-11-30 20:52:27 +01005188 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 return FALSE;
5190
Bram Moolenaarc667da52019-11-30 20:52:27 +01005191 p = buf + STRLEN(buf); // go to the end of the buffer
5192 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 return FALSE;
5194 *p++ = ' ';
5195 *p++ = '(';
5196 if (add_file)
5197 {
5198 STRCPY(p, "file ");
5199 p += 5;
5200 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005201 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5202 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5204 return TRUE;
5205}
5206
5207/*
5208 * If fname is not a full path, make it a full path.
5209 * Returns pointer to allocated memory (NULL for failure).
5210 */
5211 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005212fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213{
5214 /*
5215 * Force expanding the path always for Unix, because symbolic links may
5216 * mess up the full path name, even though it starts with a '/'.
5217 * Also expand when there is ".." in the file name, try to remove it,
5218 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005219 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 * For MS-Windows also expand names like "longna~1" to "longname".
5221 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005222#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 return FullName_save(fname, TRUE);
5224#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005225 if (!vim_isAbsName(fname)
5226 || strstr((char *)fname, "..") != NULL
5227 || strstr((char *)fname, "//") != NULL
5228# ifdef BACKSLASH_IN_FILENAME
5229 || strstr((char *)fname, "\\\\") != NULL
5230# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005231# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005233# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 )
5235 return FullName_save(fname, FALSE);
5236
5237 fname = vim_strsave(fname);
5238
Bram Moolenaar9b942202007-10-03 12:31:33 +00005239# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005240 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005241 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005242# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243
5244 return fname;
5245#endif
5246}
5247
5248/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005249 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5250 * "*ffname" becomes a pointer to allocated memory (or NULL).
5251 * When resolving a link both "*sfname" and "*ffname" will point to the same
5252 * allocated memory.
5253 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005254 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005257fname_expand(
5258 buf_T *buf UNUSED,
5259 char_u **ffname,
5260 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005262 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005264 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005266 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267
5268#ifdef FEAT_SHORTCUT
5269 if (!buf->b_p_bin)
5270 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005271 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005273 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005274 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005275 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 {
5277 vim_free(*ffname);
5278 *ffname = rfname;
5279 *sfname = rfname;
5280 }
5281 }
5282#endif
5283}
5284
5285/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 * Open a window for a number of buffers.
5287 */
5288 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005289ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290{
5291 buf_T *buf;
5292 win_T *wp, *wpnext;
5293 int split_ret = OK;
5294 int p_ea_save;
5295 int open_wins = 0;
5296 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005297 int count; // Maximum number of windows to open.
5298 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005299 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005300 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301
Bram Moolenaarc667da52019-11-30 20:52:27 +01005302 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 count = 9999;
5304 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005305 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5307 all = FALSE;
5308 else
5309 all = TRUE;
5310
5311 setpcmark();
5312
5313#ifdef FEAT_GUI
5314 need_mouse_correct = TRUE;
5315#endif
5316
5317 /*
5318 * Close superfluous windows (two windows for the same buffer).
5319 * Also close windows that are not full-width.
5320 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005321 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005322 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005323 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005325 tpnext = curtab->tp_next;
5326 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005328 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005329 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005330 || ((cmdmod.cmod_split & WSP_VERT)
5331 ? wp->w_height + wp->w_status_height < Rows - p_ch
5332 - tabline_height()
5333 : wp->w_width != Columns)
5334 || (had_tab > 0 && wp != firstwin))
5335 && !ONE_WINDOW
5336 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5337 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005338 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005339 if (win_close(wp, FALSE) == FAIL)
5340 break;
5341 // Just in case an autocommand does something strange with
5342 // windows: start all over...
5343 wpnext = firstwin;
5344 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005345 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005346 }
5347 else
5348 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005350
Bram Moolenaarc667da52019-11-30 20:52:27 +01005351 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005352 if (had_tab == 0 || tpnext == NULL)
5353 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005354 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 }
5356
5357 /*
5358 * Go through the buffer list. When a buffer doesn't have a window yet,
5359 * open one. Otherwise move the window to the right position.
5360 * Watch out for autocommands that delete buffers or windows!
5361 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005362 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5367 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005368 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5370 continue;
5371
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005372 if (had_tab != 0)
5373 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005374 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005375 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005376 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005377 else
5378 wp = NULL;
5379 }
5380 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005381 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005382 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005383 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005384 if (wp->w_buffer == buf)
5385 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005386 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005387 if (wp != NULL)
5388 win_move_after(wp, curwin);
5389 }
5390
5391 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005393 bufref_T bufref;
5394
5395 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005396
Bram Moolenaarc667da52019-11-30 20:52:27 +01005397 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005399 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5401 ++open_wins;
5402 p_ea = p_ea_save;
5403 if (split_ret == FAIL)
5404 continue;
5405
Bram Moolenaarc667da52019-11-30 20:52:27 +01005406 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005409 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005411 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 break;
5414 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 if (swap_exists_action == SEA_QUIT)
5416 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005417#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005418 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005419
Bram Moolenaarc667da52019-11-30 20:52:27 +01005420 // Reset the error/interrupt/exception state here so that
5421 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005422 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005423#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005424
Bram Moolenaarc667da52019-11-30 20:52:27 +01005425 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 win_close(curwin, TRUE);
5427 --open_wins;
5428 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005429 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005430
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005431#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005432 // Restore the error/interrupt/exception state if not
5433 // discarded by a new aborting error, interrupt, or uncaught
5434 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005435 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005436#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 }
5438 else
5439 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 }
5441
5442 ui_breakcheck();
5443 if (got_int)
5444 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005445 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 break;
5447 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005448#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005449 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005450 if (aborting())
5451 break;
5452#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005453 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005454 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005455 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005458 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460
5461 /*
5462 * Close superfluous windows.
5463 */
5464 for (wp = lastwin; open_wins > count; )
5465 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005466 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 if (!win_valid(wp))
5469 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005470 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 wp = lastwin;
5472 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005473 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005475 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 --open_wins;
5477 wp = lastwin;
5478 }
5479 else
5480 {
5481 wp = wp->w_prev;
5482 if (wp == NULL)
5483 break;
5484 }
5485 }
5486}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005489static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005490
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491/*
5492 * do_modelines() - process mode lines for the current file
5493 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005494 * "flags" can be:
5495 * OPT_WINONLY only set options local to window
5496 * OPT_NOWIN don't set options local to window
5497 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 * Returns immediately if the "ml" option isn't set.
5499 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005501do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005503 linenr_T lnum;
5504 int nmlines;
5505 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506
5507 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5508 return;
5509
Bram Moolenaarc667da52019-11-30 20:52:27 +01005510 // Disallow recursive entry here. Can happen when executing a modeline
5511 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 if (entered)
5513 return;
5514
5515 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005516 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005518 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 nmlines = 0;
5520
Hu Jialun9dcd3492021-08-28 20:42:50 +02005521 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005523 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 nmlines = 0;
5525 --entered;
5526}
5527
Bram Moolenaarc667da52019-11-30 20:52:27 +01005528#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529
5530/*
5531 * chk_modeline() - check a single line for a mode string
5532 * Return FAIL if an error encountered.
5533 */
5534 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005535chk_modeline(
5536 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005537 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538{
5539 char_u *s;
5540 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005541 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 int prev;
5543 int vers;
5544 int end;
5545 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005546 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005547
Bram Moolenaare31ee862020-01-07 20:59:34 +01005548 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549
5550 prev = -1;
5551 for (s = ml_get(lnum); *s != NUL; ++s)
5552 {
5553 if (prev == -1 || vim_isspace(prev))
5554 {
5555 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5556 || STRNCMP(s, "vi:", (size_t)3) == 0)
5557 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005558 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005559 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 {
5561 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5562 e = s + 4;
5563 else
5564 e = s + 3;
5565 vers = getdigits(&e);
5566 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005567 && (s[0] != 'V'
5568 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 && (s[3] == ':'
5570 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5571 || (VIM_VERSION_100 < vers && s[3] == '<')
5572 || (VIM_VERSION_100 > vers && s[3] == '>')
5573 || (VIM_VERSION_100 == vers && s[3] == '=')))
5574 break;
5575 }
5576 }
5577 prev = *s;
5578 }
5579
5580 if (*s)
5581 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005582 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 ++s;
5584 while (s[-1] != ':');
5585
Bram Moolenaarc667da52019-11-30 20:52:27 +01005586 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 if (linecopy == NULL)
5588 return FAIL;
5589
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005590 // prepare for emsg()
5591 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005592 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593
5594 end = FALSE;
5595 while (end == FALSE)
5596 {
5597 s = skipwhite(s);
5598 if (*s == NUL)
5599 break;
5600
5601 /*
5602 * Find end of set command: ':' or end of line.
5603 * Skip over "\:", replacing it with ":".
5604 */
5605 for (e = s; *e != ':' && *e != NUL; ++e)
5606 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005607 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 if (*e == NUL)
5609 end = TRUE;
5610
5611 /*
5612 * If there is a "set" command, require a terminating ':' and
5613 * ignore the stuff after the ':'.
5614 * "vi:set opt opt opt: foo" -- foo not interpreted
5615 * "vi:opt opt opt: foo" -- foo interpreted
5616 * Accept "se" for compatibility with Elvis.
5617 */
5618 if (STRNCMP(s, "set ", (size_t)4) == 0
5619 || STRNCMP(s, "se ", (size_t)3) == 0)
5620 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005621 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 break;
5623 end = TRUE;
5624 s = vim_strchr(s, ' ') + 1;
5625 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005626 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627
Bram Moolenaarc667da52019-11-30 20:52:27 +01005628 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005630 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005631
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005632 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005633 current_sctx.sc_version = 1;
5634#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005635 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005636 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005637 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005639
Bram Moolenaar5958f952018-11-20 04:25:21 +01005640 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005641 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005642
Bram Moolenaara3227e22006-03-08 21:32:40 +00005643 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005644
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005645 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005646 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005647 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 break;
5649 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005650 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 }
5652
Bram Moolenaare31ee862020-01-07 20:59:34 +01005653 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005654 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 vim_free(linecopy);
5656 }
5657 return retval;
5658}
5659
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005660/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005661 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5662 */
5663 int
5664bt_normal(buf_T *buf)
5665{
5666 return buf != NULL && buf->b_p_bt[0] == NUL;
5667}
5668
Bram Moolenaar113e1072019-01-20 15:30:40 +01005669#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005670/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005671 * Return TRUE if "buf" is the quickfix buffer.
5672 */
5673 int
5674bt_quickfix(buf_T *buf)
5675{
5676 return buf != NULL && buf->b_p_bt[0] == 'q';
5677}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005678#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005679
Bram Moolenaar113e1072019-01-20 15:30:40 +01005680#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005681/*
5682 * Return TRUE if "buf" is a terminal buffer.
5683 */
5684 int
5685bt_terminal(buf_T *buf)
5686{
5687 return buf != NULL && buf->b_p_bt[0] == 't';
5688}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005689#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005690
5691/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005692 * Return TRUE if "buf" is a help buffer.
5693 */
5694 int
5695bt_help(buf_T *buf)
5696{
5697 return buf != NULL && buf->b_help;
5698}
5699
5700/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005701 * Return TRUE if "buf" is a prompt buffer.
5702 */
5703 int
5704bt_prompt(buf_T *buf)
5705{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005706 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5707}
5708
Dominique Pelle748b3082022-01-08 12:41:16 +00005709#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005710/*
5711 * Return TRUE if "buf" is a buffer for a popup window.
5712 */
5713 int
5714bt_popup(buf_T *buf)
5715{
5716 return buf != NULL && buf->b_p_bt != NULL
5717 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005718}
Dominique Pelle748b3082022-01-08 12:41:16 +00005719#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005720
5721/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005722 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5723 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005724 */
5725 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005726bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005727{
5728 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5729 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005730 || buf->b_p_bt[0] == 't'
5731 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005732}
5733
Dominique Pelle748b3082022-01-08 12:41:16 +00005734#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005735/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005736 * Return TRUE if "buf" has 'buftype' set to "nofile".
5737 */
5738 int
5739bt_nofile(buf_T *buf)
5740{
5741 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5742}
Dominique Pelle748b3082022-01-08 12:41:16 +00005743#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005744
5745/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005746 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5747 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005748 */
5749 int
5750bt_dontwrite(buf_T *buf)
5751{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005752 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005753 || buf->b_p_bt[0] == 't'
5754 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005755}
5756
Bram Moolenaar113e1072019-01-20 15:30:40 +01005757#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005758 int
5759bt_dontwrite_msg(buf_T *buf)
5760{
5761 if (bt_dontwrite(buf))
5762 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005763 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005764 return TRUE;
5765 }
5766 return FALSE;
5767}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005768#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005769
5770/*
5771 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5772 * and 'bufhidden'.
5773 */
5774 int
5775buf_hide(buf_T *buf)
5776{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005777 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005778 switch (buf->b_p_bh[0])
5779 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005780 case 'u': // "unload"
5781 case 'w': // "wipe"
5782 case 'd': return FALSE; // "delete"
5783 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005784 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005785 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005786}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787
5788/*
5789 * Return special buffer name.
5790 * Returns NULL when the buffer has a normal file name.
5791 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005792 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005793buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005795#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005797 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005798 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005799 * Differentiate between the quickfix and location list buffers using
5800 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005801 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005802 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005803 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005804 else
5805 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005806 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005808
Bram Moolenaarc667da52019-11-30 20:52:27 +01005809 // There is no _file_ when 'buftype' is "nofile", b_sfname
5810 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005811 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005813#ifdef FEAT_TERMINAL
5814 if (buf->b_term != NULL)
5815 return term_get_status_text(buf->b_term);
5816#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005817 if (buf->b_fname != NULL)
5818 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005819#ifdef FEAT_JOB_CHANNEL
5820 if (bt_prompt(buf))
5821 return (char_u *)_("[Prompt]");
5822#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005823#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005824 if (bt_popup(buf))
5825 return (char_u *)_("[Popup]");
5826#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005827 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005829
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005831 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 return NULL;
5833}
5834
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005836 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5837 */
5838 char_u *
5839buf_get_fname(buf_T *buf)
5840{
5841 if (buf->b_fname == NULL)
5842 return (char_u *)_("[No Name]");
5843 return buf->b_fname;
5844}
5845
5846/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5848 */
5849 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005850set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851{
5852 if (on != curbuf->b_p_bl)
5853 {
5854 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 if (on)
5856 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5857 else
5858 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 }
5860}
5861
5862/*
5863 * Read the file for "buf" again and check if the contents changed.
5864 * Return TRUE if it changed or this could not be checked.
5865 */
5866 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005867buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868{
5869 buf_T *newbuf;
5870 int differ = TRUE;
5871 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 exarg_T ea;
5874
Bram Moolenaarc667da52019-11-30 20:52:27 +01005875 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5877 if (newbuf == NULL)
5878 return TRUE;
5879
Bram Moolenaarc667da52019-11-30 20:52:27 +01005880 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 if (prep_exarg(&ea, buf) == FAIL)
5882 {
5883 wipe_buffer(newbuf, FALSE);
5884 return TRUE;
5885 }
5886
Bram Moolenaarc667da52019-11-30 20:52:27 +01005887 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889
Bram Moolenaar4770d092006-01-12 23:22:24 +00005890 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 && readfile(buf->b_ffname, buf->b_fname,
5892 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5893 &ea, READ_NEW | READ_DUMMY) == OK)
5894 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005895 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5897 {
5898 differ = FALSE;
5899 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5900 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5901 {
5902 differ = TRUE;
5903 break;
5904 }
5905 }
5906 }
5907 vim_free(ea.cmd);
5908
Bram Moolenaarc667da52019-11-30 20:52:27 +01005909 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911
Bram Moolenaarc667da52019-11-30 20:52:27 +01005912 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 wipe_buffer(newbuf, FALSE);
5914
5915 return differ;
5916}
5917
5918/*
5919 * Wipe out a buffer and decrement the last buffer number if it was used for
5920 * this buffer. Call this to wipe out a temp buffer that does not contain any
5921 * marks.
5922 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005924wipe_buffer(
5925 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005926 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927{
5928 if (buf->b_fnum == top_file_num - 1)
5929 --top_file_num;
5930
Bram Moolenaarc667da52019-11-30 20:52:27 +01005931 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005932 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005933
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005934 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005935
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005937 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938}