blob: efec431c822dfe49b2475df4827332c1b096a325 [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 Moolenaarc667da52019-11-30 20:52:27 +01001007 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1008 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001009 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010}
1011
1012/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001013 * Free one wininfo_T.
1014 */
1015 void
1016free_wininfo(wininfo_T *wip)
1017{
1018 if (wip->wi_optset)
1019 {
1020 clear_winopt(&wip->wi_opt);
1021#ifdef FEAT_FOLDING
1022 deleteFoldRecurse(&wip->wi_folds);
1023#endif
1024 }
1025 vim_free(wip);
1026}
1027
1028/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 * Free the b_wininfo list for buffer "buf".
1030 */
1031 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001032clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033{
1034 wininfo_T *wip;
1035
1036 while (buf->b_wininfo != NULL)
1037 {
1038 wip = buf->b_wininfo;
1039 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001040 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 }
1042}
1043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044/*
1045 * Go to another buffer. Handles the result of the ATTENTION dialog.
1046 */
1047 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001048goto_buffer(
1049 exarg_T *eap,
1050 int start,
1051 int dir,
1052 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001054 bufref_T old_curbuf;
Bram Moolenaar188639d2022-04-04 16:57:21 +01001055 int save_sea = swap_exists_action;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001056
1057 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
Bram Moolenaar188639d2022-04-04 16:57:21 +01001059 if (swap_exists_action == SEA_NONE)
1060 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1062 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1064 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001065#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001066 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001067
Bram Moolenaarc667da52019-11-30 20:52:27 +01001068 // Reset the error/interrupt/exception state here so that
1069 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001070 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001071#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001072
Bram Moolenaarc667da52019-11-30 20:52:27 +01001073 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 win_close(curwin, TRUE);
Bram Moolenaar188639d2022-04-04 16:57:21 +01001075 swap_exists_action = save_sea;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001076 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001077
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001078#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001079 // Restore the error/interrupt/exception state if not discarded by a
1080 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001081 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001082#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 }
1084 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001085 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001086}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088/*
1089 * Handle the situation of swap_exists_action being set.
1090 * It is allowed for "old_curbuf" to be NULL or invalid.
1091 */
1092 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001093handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001095#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001096 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001097#endif
1098#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001099 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001100#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001101 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 if (swap_exists_action == SEA_QUIT)
1104 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001105#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001106 // Reset the error/interrupt/exception state here so that
1107 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001108 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001109#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001110
Bram Moolenaarc667da52019-11-30 20:52:27 +01001111 // User selected Quit at ATTENTION prompt. Go back to previous
1112 // buffer. If that buffer is gone or the same as the current one,
1113 // open a new, empty buffer.
1114 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001115 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001116 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001117 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1118 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001119 {
1120 // Block autocommands here because curwin->w_buffer is NULL.
1121 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001122 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001123 unblock_autocmds();
1124 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001125 else
1126 buf = old_curbuf->br_buf;
1127 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001128 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001129 int old_msg_silent = msg_silent;
1130
1131 if (shortmess(SHM_FILEINFO))
1132 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001133 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001134 // restore msg_silent, so that the command line will be shown
1135 msg_silent = old_msg_silent;
1136
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001137#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001138 if (old_tw != curbuf->b_p_tw)
1139 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001140#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001141 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001142 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001143
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001144#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001145 // Restore the error/interrupt/exception state if not discarded by a
1146 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001147 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 }
1150 else if (swap_exists_action == SEA_RECOVER)
1151 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001152#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001153 // Reset the error/interrupt/exception state here so that
1154 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001155 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001156#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001157
Bram Moolenaarc667da52019-11-30 20:52:27 +01001158 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001160 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001161 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001163 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001164
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001165#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001166 // Restore the error/interrupt/exception state if not discarded by a
1167 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001168 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001169#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 }
1171 swap_exists_action = SEA_NONE;
1172}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001175 * Make the current buffer empty.
1176 * Used when it is wiped out and it's the last buffer.
1177 */
1178 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001179empty_curbuf(
1180 int close_others,
1181 int forceit,
1182 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001183{
1184 int retval;
1185 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001186 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001187
1188 if (action == DOBUF_UNLOAD)
1189 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001190 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001191 return FAIL;
1192 }
1193
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001194 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001195 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001196 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001197 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001198
1199 setpcmark();
1200 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1201 forceit ? ECMD_FORCEIT : 0, curwin);
1202
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001203 // do_ecmd() may create a new buffer, then we have to delete
1204 // the old one. But do_ecmd() may have done that already, check
1205 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001206 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001207 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001208 if (!close_others)
1209 need_fileinfo = FALSE;
1210 return retval;
1211}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001212
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213/*
1214 * Implementation of the commands for the buffer list.
1215 *
1216 * action == DOBUF_GOTO go to specified buffer
1217 * action == DOBUF_SPLIT split window and go to specified buffer
1218 * action == DOBUF_UNLOAD unload specified buffer(s)
1219 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1220 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001221 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 *
1223 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1224 * start == DOBUF_FIRST go to "count" buffer from first buffer
1225 * start == DOBUF_LAST go to "count" buffer from last buffer
1226 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1227 *
1228 * Return FAIL or OK.
1229 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001230 static int
1231do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001232 int action,
1233 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001234 int dir, // FORWARD or BACKWARD
1235 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001236 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237{
1238 buf_T *buf;
1239 buf_T *bp;
1240 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001241 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242
1243 switch (start)
1244 {
1245 case DOBUF_FIRST: buf = firstbuf; break;
1246 case DOBUF_LAST: buf = lastbuf; break;
1247 default: buf = curbuf; break;
1248 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001249 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 {
1251 while (count-- > 0)
1252 {
1253 do
1254 {
1255 buf = buf->b_next;
1256 if (buf == NULL)
1257 buf = firstbuf;
1258 }
1259 while (buf != curbuf && !bufIsChanged(buf));
1260 }
1261 if (!bufIsChanged(buf))
1262 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001263 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 return FAIL;
1265 }
1266 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001267 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 {
1269 while (buf != NULL && buf->b_fnum != count)
1270 buf = buf->b_next;
1271 }
1272 else
1273 {
1274 bp = NULL;
1275 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1276 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001277 // remember the buffer where we start, we come back there when all
1278 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 if (bp == NULL)
1280 bp = buf;
1281 if (dir == FORWARD)
1282 {
1283 buf = buf->b_next;
1284 if (buf == NULL)
1285 buf = firstbuf;
1286 }
1287 else
1288 {
1289 buf = buf->b_prev;
1290 if (buf == NULL)
1291 buf = lastbuf;
1292 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001293 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if (unload || buf->b_p_bl)
1295 {
1296 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001297 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 }
1299 if (bp == buf)
1300 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001301 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001302 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 return FAIL;
1304 }
1305 }
1306 }
1307
Bram Moolenaarc667da52019-11-30 20:52:27 +01001308 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 {
1310 if (start == DOBUF_FIRST)
1311 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001312 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001314 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 }
1316 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001317 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001319 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 return FAIL;
1321 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001322#ifdef FEAT_PROP_POPUP
1323 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1324# ifdef FEAT_TERMINAL
1325 && !bt_terminal(buf)
1326#endif
1327 )
1328 return OK;
1329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
1331#ifdef FEAT_GUI
1332 need_mouse_correct = TRUE;
1333#endif
1334
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001336 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 */
1338 if (unload)
1339 {
1340 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001341 bufref_T bufref;
1342
Bram Moolenaar94f01952018-09-01 15:30:03 +02001343 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001344 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001345
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001346 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
Bram Moolenaarc667da52019-11-30 20:52:27 +01001348 // When unloading or deleting a buffer that's already unloaded and
1349 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001350 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1351 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 return FAIL;
1353
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001354 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001356#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001357 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 {
1359 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001360 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001361 // Autocommand deleted buffer, oops! It's not changed
1362 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001364 // If it's still changed fail silently, the dialog already
1365 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001366 if (bufIsChanged(buf))
1367 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001369 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001370#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001372 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 buf->b_fnum);
1374 return FAIL;
1375 }
1376 }
1377
Bram Moolenaarc667da52019-11-30 20:52:27 +01001378 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001379 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001380 end_visual_mode();
1381
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001382 // If deleting the last (listed) buffer, make it empty.
1383 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001384 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 if (bp->b_p_bl && bp != buf)
1386 break;
1387 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001388 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001390 // If the deleted buffer is the current one, close the current window
1391 // (unless it's the only window). Repeat this so long as we end up in
1392 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001393 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001394 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001395 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001396 {
1397 if (win_close(curwin, FALSE) == FAIL)
1398 break;
1399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001401 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 if (buf != curbuf)
1403 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001404 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001405 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001406 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 return OK;
1408 }
1409
1410 /*
1411 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001412 * There should be another, otherwise it would have been handled
1413 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001414 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 * Then prefer the buffer we most recently visited.
1416 * Else try to find one that is loaded, after the current buffer,
1417 * then before the current buffer.
1418 * Finally use any buffer.
1419 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001420 buf = NULL; // selected buffer
1421 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001422 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1423 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001424 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 {
1426 int jumpidx;
1427
1428 jumpidx = curwin->w_jumplistidx - 1;
1429 if (jumpidx < 0)
1430 jumpidx = curwin->w_jumplistlen - 1;
1431
1432 forward = jumpidx;
1433 while (jumpidx != curwin->w_jumplistidx)
1434 {
1435 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1436 if (buf != NULL)
1437 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001438 // Skip current and unlisted bufs. Also skip a quickfix
1439 // buffer, it might be deleted soon.
1440 if (buf == curbuf || !buf->b_p_bl
1441#if defined(FEAT_QUICKFIX)
1442 || bt_quickfix(buf)
1443#endif
1444 )
1445 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 else if (buf->b_ml.ml_mfp == NULL)
1447 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001448 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 if (bp == NULL)
1450 bp = buf;
1451 buf = NULL;
1452 }
1453 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001454 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001456 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1458 break;
1459 if (--jumpidx < 0)
1460 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001461 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 break;
1463 }
1464 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465
Bram Moolenaarc667da52019-11-30 20:52:27 +01001466 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 {
1468 forward = TRUE;
1469 buf = curbuf->b_next;
1470 for (;;)
1471 {
1472 if (buf == NULL)
1473 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001474 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 break;
1476 buf = curbuf->b_prev;
1477 forward = FALSE;
1478 continue;
1479 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001480 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001481 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1482#if defined(FEAT_QUICKFIX)
1483 && !bt_quickfix(buf)
1484#endif
1485 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001487 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001489 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 bp = buf;
1491 }
1492 if (forward)
1493 buf = buf->b_next;
1494 else
1495 buf = buf->b_prev;
1496 }
1497 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001498 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001500 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001502 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001503 if (buf->b_p_bl && buf != curbuf
1504#if defined(FEAT_QUICKFIX)
1505 && !bt_quickfix(buf)
1506#endif
1507 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 break;
1509 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001510 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 {
1512 if (curbuf->b_next != NULL)
1513 buf = curbuf->b_next;
1514 else
1515 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001516#if defined(FEAT_QUICKFIX)
1517 if (bt_quickfix(buf))
1518 buf = NULL;
1519#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 }
1521 }
1522
Bram Moolenaara02471e2014-01-10 16:43:14 +01001523 if (buf == NULL)
1524 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001525 // Autocommands must have wiped out all other buffers. Only option
1526 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001527 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001528 }
1529
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001531 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001533 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001535 // If 'switchbuf' contains "useopen": jump to first window containing
1536 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001537 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001538 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001539 // If 'switchbuf' contains "usetab": jump to first window in any tab
1540 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001541 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 return OK;
1543 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 return FAIL;
1545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
Bram Moolenaarc667da52019-11-30 20:52:27 +01001547 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (buf == curbuf)
1549 return OK;
1550
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001551 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001552 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 {
1554#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001555 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001557 bufref_T bufref;
1558
1559 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001561 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001562 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 }
1565 if (bufIsChanged(curbuf))
1566#endif
1567 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001568 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 return FAIL;
1570 }
1571 }
1572
Bram Moolenaarc667da52019-11-30 20:52:27 +01001573 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 set_curbuf(buf, action);
1575
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001577 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001579#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001580 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 return FAIL;
1582#endif
1583
1584 return OK;
1585}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001587 int
1588do_buffer(
1589 int action,
1590 int start,
1591 int dir, // FORWARD or BACKWARD
1592 int count, // buffer number or number of buffers
1593 int forceit) // TRUE when using !
1594{
1595 return do_buffer_ext(action, start, dir, count,
1596 forceit ? DOBUF_FORCEIT : 0);
1597}
1598
1599/*
1600 * do_bufdel() - delete or unload buffer(s)
1601 *
1602 * addr_count == 0: ":bdel" - delete current buffer
1603 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1604 * buffer "end_bnr", then any other arguments.
1605 * addr_count == 2: ":N,N bdel" - delete buffers in range
1606 *
1607 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1608 * DOBUF_DEL (":bdel")
1609 *
1610 * Returns error message or NULL
1611 */
1612 char *
1613do_bufdel(
1614 int command,
1615 char_u *arg, // pointer to extra arguments
1616 int addr_count,
1617 int start_bnr, // first buffer number in a range
1618 int end_bnr, // buffer nr or last buffer nr in a range
1619 int forceit)
1620{
1621 int do_current = 0; // delete current buffer?
1622 int deleted = 0; // number of buffers deleted
1623 char *errormsg = NULL; // return value
1624 int bnr; // buffer number
1625 char_u *p;
1626
1627 if (addr_count == 0)
1628 {
1629 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1630 }
1631 else
1632 {
1633 if (addr_count == 2)
1634 {
1635 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001636 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001637 bnr = start_bnr;
1638 }
1639 else // addr_count == 1
1640 bnr = end_bnr;
1641
1642 for ( ;!got_int; ui_breakcheck())
1643 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001644 // Delete the current buffer last, otherwise when the
1645 // current buffer is deleted, the next buffer becomes
1646 // the current one and will be loaded, which may then
1647 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001648 if (bnr == curbuf->b_fnum)
1649 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001650 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001651 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1652 ++deleted;
1653
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001654 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001655 if (addr_count == 2)
1656 {
1657 if (++bnr > end_bnr)
1658 break;
1659 }
1660 else // addr_count == 1
1661 {
1662 arg = skipwhite(arg);
1663 if (*arg == NUL)
1664 break;
1665 if (!VIM_ISDIGIT(*arg))
1666 {
1667 p = skiptowhite_esc(arg);
1668 bnr = buflist_findpat(arg, p,
1669 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1670 FALSE, FALSE);
1671 if (bnr < 0) // failed
1672 break;
1673 arg = p;
1674 }
1675 else
1676 bnr = getdigits(&arg);
1677 }
1678 }
1679 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1680 FORWARD, do_current, forceit) == OK)
1681 ++deleted;
1682
1683 if (deleted == 0)
1684 {
1685 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001686 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001687 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001688 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001689 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001690 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001691 errormsg = (char *)IObuff;
1692 }
1693 else if (deleted >= p_report)
1694 {
1695 if (command == DOBUF_UNLOAD)
1696 smsg(NGETTEXT("%d buffer unloaded",
1697 "%d buffers unloaded", deleted), deleted);
1698 else if (command == DOBUF_DEL)
1699 smsg(NGETTEXT("%d buffer deleted",
1700 "%d buffers deleted", deleted), deleted);
1701 else
1702 smsg(NGETTEXT("%d buffer wiped out",
1703 "%d buffers wiped out", deleted), deleted);
1704 }
1705 }
1706
1707
1708 return errormsg;
1709}
1710
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711/*
1712 * Set current buffer to "buf". Executes autocommands and closes current
1713 * buffer. "action" tells how to close the current buffer:
1714 * DOBUF_GOTO free or hide it
1715 * DOBUF_SPLIT nothing
1716 * DOBUF_UNLOAD unload it
1717 * DOBUF_DEL delete it
1718 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001719 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 */
1721 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001722set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723{
1724 buf_T *prevbuf;
1725 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001726 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001727#ifdef FEAT_SYN_HL
1728 long old_tw = curbuf->b_p_tw;
1729#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001730 bufref_T newbufref;
1731 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001732 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001735 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001736 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1737 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738
Bram Moolenaarc667da52019-11-30 20:52:27 +01001739 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
Bram Moolenaarc667da52019-11-30 20:52:27 +01001742 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001744 set_bufref(&prevbufref, prevbuf);
1745 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001747 // Autocommands may delete the current buffer and/or the buffer we want to
1748 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001749 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001750 || (bufref_valid(&prevbufref)
1751 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001752#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001753 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001755 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001757#ifdef FEAT_SYN_HL
1758 if (prevbuf == curwin->w_buffer)
1759 reset_synblock(curwin);
1760#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001762 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001763#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001764 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001766 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001768 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001769 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001770
Bram Moolenaare615db02022-01-20 21:00:54 +00001771 // Do not sync when in Insert mode and the buffer is open in
1772 // another window, might be a timer doing something in another
1773 // window.
1774 if (prevbuf == curbuf
Bram Moolenaar24959102022-05-07 20:01:16 +01001775 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001776 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1778 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001779 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001780 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1781 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001782 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001783 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001784 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001785 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001787 // An autocommand may have deleted "buf", already entered it (e.g., when
1788 // it did ":bunload") or aborted the script processing.
1789 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001790 valid = buf_valid(buf);
1791 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001792#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001793 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001795 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001796 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001797 // If the buffer is not valid but curwin->w_buffer is NULL we must
1798 // enter some buffer. Using the last one is hopefully OK.
1799 if (!valid)
1800 enter_buffer(lastbuf);
1801 else
1802 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001803#ifdef FEAT_SYN_HL
1804 if (old_tw != curbuf->b_p_tw)
1805 check_colorcolumn(curwin);
1806#endif
1807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808}
1809
1810/*
1811 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001812 * Old curbuf must have been abandoned already! This also means "curbuf" may
1813 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001815 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001816enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001818 // Get the buffer in the current window.
1819 curwin->w_buffer = buf;
1820 curbuf = buf;
1821 ++curbuf->b_nwindows;
1822
1823 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1825 if (!buf->b_help)
1826 get_winopts(buf);
1827#ifdef FEAT_FOLDING
1828 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001829 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001831 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832#endif
1833
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001835 if (curwin->w_p_diff)
1836 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837#endif
1838
Bram Moolenaara971b822011-09-14 14:43:25 +02001839#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001840 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001841#endif
1842
Bram Moolenaarc667da52019-11-30 20:52:27 +01001843 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 curwin->w_cursor.lnum = 1;
1845 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001848 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849
Bram Moolenaarc667da52019-11-30 20:52:27 +01001850 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001851 curwin->w_valid = 0;
1852
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001853 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1854 curbuf->b_last_cursor.col, TRUE);
1855
Bram Moolenaarc667da52019-11-30 20:52:27 +01001856 // Make sure the buffer is loaded.
1857 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001858 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001859 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001860 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001861 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001862 if (*curbuf->b_p_ft == NUL)
1863 did_filetype = FALSE;
1864
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001865 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 else
1868 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001869 if (!msg_silent && !shortmess(SHM_FILEINFO))
1870 need_fileinfo = TRUE; // display file info after redraw
1871
1872 // check if file changed
1873 (void)buf_check_timestamp(curbuf, FALSE);
1874
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001876#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1880 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 }
1882
Bram Moolenaarc667da52019-11-30 20:52:27 +01001883 // If autocommands did not change the cursor position, restore cursor lnum
1884 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 if (curwin->w_cursor.lnum == 1 && inindent(0))
1886 buflist_getfpos();
1887
Bram Moolenaarc667da52019-11-30 20:52:27 +01001888 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001890 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001891 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001892 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893
Bram Moolenaar009b2592004-10-24 19:18:58 +00001894#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001895 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001896 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001897#endif
1898
Bram Moolenaarc667da52019-11-30 20:52:27 +01001899 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001900 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901
1902#ifdef FEAT_KEYMAP
1903 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001904 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001906#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001907 // May need to set the spell language. Can only do this after the buffer
1908 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001909 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1910 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001911#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001912#ifdef FEAT_VIMINFO
1913 curbuf->b_last_used = vim_time();
1914#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001915
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 redraw_later(NOT_VALID);
1917}
1918
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001919#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1920/*
1921 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001922 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001923 */
1924 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001925do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001926{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001927 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001928 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001929 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001930 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001931 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001932 last_chdir_reason = "autochdir";
1933 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001934}
1935#endif
1936
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001937 void
1938no_write_message(void)
1939{
1940#ifdef FEAT_TERMINAL
1941 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001942 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001943 else
1944#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001945 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001946}
1947
1948 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001949no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001950{
1951#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001952 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001953 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001954 else
1955#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001956 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001957}
1958
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959/*
1960 * functions for dealing with the buffer list
1961 */
1962
1963/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001964 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1965 * only one window. That means it can be re-used.
1966 */
1967 int
1968curbuf_reusable(void)
1969{
1970 return (curbuf != NULL
1971 && curbuf->b_ffname == NULL
1972 && curbuf->b_nwindows <= 1
1973 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001974#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001975 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001976#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001977 && !curbufIsChanged());
1978}
1979
1980/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 * Add a file name to the buffer list. Return a pointer to the buffer.
1982 * If the same file name already exists return a pointer to that buffer.
1983 * If it does not exist, or if fname == NULL, a new entry is created.
1984 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1985 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1986 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001987 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001988 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1989 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001990 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 * This is the ONLY way to create a new buffer.
1992 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001994buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001995 char_u *ffname_arg, // full path of fname or relative
1996 char_u *sfname_arg, // short fname or NULL
1997 linenr_T lnum, // preferred cursor line
1998 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002000 char_u *ffname = ffname_arg;
2001 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 buf_T *buf;
2003#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002004 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005#endif
2006
Bram Moolenaar480778b2016-07-14 22:09:39 +02002007 if (top_file_num == 1)
2008 hash_init(&buf_hashtab);
2009
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002010 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011
2012 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002013 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 */
2015#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002016 // On Unix we can use inode numbers when the file exists. Works better
2017 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2019 st.st_dev = (dev_T)-1;
2020#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002021 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022#ifdef UNIX
2023 buflist_findname_stat(ffname, &st)
2024#else
2025 buflist_findname(ffname)
2026#endif
2027 ) != NULL)
2028 {
2029 vim_free(ffname);
2030 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002031 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2032 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002033
2034 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002035 // copy the options now, if 'cpo' doesn't have 's' and not done
2036 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002037 buf_copy_options(buf, 0);
2038
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2040 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002041 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002042
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002044 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002046 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002047 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002048 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002049 return NULL;
2050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 }
2052 return buf;
2053 }
2054
2055 /*
2056 * If the current buffer has no name and no contents, use the current
2057 * buffer. Otherwise: Need to allocate a new buffer structure.
2058 *
2059 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002060 * (A spell file buffer is allocated in spell.c, but that's not a normal
2061 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 */
2063 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002064 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 {
2066 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002067 // It's like this buffer is deleted. Watch out for autocommands that
2068 // change curbuf! If that happens, allocate a new buffer anyway.
Charlie Grovesfef44852022-04-19 16:24:12 +01002069 buf_freeall(buf, BFA_WIPE | BFA_DEL);
2070 if (buf != curbuf) // autocommands deleted the buffer!
2071 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002072#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002073 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002074 {
2075 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 }
2080 if (buf != curbuf || curbuf == NULL)
2081 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002082 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 if (buf == NULL)
2084 {
2085 vim_free(ffname);
2086 return NULL;
2087 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002088#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002089 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002090 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002091 if (buf->b_vars == NULL)
2092 {
2093 vim_free(ffname);
2094 vim_free(buf);
2095 return NULL;
2096 }
2097 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2098#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002099 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 }
2101
2102 if (ffname != NULL)
2103 {
2104 buf->b_ffname = ffname;
2105 buf->b_sfname = vim_strsave(sfname);
2106 }
2107
2108 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002109 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2112 || buf->b_wininfo == NULL)
2113 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002114 if (buf->b_sfname != buf->b_ffname)
2115 VIM_CLEAR(buf->b_sfname);
2116 else
2117 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002118 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 if (buf != curbuf)
2120 free_buffer(buf);
2121 return NULL;
2122 }
2123
2124 if (buf == curbuf)
2125 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002126 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002127
Bram Moolenaarc667da52019-11-30 20:52:27 +01002128 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002129 buf->b_p_initialized = FALSE;
2130 buf_copy_options(buf, BCO_ENTER);
2131
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002133 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 curbuf->b_kmap_state |= KEYMAP_INIT;
2135#endif
2136 }
2137 else
2138 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002139 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002141 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 {
2143 buf->b_prev = NULL;
2144 firstbuf = buf;
2145 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002146 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 {
2148 lastbuf->b_next = buf;
2149 buf->b_prev = lastbuf;
2150 }
2151 lastbuf = buf;
2152
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002153 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2154 {
2155 // Recycle a previously used buffer number. Used for buffers which
2156 // are normally hidden, e.g. in a popup window. Avoids that the
2157 // buffer number grows rapidly.
2158 --buf_reuse.ga_len;
2159 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002160
2161 // Move buffer to the right place in the buffer list.
2162 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2163 {
2164 buf_T *prev = buf->b_prev;
2165
2166 prev->b_next = buf->b_next;
2167 if (prev->b_next != NULL)
2168 prev->b_next->b_prev = prev;
2169 buf->b_next = prev;
2170 buf->b_prev = prev->b_prev;
2171 if (buf->b_prev != NULL)
2172 buf->b_prev->b_next = buf;
2173 prev->b_prev = buf;
2174 if (lastbuf == buf)
2175 lastbuf = prev;
2176 if (firstbuf == prev)
2177 firstbuf = buf;
2178 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002179 }
2180 else
2181 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002182 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002184 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002185 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {
2187 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002188 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 }
2190 top_file_num = 1;
2191 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002192 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002194 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 buf_copy_options(buf, BCO_ALWAYS);
2196 }
2197
2198 buf->b_wininfo->wi_fpos.lnum = lnum;
2199 buf->b_wininfo->wi_win = curwin;
2200
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002201#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002202 hash_init(&buf->b_s.b_keywtab);
2203 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204#endif
2205
2206 buf->b_fname = buf->b_sfname;
2207#ifdef UNIX
2208 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002209 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 else
2211 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002212 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 buf->b_dev = st.st_dev;
2214 buf->b_ino = st.st_ino;
2215 }
2216#endif
2217 buf->b_u_synced = TRUE;
2218 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002219 if (flags & BLN_DUMMY)
2220 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002222 clrallmarks(buf); // clear marks
2223 fmarks_check_names(buf); // check file marks for this file
2224 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 if (!(flags & BLN_DUMMY))
2226 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002227 bufref_T bufref;
2228
Bram Moolenaarc667da52019-11-30 20:52:27 +01002229 // Tricky: these autocommands may change the buffer list. They could
2230 // also split the window with re-using the one empty buffer. This may
2231 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002232 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002233 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002234 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002235 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002237 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002238 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002239 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002240 return NULL;
2241 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002242#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002243 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247
2248 return buf;
2249}
2250
2251/*
2252 * Free the memory for the options of a buffer.
2253 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2254 * 'fileencoding'.
2255 */
2256 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002257free_buf_options(
2258 buf_T *buf,
2259 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260{
2261 if (free_p_ff)
2262 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 clear_string_option(&buf->b_p_bh);
2266 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 }
2268#ifdef FEAT_FIND_ID
2269 clear_string_option(&buf->b_p_def);
2270 clear_string_option(&buf->b_p_inc);
2271# ifdef FEAT_EVAL
2272 clear_string_option(&buf->b_p_inex);
2273# endif
2274#endif
Bram Moolenaar8e145b82022-05-21 20:17:31 +01002275#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 clear_string_option(&buf->b_p_inde);
2277 clear_string_option(&buf->b_p_indk);
2278#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002279#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2280 clear_string_option(&buf->b_p_bexpr);
2281#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002282#if defined(FEAT_CRYPT)
2283 clear_string_option(&buf->b_p_cm);
2284#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002285 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002286#if defined(FEAT_EVAL)
2287 clear_string_option(&buf->b_p_fex);
2288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002290# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002291 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2292 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2293 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002294# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 clear_string_option(&buf->b_p_key);
2296#endif
2297 clear_string_option(&buf->b_p_kp);
2298 clear_string_option(&buf->b_p_mps);
2299 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002300 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002302#ifdef FEAT_VARTABS
2303 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002304 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002305 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002306 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002307 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002308 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310#ifdef FEAT_KEYMAP
2311 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002312 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 ga_clear(&buf->b_kmap_ga);
2314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316#ifdef FEAT_FOLDING
2317 clear_string_option(&buf->b_p_cms);
2318#endif
2319 clear_string_option(&buf->b_p_nf);
2320#ifdef FEAT_SYN_HL
2321 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002322 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002323#endif
2324#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002325 clear_string_option(&buf->b_s.b_p_spc);
2326 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002327 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002328 buf->b_s.b_cap_prog = NULL;
2329 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002330 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331#endif
2332#ifdef FEAT_SEARCHPATH
2333 clear_string_option(&buf->b_p_sua);
2334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 clear_string_option(&buf->b_p_cink);
2337 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002338 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 clear_string_option(&buf->b_p_cinw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002341#ifdef FEAT_COMPL_FUNC
2342 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002343 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002344 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002345 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002346 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002347 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349#ifdef FEAT_QUICKFIX
2350 clear_string_option(&buf->b_p_gp);
2351 clear_string_option(&buf->b_p_mp);
2352 clear_string_option(&buf->b_p_efm);
2353#endif
2354 clear_string_option(&buf->b_p_ep);
2355 clear_string_option(&buf->b_p_path);
2356 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002357 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002358#ifdef FEAT_EVAL
2359 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002360 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 clear_string_option(&buf->b_p_dict);
2363 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002364#ifdef FEAT_TEXTOBJ
2365 clear_string_option(&buf->b_p_qe);
2366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002368 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002369 clear_string_option(&buf->b_p_lw);
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002370 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002371 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372}
2373
2374/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002375 * Get alternate file "n".
2376 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2377 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 * if (options & GETF_SETMARK) call setpcmark()
2379 * if (options & GETF_ALT) we are jumping to an alternate file.
2380 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2381 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002382 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 */
2384 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002385buflist_getfile(
2386 int n,
2387 linenr_T lnum,
2388 int options,
2389 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390{
2391 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 pos_T *fpos;
2394 colnr_T col;
2395
2396 buf = buflist_findnr(n);
2397 if (buf == NULL)
2398 {
2399 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002400 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002402 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 return FAIL;
2404 }
2405
Bram Moolenaarc667da52019-11-30 20:52:27 +01002406 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 if (buf == curbuf)
2408 return OK;
2409
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002410 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002411 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002412 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002414 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002415 if (curbuf_locked())
2416 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417
Bram Moolenaarc667da52019-11-30 20:52:27 +01002418 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 if (lnum == 0)
2420 {
2421 fpos = buflist_findfpos(buf);
2422 lnum = fpos->lnum;
2423 col = fpos->col;
2424 }
2425 else
2426 col = 0;
2427
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 if (options & GETF_SWITCH)
2429 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002430 // If 'switchbuf' contains "useopen": jump to first window containing
2431 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002432 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002434
Bram Moolenaarc667da52019-11-30 20:52:27 +01002435 // If 'switchbuf' contains "usetab": jump to first window in any tab
2436 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002437 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002438 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002439
Bram Moolenaarc667da52019-11-30 20:52:27 +01002440 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2441 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002442 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002443 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002445 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002446 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002447 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2448 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002450 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 }
2452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453
2454 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002455 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2456 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 {
2458 --RedrawingDisabled;
2459
Bram Moolenaarc667da52019-11-30 20:52:27 +01002460 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 if (!p_sol && col != 0)
2462 {
2463 curwin->w_cursor.col = col;
2464 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 curwin->w_set_curswant = TRUE;
2467 }
2468 return OK;
2469 }
2470 --RedrawingDisabled;
2471 return FAIL;
2472}
2473
2474/*
2475 * go to the last know line number for the current buffer
2476 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002477 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002478buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479{
2480 pos_T *fpos;
2481
2482 fpos = buflist_findfpos(curbuf);
2483
2484 curwin->w_cursor.lnum = fpos->lnum;
2485 check_cursor_lnum();
2486
2487 if (p_sol)
2488 curwin->w_cursor.col = 0;
2489 else
2490 {
2491 curwin->w_cursor.col = fpos->col;
2492 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 curwin->w_set_curswant = TRUE;
2495 }
2496}
2497
Bram Moolenaar81695252004-12-29 20:58:21 +00002498#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2499/*
2500 * Find file in buffer list by name (it has to be for the current window).
2501 * Returns NULL if not found.
2502 */
2503 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002504buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002505{
2506 char_u *ffname;
2507 buf_T *buf = NULL;
2508
Bram Moolenaarc667da52019-11-30 20:52:27 +01002509 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002510 ffname = FullName_save(fname,
2511#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002512 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002513#else
2514 FALSE
2515#endif
2516 );
2517 if (ffname != NULL)
2518 {
2519 buf = buflist_findname(ffname);
2520 vim_free(ffname);
2521 }
2522 return buf;
2523}
2524#endif
2525
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526/*
2527 * Find file in buffer list by name (it has to be for the current window).
2528 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002529 * Skips dummy buffers.
2530 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 */
2532 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002533buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534{
2535#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002536 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537
2538 if (mch_stat((char *)ffname, &st) < 0)
2539 st.st_dev = (dev_T)-1;
2540 return buflist_findname_stat(ffname, &st);
2541}
2542
2543/*
2544 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2545 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002546 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 */
2548 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002549buflist_findname_stat(
2550 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002551 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552{
2553#endif
2554 buf_T *buf;
2555
Bram Moolenaarc667da52019-11-30 20:52:27 +01002556 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002557 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002558 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559#ifdef UNIX
2560 , stp
2561#endif
2562 ))
2563 return buf;
2564 return NULL;
2565}
2566
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567/*
2568 * Find file in buffer list by a regexp pattern.
2569 * Return fnum of the found buffer.
2570 * Return < 0 for error.
2571 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002573buflist_findpat(
2574 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002575 char_u *pattern_end, // pointer to first char after pattern
2576 int unlisted, // find unlisted buffers
2577 int diffmode UNUSED, // find diff-mode buffers only
2578 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579{
2580 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 int match = -1;
2582 int find_listed;
2583 char_u *pat;
2584 char_u *patend;
2585 int attempt;
2586 char_u *p;
2587 int toggledollar;
2588
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002589 // "%" is current file, "%%" or "#" is alternate file
2590 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2591 || (in_vim9script() && pattern_end == pattern + 2
2592 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002594 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002596 else
2597 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598#ifdef FEAT_DIFF
2599 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2600 match = -1;
2601#endif
2602 }
2603
2604 /*
2605 * Try four ways of matching a listed buffer:
2606 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002607 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 * attempt == 2: with '$' at end (only match at end)
2609 * attempt == 3: with '^' at start and '$' at end (only full match)
2610 * Repeat this for finding an unlisted buffer if there was no matching
2611 * listed buffer.
2612 */
2613 else
2614 {
2615 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2616 if (pat == NULL)
2617 return -1;
2618 patend = pat + STRLEN(pat) - 1;
2619 toggledollar = (patend > pat && *patend == '$');
2620
Bram Moolenaarc667da52019-11-30 20:52:27 +01002621 // First try finding a listed buffer. If not found and "unlisted"
2622 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 find_listed = TRUE;
2624 for (;;)
2625 {
2626 for (attempt = 0; attempt <= 3; ++attempt)
2627 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002628 regmatch_T regmatch;
2629
Bram Moolenaarc667da52019-11-30 20:52:27 +01002630 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002632 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002634 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002636 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002638 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002639 {
2640 if (regmatch.regprog == NULL)
2641 {
2642 // invalid pattern, possibly after switching engine
2643 vim_free(pat);
2644 return -1;
2645 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 if (buf->b_p_bl == find_listed
2647#ifdef FEAT_DIFF
2648 && (!diffmode || diff_mode_buf(buf))
2649#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002650 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002652 if (curtab_only)
2653 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002654 // Ignore the match if the buffer is not open in
2655 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002656 win_T *wp;
2657
Bram Moolenaar29323592016-07-24 22:04:11 +02002658 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002659 if (wp->w_buffer == buf)
2660 break;
2661 if (wp == NULL)
2662 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002663 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002664 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 {
2666 match = -2;
2667 break;
2668 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002669 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 }
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002673 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002674 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 break;
2676 }
2677
Bram Moolenaarc667da52019-11-30 20:52:27 +01002678 // Only search for unlisted buffers if there was no match with
2679 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 if (!unlisted || !find_listed || match != -1)
2681 break;
2682 find_listed = FALSE;
2683 }
2684
2685 vim_free(pat);
2686 }
2687
2688 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002689 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002691 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 return match;
2693}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694
Bram Moolenaar52410572019-10-27 05:12:45 +01002695#ifdef FEAT_VIMINFO
2696typedef struct {
2697 buf_T *buf;
2698 char_u *match;
2699} bufmatch_T;
2700#endif
2701
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702/*
2703 * Find all buffer names that match.
2704 * For command line expansion of ":buf" and ":sbuf".
2705 * Return OK if matches found, FAIL otherwise.
2706 */
2707 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002708ExpandBufnames(
2709 char_u *pat,
2710 int *num_file,
2711 char_u ***file,
2712 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
2714 int count = 0;
2715 buf_T *buf;
2716 int round;
2717 char_u *p;
2718 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002719 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002720#ifdef FEAT_VIMINFO
2721 bufmatch_T *matches = NULL;
2722#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002723 int fuzzy;
2724 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
Bram Moolenaarc667da52019-11-30 20:52:27 +01002726 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 *file = NULL;
2728
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002729#ifdef FEAT_DIFF
2730 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2731 return FAIL;
2732#endif
2733
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002734 fuzzy = cmdline_fuzzy_complete(pat);
2735
2736 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2737 // expression matching)
2738 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002740 if (*pat == '^')
2741 {
2742 patc = alloc(STRLEN(pat) + 11);
2743 if (patc == NULL)
2744 return FAIL;
2745 STRCPY(patc, "\\(^\\|[\\/]\\)");
2746 STRCPY(patc + 11, pat + 1);
2747 }
2748 else
2749 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002750 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002751
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002752 // attempt == 0: try match with '\<', match at start of word
2753 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002754 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002755 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002756 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002757 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002758
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002759 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002760 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002761 if (attempt > 0 && patc == pat)
2762 break; // there was no anchor, no need to try again
2763 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002766 // round == 1: Count the matches.
2767 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 for (round = 1; round <= 2; ++round)
2769 {
2770 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002771 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002773 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002775#ifdef FEAT_DIFF
2776 if (options & BUF_DIFF_FILTER)
2777 // Skip buffers not suitable for
2778 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002779 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002780 continue;
2781#endif
2782
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002783 if (!fuzzy)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002784 {
2785 if (regmatch.regprog == NULL)
2786 {
2787 // invalid pattern, possibly after recompiling
2788 if (patc != pat)
2789 vim_free(patc);
2790 return FAIL;
2791 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002792 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002793 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002794 else
2795 {
2796 p = NULL;
2797 // first try matching with the short file name
2798 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2799 p = buf->b_sfname;
2800 if (p == NULL)
2801 {
2802 // next try matching with the full path file name
2803 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2804 p = buf->b_ffname;
2805 }
2806 }
2807
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002808 if (p == NULL)
2809 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002810
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002811 if (round == 1)
2812 {
2813 ++count;
2814 continue;
2815 }
2816
2817 if (options & WILD_HOME_REPLACE)
2818 p = home_replace_save(buf, p);
2819 else
2820 p = vim_strsave(p);
2821
2822 if (!fuzzy)
2823 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002824#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002825 if (matches != NULL)
2826 {
2827 matches[count].buf = buf;
2828 matches[count].match = p;
2829 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002831 else
2832#endif
2833 (*file)[count++] = p;
2834 }
2835 else
2836 {
2837 fuzmatch[count].idx = count;
2838 fuzmatch[count].str = p;
2839 fuzmatch[count].score = score;
2840 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 }
2842 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002843 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 break;
2845 if (round == 1)
2846 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002847 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002849 *file = ALLOC_MULT(char_u *, count);
2850 if (*file == NULL)
2851 {
2852 vim_regfree(regmatch.regprog);
2853 if (patc != pat)
2854 vim_free(patc);
2855 return FAIL;
2856 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002857#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002858 if (options & WILD_BUFLASTUSED)
2859 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002860#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002861 }
2862 else
2863 {
2864 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2865 if (fuzmatch == NULL)
2866 {
2867 *num_file = 0;
2868 *file = NULL;
2869 return FAIL;
2870 }
2871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 }
2873 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002874
2875 if (!fuzzy)
2876 {
2877 vim_regfree(regmatch.regprog);
2878 if (count) // match(es) found, break here
2879 break;
2880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 }
2882
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002883 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002884 vim_free(patc);
2885
Bram Moolenaar52410572019-10-27 05:12:45 +01002886#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002887 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002888 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002889 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002890 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002891 int i;
2892 if (count > 1)
2893 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2894 // if the current buffer is first in the list, place it at the end
2895 if (matches[0].buf == curbuf)
2896 {
2897 for (i = 1; i < count; i++)
2898 (*file)[i-1] = matches[i].match;
2899 (*file)[count-1] = matches[0].match;
2900 }
2901 else
2902 {
2903 for (i = 0; i < count; i++)
2904 (*file)[i] = matches[i].match;
2905 }
2906 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002907 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002908 }
2909 else
2910 {
2911 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2912 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002913 }
2914#endif
2915
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 *num_file = count;
2917 return (count == 0 ? FAIL : OK);
2918}
2919
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920/*
2921 * Check for a match on the file name for buffer "buf" with regprog "prog".
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002922 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 */
2924 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002925buflist_match(
2926 regmatch_T *rmp,
2927 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002928 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929{
2930 char_u *match;
2931
Bram Moolenaarc667da52019-11-30 20:52:27 +01002932 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002933 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaara59f2df2022-05-11 11:42:28 +01002934 if (match == NULL && rmp->regprog != NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002935 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936
2937 return match;
2938}
2939
2940/*
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002941 * Try matching the regexp in "rmp->regprog" with file name "name".
2942 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 * Return "name" when there is a match, NULL when not.
2944 */
2945 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002946fname_match(
2947 regmatch_T *rmp,
2948 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002949 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950{
2951 char_u *match = NULL;
2952 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002954 // extra check for valid arguments
2955 if (name != NULL && rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002957 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002958 rmp->rm_ic = p_fic || ignore_case;
2959 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 match = name;
Bram Moolenaar8e4b76d2022-05-07 11:28:06 +01002961 else if (rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002963 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002965 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 match = name;
2967 vim_free(p);
2968 }
2969 }
2970
2971 return match;
2972}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973
2974/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002975 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 */
2977 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002978buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002980 char_u key[VIM_SIZEOF_INT * 2 + 1];
2981 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982
2983 if (nr == 0)
2984 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002985 sprintf((char *)key, "%x", nr);
2986 hi = hash_find(&buf_hashtab, key);
2987
2988 if (!HASHITEM_EMPTY(hi))
2989 return (buf_T *)(hi->hi_key
2990 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 return NULL;
2992}
2993
2994/*
2995 * Get name of file 'n' in the buffer list.
2996 * When the file has no name an empty string is returned.
2997 * home_replace() is used to shorten the file name (used for marks).
2998 * Returns a pointer to allocated memory, of NULL when failed.
2999 */
3000 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003001buflist_nr2name(
3002 int n,
3003 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003004 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005{
3006 buf_T *buf;
3007
3008 buf = buflist_findnr(n);
3009 if (buf == NULL)
3010 return NULL;
3011 return home_replace_save(helptail ? buf : NULL,
3012 fullname ? buf->b_ffname : buf->b_fname);
3013}
3014
3015/*
3016 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3017 * When "copy_options" is TRUE save the local window option values.
3018 * When "lnum" is 0 only do the options.
3019 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003020 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003021buflist_setfpos(
3022 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003023 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003024 linenr_T lnum,
3025 colnr_T col,
3026 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027{
3028 wininfo_T *wip;
3029
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003030 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 if (wip->wi_win == win)
3032 break;
3033 if (wip == NULL)
3034 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003035 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003036 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 if (wip == NULL)
3038 return;
3039 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003040 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 lnum = 1;
3042 }
3043 else
3044 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003045 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 if (wip->wi_prev)
3047 wip->wi_prev->wi_next = wip->wi_next;
3048 else
3049 buf->b_wininfo = wip->wi_next;
3050 if (wip->wi_next)
3051 wip->wi_next->wi_prev = wip->wi_prev;
3052 if (copy_options && wip->wi_optset)
3053 {
3054 clear_winopt(&wip->wi_opt);
3055#ifdef FEAT_FOLDING
3056 deleteFoldRecurse(&wip->wi_folds);
3057#endif
3058 }
3059 }
3060 if (lnum != 0)
3061 {
3062 wip->wi_fpos.lnum = lnum;
3063 wip->wi_fpos.col = col;
3064 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003065 if (win != NULL)
3066 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003067 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003069 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3071#ifdef FEAT_FOLDING
3072 wip->wi_fold_manual = win->w_fold_manual;
3073 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3074#endif
3075 wip->wi_optset = TRUE;
3076 }
3077
Bram Moolenaarc667da52019-11-30 20:52:27 +01003078 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 wip->wi_next = buf->b_wininfo;
3080 buf->b_wininfo = wip;
3081 wip->wi_prev = NULL;
3082 if (wip->wi_next)
3083 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084}
3085
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003086#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003087/*
3088 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3089 * page. That's because a diff is local to a tab page.
3090 */
3091 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003092wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003093{
3094 win_T *wp;
3095
3096 if (wip->wi_opt.wo_diff)
3097 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003098 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003099 // return FALSE when it's a window in the current tab page, thus
3100 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003101 if (wip->wi_win == wp)
3102 return FALSE;
3103 return TRUE;
3104 }
3105 return FALSE;
3106}
3107#endif
3108
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109/*
3110 * Find info for the current window in buffer "buf".
3111 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003112 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003113 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3114 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 * Returns NULL when there isn't any info.
3116 */
3117 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003118find_wininfo(
3119 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003120 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003121 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122{
3123 wininfo_T *wip;
3124
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003125 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003126 if (wip->wi_win == curwin
3127#ifdef FEAT_DIFF
3128 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3129#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003130
3131 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003133
Bram Moolenaarc667da52019-11-30 20:52:27 +01003134 // If no wininfo for curwin, use the first in the list (that doesn't have
3135 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003136 // If "need_options" is TRUE skip entries that don't have options set,
3137 // unless the window is editing "buf", so we can copy from the window
3138 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003139 if (wip == NULL)
3140 {
3141#ifdef FEAT_DIFF
3142 if (skip_diff_buffer)
3143 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003144 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003145 if (!wininfo_other_tab_diff(wip)
3146 && (!need_options || wip->wi_optset
3147 || (wip->wi_win != NULL
3148 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003149 break;
3150 }
3151 else
3152#endif
3153 wip = buf->b_wininfo;
3154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 return wip;
3156}
3157
3158/*
3159 * Reset the local window options to the values last used in this window.
3160 * If the buffer wasn't used in this window before, use the values from
3161 * the most recently used window. If the values were never set, use the
3162 * global values for the window.
3163 */
3164 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003165get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166{
3167 wininfo_T *wip;
3168
3169 clear_winopt(&curwin->w_onebuf_opt);
3170#ifdef FEAT_FOLDING
3171 clearFolding(curwin);
3172#endif
3173
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003174 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003175 if (wip != NULL && wip->wi_win != NULL
3176 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003178 // The buffer is currently displayed in the window: use the actual
3179 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003180 win_T *wp = wip->wi_win;
3181
3182 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3183#ifdef FEAT_FOLDING
3184 curwin->w_fold_manual = wp->w_fold_manual;
3185 curwin->w_foldinvalid = TRUE;
3186 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3187#endif
3188 }
3189 else if (wip != NULL && wip->wi_optset)
3190 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003191 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3193#ifdef FEAT_FOLDING
3194 curwin->w_fold_manual = wip->wi_fold_manual;
3195 curwin->w_foldinvalid = TRUE;
3196 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3197#endif
3198 }
3199 else
3200 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003201 if (wip != NULL)
3202 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203
3204#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003205 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 if (p_fdls >= 0)
3207 curwin->w_p_fdl = p_fdls;
3208#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003209 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210}
3211
3212/*
3213 * Find the position (lnum and col) for the buffer 'buf' for the current
3214 * window.
3215 * Returns a pointer to no_position if no position is found.
3216 */
3217 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003218buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219{
3220 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003221 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003223 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 if (wip != NULL)
3225 return &(wip->wi_fpos);
3226 else
3227 return &no_position;
3228}
3229
3230/*
3231 * Find the lnum for the buffer 'buf' for the current window.
3232 */
3233 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003234buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235{
3236 return buflist_findfpos(buf)->lnum;
3237}
3238
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003240 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003243buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
Bram Moolenaar52410572019-10-27 05:12:45 +01003245 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 int len;
3247 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003248 int ro_char;
3249 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003250#ifdef FEAT_TERMINAL
3251 int job_running;
3252 int job_none_open;
3253#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254
Bram Moolenaar52410572019-10-27 05:12:45 +01003255#ifdef FEAT_VIMINFO
3256 garray_T buflist;
3257 buf_T **buflist_data = NULL, **p;
3258
3259 if (vim_strchr(eap->arg, 't'))
3260 {
3261 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003262 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003263 {
3264 if (ga_grow(&buflist, 1) == OK)
3265 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3266 }
3267
3268 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3269 sizeof(buf_T *), buf_compare);
3270
Bram Moolenaar3b991522019-11-06 23:26:20 +01003271 buflist_data = (buf_T **)buflist.ga_data;
3272 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003273 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003274 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003275
Bram Moolenaar3b991522019-11-06 23:26:20 +01003276 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003277 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3278 : buf->b_next)
3279#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003281#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003283#ifdef FEAT_TERMINAL
3284 job_running = term_job_running(buf->b_term);
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003285 job_none_open = term_none_open(buf->b_term);
Bram Moolenaar0751f512018-03-29 16:37:16 +02003286#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003287 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003288 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3289 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3290 || (vim_strchr(eap->arg, '+')
3291 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3292 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003293 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003294 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003295 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3296#ifdef FEAT_TERMINAL
3297 || (vim_strchr(eap->arg, 'R')
3298 && (!job_running || (job_running && job_none_open)))
3299 || (vim_strchr(eap->arg, '?')
3300 && (!job_running || (job_running && !job_none_open)))
3301 || (vim_strchr(eap->arg, 'F')
3302 && (job_running || buf->b_term == NULL))
3303#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003304 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3305 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3306 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3307 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3308 || (vim_strchr(eap->arg, '#')
3309 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003312 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 else
3314 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003315 if (message_filtered(NameBuff))
3316 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003318 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3319 : (bufIsChanged(buf) ? '+' : ' ');
3320#ifdef FEAT_TERMINAL
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003321 if (job_running)
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003322 {
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003323 if (job_none_open)
Bram Moolenaar4033c552017-09-16 20:54:51 +02003324 ro_char = '?';
3325 else
3326 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003327 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3328 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003329 }
3330 else if (buf->b_term != NULL)
3331 ro_char = 'F';
3332 else
3333#endif
3334 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3335
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003336 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003337 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 buf->b_fnum,
3339 buf->b_p_bl ? ' ' : 'u',
3340 buf == curbuf ? '%' :
3341 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3342 buf->b_ml.ml_mfp == NULL ? ' ' :
3343 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003344 ro_char,
3345 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003346 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003347 if (len > IOSIZE - 20)
3348 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349
Bram Moolenaarc667da52019-11-30 20:52:27 +01003350 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 i = 40 - vim_strsize(IObuff);
3352 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003354 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003355#ifdef FEAT_VIMINFO
3356 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3357 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3358 else
3359#endif
3360 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3361 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003362 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003364 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 ui_breakcheck();
3366 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003367
3368#ifdef FEAT_VIMINFO
3369 if (buflist_data)
3370 ga_clear(&buflist);
3371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373
3374/*
3375 * Get file name and line number for file 'fnum'.
3376 * Used by DoOneCmd() for translating '%' and '#'.
3377 * Used by insert_reg() and cmdline_paste() for '#' register.
3378 * Return FAIL if not found, OK for success.
3379 */
3380 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003381buflist_name_nr(
3382 int fnum,
3383 char_u **fname,
3384 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385{
3386 buf_T *buf;
3387
3388 buf = buflist_findnr(fnum);
3389 if (buf == NULL || buf->b_fname == NULL)
3390 return FAIL;
3391
3392 *fname = buf->b_fname;
3393 *lnum = buflist_findlnum(buf);
3394
3395 return OK;
3396}
3397
3398/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003399 * Set the file name for "buf"' to "ffname_arg", short file name to
3400 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 * The file name with the full path is also remembered, for when :cd is used.
3402 * Returns FAIL for failure (file name already in use by other buffer)
3403 * OK otherwise.
3404 */
3405 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003406setfname(
3407 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003408 char_u *ffname_arg,
3409 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003410 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003412 char_u *ffname = ffname_arg;
3413 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003414 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003416 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417#endif
3418
3419 if (ffname == NULL || *ffname == NUL)
3420 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003421 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003422 if (buf->b_sfname != buf->b_ffname)
3423 VIM_CLEAR(buf->b_sfname);
3424 else
3425 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003426 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427#ifdef UNIX
3428 st.st_dev = (dev_T)-1;
3429#endif
3430 }
3431 else
3432 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003433 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3434 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 return FAIL;
3436
3437 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003438 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 * - if the buffer is loaded, fail
3440 * - if the buffer is not loaded, delete it from the list
3441 */
3442#ifdef UNIX
3443 if (mch_stat((char *)ffname, &st) < 0)
3444 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003445#endif
3446 if (!(buf->b_flags & BF_DUMMY))
3447#ifdef UNIX
3448 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003450 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451#endif
3452 if (obuf != NULL && obuf != buf)
3453 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003454 win_T *win;
3455 tabpage_T *tab;
3456 int in_use = FALSE;
3457
3458 // during startup a window may use a buffer that is not loaded yet
3459 FOR_ALL_TAB_WINDOWS(tab, win)
3460 if (win->w_buffer == obuf)
3461 in_use = TRUE;
3462
3463 // it's loaded or used in a window, fail
3464 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 {
3466 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003467 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 vim_free(ffname);
3469 return FAIL;
3470 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003471 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003472 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 }
3474 sfname = vim_strsave(sfname);
3475 if (ffname == NULL || sfname == NULL)
3476 {
3477 vim_free(sfname);
3478 vim_free(ffname);
3479 return FAIL;
3480 }
3481#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003482 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003484 if (buf->b_sfname != buf->b_ffname)
3485 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 buf->b_ffname = ffname;
3488 buf->b_sfname = sfname;
3489 }
3490 buf->b_fname = buf->b_sfname;
3491#ifdef UNIX
3492 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003493 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 else
3495 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003496 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 buf->b_dev = st.st_dev;
3498 buf->b_ino = st.st_ino;
3499 }
3500#endif
3501
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
3504 buf_name_changed(buf);
3505 return OK;
3506}
3507
3508/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003509 * Crude way of changing the name of a buffer. Use with care!
3510 * The name should be relative to the current directory.
3511 */
3512 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003513buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003514{
3515 buf_T *buf;
3516
3517 buf = buflist_findnr(fnum);
3518 if (buf != NULL)
3519 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003520 if (buf->b_sfname != buf->b_ffname)
3521 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003522 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003523 buf->b_ffname = vim_strsave(name);
3524 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003525 // Allocate ffname and expand into full path. Also resolves .lnk
3526 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003527 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003528 buf->b_fname = buf->b_sfname;
3529 }
3530}
3531
3532/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 * Take care of what needs to be done when the name of buffer "buf" has
3534 * changed.
3535 */
3536 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003537buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538{
3539 /*
3540 * If the file name changed, also change the name of the swapfile
3541 */
3542 if (buf->b_ml.ml_mfp != NULL)
3543 ml_setname(buf);
3544
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003545#ifdef FEAT_TERMINAL
3546 if (buf->b_term != NULL)
3547 term_clear_status_text(buf->b_term);
3548#endif
3549
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003551 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003552 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003553 status_redraw_all(); // status lines need to be redrawn
3554 fmarks_check_names(buf); // check named file marks
3555 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556}
3557
3558/*
3559 * set alternate file name for current window
3560 *
3561 * Used by do_one_cmd(), do_write() and do_ecmd().
3562 * Return the buffer.
3563 */
3564 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003565setaltfname(
3566 char_u *ffname,
3567 char_u *sfname,
3568 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569{
3570 buf_T *buf;
3571
Bram Moolenaarc667da52019-11-30 20:52:27 +01003572 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003574 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 curwin->w_alt_fnum = buf->b_fnum;
3576 return buf;
3577}
3578
3579/*
3580 * Get alternate file name for current window.
3581 * Return NULL if there isn't any, and give error message if requested.
3582 */
3583 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003584getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003585 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586{
3587 char_u *fname;
3588 linenr_T dummy;
3589
3590 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3591 {
3592 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003593 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 return NULL;
3595 }
3596 return fname;
3597}
3598
3599/*
3600 * Add a file name to the buflist and return its number.
3601 * Uses same flags as buflist_new(), except BLN_DUMMY.
3602 *
3603 * used by qf_init(), main() and doarglist()
3604 */
3605 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003606buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607{
3608 buf_T *buf;
3609
3610 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3611 if (buf != NULL)
3612 return buf->b_fnum;
3613 return 0;
3614}
3615
3616#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3617/*
3618 * Adjust slashes in file names. Called after 'shellslash' was set.
3619 */
3620 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003621buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622{
3623 buf_T *bp;
3624
Bram Moolenaar29323592016-07-24 22:04:11 +02003625 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 {
3627 if (bp->b_ffname != NULL)
3628 slash_adjust(bp->b_ffname);
3629 if (bp->b_sfname != NULL)
3630 slash_adjust(bp->b_sfname);
3631 }
3632}
3633#endif
3634
3635/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003636 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 * Also save the local window option values.
3638 */
3639 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003640buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003642 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643}
3644
3645/*
3646 * Return TRUE if 'ffname' is not the same file as current file.
3647 * Fname must have a full path (expanded by mch_FullName()).
3648 */
3649 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003650otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651{
3652 return otherfile_buf(curbuf, ffname
3653#ifdef UNIX
3654 , NULL
3655#endif
3656 );
3657}
3658
3659 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003660otherfile_buf(
3661 buf_T *buf,
3662 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003664 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003666 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003668 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3670 return TRUE;
3671 if (fnamecmp(ffname, buf->b_ffname) == 0)
3672 return FALSE;
3673#ifdef UNIX
3674 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003675 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
Bram Moolenaarc667da52019-11-30 20:52:27 +01003677 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 if (stp == NULL)
3679 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003680 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 st.st_dev = (dev_T)-1;
3682 stp = &st;
3683 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003684 // Use dev/ino to check if the files are the same, even when the names
3685 // are different (possible with links). Still need to compare the
3686 // name above, for when the file doesn't exist yet.
3687 // Problem: The dev/ino changes when a file is deleted (and created
3688 // again) and remains the same when renamed/moved. We don't want to
3689 // mch_stat() each buffer each time, that would be too slow. Get the
3690 // dev/ino again when they appear to match, but not when they appear
3691 // to be different: Could skip a buffer when it's actually the same
3692 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 if (buf_same_ino(buf, stp))
3694 {
3695 buf_setino(buf);
3696 if (buf_same_ino(buf, stp))
3697 return FALSE;
3698 }
3699 }
3700#endif
3701 return TRUE;
3702}
3703
3704#if defined(UNIX) || defined(PROTO)
3705/*
3706 * Set inode and device number for a buffer.
3707 * Must always be called when b_fname is changed!.
3708 */
3709 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003710buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003712 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713
3714 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3715 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003716 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 buf->b_dev = st.st_dev;
3718 buf->b_ino = st.st_ino;
3719 }
3720 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003721 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722}
3723
3724/*
3725 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3726 */
3727 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003728buf_same_ino(
3729 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003730 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003732 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 && stp->st_dev == buf->b_dev
3734 && stp->st_ino == buf->b_ino);
3735}
3736#endif
3737
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003738/*
3739 * Print info about the current buffer.
3740 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003742fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003743 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003744 int shorthelp,
3745 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746{
3747 char_u *name;
3748 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003749 char *p;
3750 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003751 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003753 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 if (buffer == NULL)
3755 return;
3756
Bram Moolenaarc667da52019-11-30 20:52:27 +01003757 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003759 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 p = buffer + STRLEN(buffer);
3761 }
3762 else
3763 p = buffer;
3764
3765 *p++ = '"';
3766 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003767 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 else
3769 {
3770 if (!fullname && curbuf->b_fname != NULL)
3771 name = curbuf->b_fname;
3772 else
3773 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003774 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 (int)(IOSIZE - (p - buffer)), TRUE);
3776 }
3777
Bram Moolenaar32526b32019-01-19 17:43:09 +01003778 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 curbufIsChanged() ? (shortmess(SHM_MOD)
3780 ? " [+]" : _(" [Modified]")) : " ",
3781 (curbuf->b_flags & BF_NOTEDITED)
3782#ifdef FEAT_QUICKFIX
3783 && !bt_dontwrite(curbuf)
3784#endif
3785 ? _("[Not edited]") : "",
3786 (curbuf->b_flags & BF_NEW)
3787#ifdef FEAT_QUICKFIX
3788 && !bt_dontwrite(curbuf)
3789#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003790 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003792 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 : _("[readonly]")) : "",
3794 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3795 || curbuf->b_p_ro) ?
3796 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003797 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3798 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 if (curwin->w_cursor.lnum > 1000000L)
3800 n = (int)(((long)curwin->w_cursor.lnum) /
3801 ((long)curbuf->b_ml.ml_line_count / 100L));
3802 else
3803 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3804 (long)curbuf->b_ml.ml_line_count);
3805 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003806 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807#ifdef FEAT_CMDL_INFO
3808 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003809 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003810 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003811 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3812 curbuf->b_ml.ml_line_count),
3813 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814#endif
3815 else
3816 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003817 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 _("line %ld of %ld --%d%%-- col "),
3819 (long)curwin->w_cursor.lnum,
3820 (long)curbuf->b_ml.ml_line_count,
3821 n);
3822 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003823 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003824 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3826 }
3827
Bram Moolenaar32526b32019-01-19 17:43:09 +01003828 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3829 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830
3831 if (dont_truncate)
3832 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003833 // Temporarily set msg_scroll to avoid the message being truncated.
3834 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 msg_start();
3836 n = msg_scroll;
3837 msg_scroll = TRUE;
3838 msg(buffer);
3839 msg_scroll = n;
3840 }
3841 else
3842 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003843 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003845 // Need to repeat the message after redrawing when:
3846 // - When restart_edit is set (otherwise there will be a delay
3847 // before redrawing).
3848 // - When the screen was scrolled but there is no wait-return
3849 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003850 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 }
3852
3853 vim_free(buffer);
3854}
3855
3856 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003857col_print(
3858 char_u *buf,
3859 size_t buflen,
3860 int col,
3861 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862{
3863 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003864 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003866 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867}
3868
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869static char_u *lasttitle = NULL;
3870static char_u *lasticon = NULL;
3871
Bram Moolenaar84a93082018-06-16 22:58:15 +02003872/*
3873 * Put the file name in the title bar and icon of the window.
3874 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003876maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877{
3878 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003879 char_u *title_str = NULL;
3880 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 int maxlen = 0;
3882 int len;
3883 int mustset;
3884 char_u buf[IOSIZE];
3885 int off;
3886
3887 if (!redrawing())
3888 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003889 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 need_maketitle = TRUE;
3891 return;
3892 }
3893
3894 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003895 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003896 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897
3898 if (p_title)
3899 {
3900 if (p_titlelen > 0)
3901 {
3902 maxlen = p_titlelen * Columns / 100;
3903 if (maxlen < 10)
3904 maxlen = 10;
3905 }
3906
Bram Moolenaar84a93082018-06-16 22:58:15 +02003907 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 if (*p_titlestring != NUL)
3909 {
3910#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003911 if (stl_syntax & STL_IN_TITLE)
3912 {
3913 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003914 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003915
3916# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003917 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003918# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003919 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003920 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003921 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003922 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003923 set_string_option_direct((char_u *)"titlestring", -1,
3924 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 else
3927#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003928 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 }
3930 else
3931 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003932 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933
Bram Moolenaar2c666692012-09-05 13:30:40 +02003934#define SPACE_FOR_FNAME (IOSIZE - 100)
3935#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003936#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003938 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003939#ifdef FEAT_TERMINAL
3940 else if (curbuf->b_term != NULL)
3941 {
3942 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3943 SPACE_FOR_FNAME);
3944 }
3945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 else
3947 {
3948 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003949 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 }
3952
Bram Moolenaar21554412017-07-24 21:44:43 +02003953#ifdef FEAT_TERMINAL
3954 if (curbuf->b_term == NULL)
3955#endif
3956 switch (bufIsChanged(curbuf)
3957 + (curbuf->b_p_ro * 2)
3958 + (!curbuf->b_p_ma * 4))
3959 {
3960 case 1: STRCAT(buf, " +"); break;
3961 case 2: STRCAT(buf, " ="); break;
3962 case 3: STRCAT(buf, " =+"); break;
3963 case 4:
3964 case 6: STRCAT(buf, " -"); break;
3965 case 5:
3966 case 7: STRCAT(buf, " -+"); break;
3967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968
Bram Moolenaar21554412017-07-24 21:44:43 +02003969 if (curbuf->b_fname != NULL
3970#ifdef FEAT_TERMINAL
3971 && curbuf->b_term == NULL
3972#endif
3973 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003975 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 off = (int)STRLEN(buf);
3977 buf[off++] = ' ';
3978 buf[off++] = '(';
3979 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003980 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003982 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 if (isalpha(buf[off]) && buf[off + 1] == ':')
3984 off += 2;
3985#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003986 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003987 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003989 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003990 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003991 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003992 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003996
Bram Moolenaarc667da52019-11-30 20:52:27 +01003997 // Translate unprintable chars and concatenate. Keep some
3998 // room for the server name. When there is no room (very long
3999 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02004000 if (off < SPACE_FOR_DIR)
4001 {
4002 p = transstr(buf + off);
4003 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4004 vim_free(p);
4005 }
4006 else
4007 {
4008 vim_strncpy(buf + off, (char_u *)"...",
4009 (size_t)(SPACE_FOR_ARGNR - off));
4010 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 STRCAT(buf, ")");
4012 }
4013
Bram Moolenaar2c666692012-09-05 13:30:40 +02004014 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015
4016#if defined(FEAT_CLIENTSERVER)
4017 if (serverName != NULL)
4018 {
4019 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004020 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 }
4022 else
4023#endif
4024 STRCAT(buf, " - VIM");
4025
4026 if (maxlen > 0)
4027 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004028 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004029 if (vim_strsize(buf) > maxlen)
4030 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 }
4032 }
4033 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004034 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035
4036 if (p_icon)
4037 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004038 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 if (*p_iconstring != NUL)
4040 {
4041#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004042 if (stl_syntax & STL_IN_ICON)
4043 {
4044 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004045 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004046
4047# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004048 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004049# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004050 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004051 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004052 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004053 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004054 set_string_option_direct((char_u *)"iconstring", -1,
4055 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004056 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 else
4058#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004059 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 else
4062 {
4063 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004064 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004065 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004066 p = gettail(curbuf->b_ffname);
4067 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004068 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004069 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 if (len > 100)
4071 {
4072 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004074 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004075 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004077 STRCPY(icon_str, p);
4078 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 }
4080 }
4081
Bram Moolenaar84a93082018-06-16 22:58:15 +02004082 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083
4084 if (mustset)
4085 resettitle();
4086}
4087
4088/*
4089 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4090 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004091 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 */
4093 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004094value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095{
4096 if ((str == NULL) != (*last == NULL)
4097 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4098 {
4099 vim_free(*last);
4100 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004101 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004103 mch_restore_title(
4104 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004105 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004107 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004109 return TRUE;
4110 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 }
4112 return FALSE;
4113}
4114
4115/*
4116 * Put current window title back (used after calling a shell)
4117 */
4118 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004119resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120{
4121 mch_settitle(lasttitle, lasticon);
4122}
Bram Moolenaarea408852005-06-25 22:49:46 +00004123
4124# if defined(EXITFREE) || defined(PROTO)
4125 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004126free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004127{
4128 vim_free(lasttitle);
4129 vim_free(lasticon);
4130}
4131# endif
4132
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004134#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004135
4136/*
4137 * Used for building in the status line.
4138 */
4139typedef struct
4140{
4141 char_u *stl_start;
4142 int stl_minwid;
4143 int stl_maxwid;
4144 enum {
4145 Normal,
4146 Empty,
4147 Group,
4148 Middle,
4149 Highlight,
4150 TabPage,
4151 Trunc
4152 } stl_type;
4153} stl_item_T;
4154
4155static size_t stl_items_len = 20; // Initial value, grows as needed.
4156static stl_item_T *stl_items = NULL;
4157static int *stl_groupitem = NULL;
4158static stl_hlrec_T *stl_hltab = NULL;
4159static stl_hlrec_T *stl_tabtab = NULL;
4160
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004162 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 * Return length of string in screen cells.
4164 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004165 * Normally works for window "wp", except when working for 'tabline' then it
4166 * is "curwin".
4167 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 * Items are drawn interspersed with the text that surrounds it
4169 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4170 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4171 *
4172 * If maxwidth is not zero, the string will be filled at any middle marker
4173 * or truncated if too long, fillchar is used for all whitespace.
4174 */
4175 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004176build_stl_str_hl(
4177 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004178 char_u *out, // buffer to write into != NameBuff
4179 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004180 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004181 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004182 int fillchar,
4183 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004184 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4185 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186{
Bram Moolenaar10772302019-01-20 18:25:54 +01004187 linenr_T lnum;
4188 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 char_u *p;
4190 char_u *s;
4191 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004192 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004194 win_T *save_curwin;
4195 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004196 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197#endif
4198 int empty_line;
4199 colnr_T virtcol;
4200 long l;
4201 long n;
4202 int prevchar_isflag;
4203 int prevchar_isitem;
4204 int itemisflag;
4205 int fillable;
4206 char_u *str;
4207 long num;
4208 int width;
4209 int itemcnt;
4210 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004211 int group_end_userhl;
4212 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004214#ifdef FEAT_EVAL
4215 int evaldepth;
4216#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 int minwid;
4218 int maxwid;
4219 int zeropad;
4220 char_u base;
4221 char_u opt;
4222#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004223 char_u buf_tmp[TMPLEN];
4224 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004225 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004226 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004227 int save_must_redraw = must_redraw;
4228 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004229 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004230
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004231 if (stl_items == NULL)
4232 {
4233 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4234 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004235
4236 // Allocate one more, because the last element is used to indicate the
4237 // end of the list.
4238 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4239 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004240 }
4241
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004242#ifdef FEAT_EVAL
4243 /*
4244 * When the format starts with "%!" then evaluate it as an expression and
4245 * use the result as the actual format string.
4246 */
4247 if (fmt[0] == '%' && fmt[1] == '!')
4248 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004249 typval_T tv;
4250
4251 tv.v_type = VAR_NUMBER;
4252 tv.vval.v_number = wp->w_id;
4253 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4254
Bram Moolenaar9530b582022-01-22 13:39:08 +00004255 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004256 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004257 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004258
4259 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004260 }
4261#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262
4263 if (fillchar == 0)
4264 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004265
Bram Moolenaar10772302019-01-20 18:25:54 +01004266 // The cursor in windows other than the current one isn't always
4267 // up-to-date, esp. because of autocommands and timers.
4268 lnum = wp->w_cursor.lnum;
4269 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4270 {
4271 lnum = wp->w_buffer->b_ml.ml_line_count;
4272 wp->w_cursor.lnum = lnum;
4273 }
4274
4275 // Get line & check if empty (cursorpos will show "0-1"). Note that
4276 // p will become invalid when getting another buffer line.
4277 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004278 empty_line = (*p == NUL);
4279
Bram Moolenaar10772302019-01-20 18:25:54 +01004280 // Get the byte value now, in case we need it below. This is more efficient
4281 // than making a copy of the line.
4282 len = STRLEN(p);
4283 if (wp->w_cursor.col > (colnr_T)len)
4284 {
4285 // Line may have changed since checking the cursor column, or the lnum
4286 // was adjusted above.
4287 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004288 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004289 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004290 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004291 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004292 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293
4294 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004295#ifdef FEAT_EVAL
4296 evaldepth = 0;
4297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 p = out;
4299 curitem = 0;
4300 prevchar_isflag = TRUE;
4301 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004302 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004304 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004305 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004306 size_t new_len = stl_items_len * 3 / 2;
4307 stl_item_T *new_items;
4308 int *new_groupitem;
4309 stl_hlrec_T *new_hlrec;
4310
4311 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4312 if (new_items == NULL)
4313 break;
4314 stl_items = new_items;
4315 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4316 if (new_groupitem == NULL)
4317 break;
4318 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004319 new_hlrec = vim_realloc(stl_hltab,
4320 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004321 if (new_hlrec == NULL)
4322 break;
4323 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004324 new_hlrec = vim_realloc(stl_tabtab,
4325 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004326 if (new_hlrec == NULL)
4327 break;
4328 stl_tabtab = new_hlrec;
4329 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004330 }
4331
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 if (*s != NUL && *s != '%')
4333 prevchar_isflag = prevchar_isitem = FALSE;
4334
4335 /*
4336 * Handle up to the next '%' or the end.
4337 */
4338 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4339 *p++ = *s++;
4340 if (*s == NUL || p + 1 >= out + outlen)
4341 break;
4342
4343 /*
4344 * Handle one '%' item.
4345 */
4346 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004347 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004348 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 if (*s == '%')
4350 {
4351 if (p + 1 >= out + outlen)
4352 break;
4353 *p++ = *s++;
4354 prevchar_isflag = prevchar_isitem = FALSE;
4355 continue;
4356 }
4357 if (*s == STL_MIDDLEMARK)
4358 {
4359 s++;
4360 if (groupdepth > 0)
4361 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004362 stl_items[curitem].stl_type = Middle;
4363 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 continue;
4365 }
4366 if (*s == STL_TRUNCMARK)
4367 {
4368 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004369 stl_items[curitem].stl_type = Trunc;
4370 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 continue;
4372 }
4373 if (*s == ')')
4374 {
4375 s++;
4376 if (groupdepth < 1)
4377 continue;
4378 groupdepth--;
4379
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004380 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 *p = NUL;
4382 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004383 if (curitem > stl_groupitem[groupdepth] + 1
4384 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004386 // remove group if all items are empty and highlight group
4387 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004388 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004389 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004390 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004391 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004392 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004393 group_start_userhl = group_end_userhl =
4394 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004395 break;
4396 }
4397 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004398 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004399 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004400 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004402 if (stl_items[n].stl_type == Highlight)
4403 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004404 }
4405 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004407 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 p = t;
4409 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004410 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004411 {
4412 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004413 if (stl_items[n].stl_type == Highlight)
4414 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004415 // adjust the start position of TabPage to the next
4416 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004417 if (stl_items[n].stl_type == TabPage)
4418 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 }
4421 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004422 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004424 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 if (has_mbyte)
4426 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004427 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004429 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 {
4431 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004432 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 }
4434 }
4435 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004436 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4437 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438
4439 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004440 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004442
4443 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004444 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004445 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446
Bram Moolenaarc667da52019-11-30 20:52:27 +01004447 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004448 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 {
LemonBoy57ff5262022-05-09 21:03:47 +01004450 // Minus one for the leading '<' added above.
4451 stl_items[l].stl_start -= n - 1;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004452 if (stl_items[l].stl_start < t)
4453 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 }
4455 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004456 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004458 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004459 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 if (n < 0)
4461 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004462 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 n = 0 - n;
4464 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004465 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 }
4467 else
4468 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004469 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004470 l = (n - l) * MB_CHAR2LEN(fillchar);
4471 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004473 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004475 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4476 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004478 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 }
4480 }
4481 continue;
4482 }
4483 minwid = 0;
4484 maxwid = 9999;
4485 zeropad = FALSE;
4486 l = 1;
4487 if (*s == '0')
4488 {
4489 s++;
4490 zeropad = TRUE;
4491 }
4492 if (*s == '-')
4493 {
4494 s++;
4495 l = -1;
4496 }
4497 if (VIM_ISDIGIT(*s))
4498 {
4499 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004500 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 minwid = 0;
4502 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004503 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004505 stl_items[curitem].stl_type = Highlight;
4506 stl_items[curitem].stl_start = p;
4507 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 s++;
4509 curitem++;
4510 continue;
4511 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004512 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4513 {
4514 if (*s == STL_TABCLOSENR)
4515 {
4516 if (minwid == 0)
4517 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004518 // %X ends the close label, go back to the previously
4519 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004520 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004521 if (stl_items[n].stl_type == TabPage
4522 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004523 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004524 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004525 break;
4526 }
4527 }
4528 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004529 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004530 minwid = - minwid;
4531 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004532 stl_items[curitem].stl_type = TabPage;
4533 stl_items[curitem].stl_start = p;
4534 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004535 s++;
4536 curitem++;
4537 continue;
4538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 if (*s == '.')
4540 {
4541 s++;
4542 if (VIM_ISDIGIT(*s))
4543 {
4544 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004545 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 maxwid = 50;
4547 }
4548 }
4549 minwid = (minwid > 50 ? 50 : minwid) * l;
4550 if (*s == '(')
4551 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004552 stl_groupitem[groupdepth++] = curitem;
4553 stl_items[curitem].stl_type = Group;
4554 stl_items[curitem].stl_start = p;
4555 stl_items[curitem].stl_minwid = minwid;
4556 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 s++;
4558 curitem++;
4559 continue;
4560 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004561#ifdef FEAT_EVAL
4562 // Denotes end of expanded %{} block
4563 if (*s == '}' && evaldepth > 0)
4564 {
4565 s++;
4566 evaldepth--;
4567 continue;
4568 }
4569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 if (vim_strchr(STL_ALL, *s) == NULL)
4571 {
4572 s++;
4573 continue;
4574 }
4575 opt = *s++;
4576
Bram Moolenaarc667da52019-11-30 20:52:27 +01004577 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 base = 'D';
4579 itemisflag = FALSE;
4580 fillable = TRUE;
4581 num = -1;
4582 str = NULL;
4583 switch (opt)
4584 {
4585 case STL_FILEPATH:
4586 case STL_FULLPATH:
4587 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004588 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004590 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 else
4592 {
4593 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004594 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4596 }
4597 trans_characters(NameBuff, MAXPATHL);
4598 if (opt != STL_FILENAME)
4599 str = NameBuff;
4600 else
4601 str = gettail(NameBuff);
4602 break;
4603
Bram Moolenaarc667da52019-11-30 20:52:27 +01004604 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004605 {
4606#ifdef FEAT_EVAL
4607 char_u *block_start = s - 1;
4608#endif
4609 int reevaluate = (*s == '%');
4610
4611 if (reevaluate)
4612 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 itemisflag = TRUE;
4614 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004615 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4616 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004618 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 break;
4620 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004621 if (reevaluate)
4622 p[-1] = 0; // remove the % at the end of %{% expr %}
4623 else
4624 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004627 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4628 "%d", curbuf->b_fnum);
4629 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4630 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4631 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004633 save_curbuf = curbuf;
4634 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004635 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 curwin = wp;
4637 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004638 // Visual mode is only valid in the current window.
4639 if (curwin != save_curwin)
4640 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641
Bram Moolenaar9530b582022-01-22 13:39:08 +00004642 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004644 curwin = save_curwin;
4645 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004646 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004647 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004648 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649
4650 if (str != NULL && *str != 0)
4651 {
4652 if (*skipdigits(str) == NUL)
4653 {
4654 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004655 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 itemisflag = FALSE;
4657 }
4658 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004659
4660 // If the output of the expression needs to be evaluated
4661 // replace the %{} block with the result of evaluation
4662 if (reevaluate && str != NULL && *str != 0
4663 && strchr((const char *)str, '%') != NULL
4664 && evaldepth < MAX_STL_EVAL_DEPTH)
4665 {
4666 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4667 size_t str_length = strlen((const char *)str);
4668 size_t fmt_length = strlen((const char *)s);
4669 size_t new_fmt_len = parsed_usefmt
4670 + str_length + fmt_length + 3;
4671 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4672 char_u *new_fmt_p = new_fmt;
4673
4674 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4675 + parsed_usefmt;
4676 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4677 + str_length;
4678 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4679 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4680 + fmt_length;
4681 *new_fmt_p = 0;
4682 new_fmt_p = NULL;
4683
4684 if (usefmt != fmt)
4685 vim_free(usefmt);
4686 VIM_CLEAR(str);
4687 usefmt = new_fmt;
4688 s = usefmt + parsed_usefmt;
4689 evaldepth++;
4690 continue;
4691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692#endif
4693 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 case STL_LINE:
4696 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4697 ? 0L : (long)(wp->w_cursor.lnum);
4698 break;
4699
4700 case STL_NUMLINES:
4701 num = wp->w_buffer->b_ml.ml_line_count;
4702 break;
4703
4704 case STL_COLUMN:
Bram Moolenaar24959102022-05-07 20:01:16 +01004705 num = (State & MODE_INSERT) == 0 && empty_line
4706 ? 0 : (int)wp->w_cursor.col + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 break;
4708
4709 case STL_VIRTCOL:
4710 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004711 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004712 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 if (opt == STL_VIRTCOL_ALT
Bram Moolenaar24959102022-05-07 20:01:16 +01004714 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0
4715 && empty_line ? 0 : (int)wp->w_cursor.col + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 break;
4717 num = (long)virtcol;
4718 break;
4719
4720 case STL_PERCENTAGE:
4721 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4722 (long)wp->w_buffer->b_ml.ml_line_count);
4723 break;
4724
4725 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004726 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004727 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 break;
4729
4730 case STL_ARGLISTSTAT:
4731 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004732 buf_tmp[0] = 0;
4733 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4734 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 break;
4736
4737 case STL_KEYMAP:
4738 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004739 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4740 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 break;
4742 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004743#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004744 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745#else
4746 num = 0;
4747#endif
4748 break;
4749
4750 case STL_BUFNO:
4751 num = wp->w_buffer->b_fnum;
4752 break;
4753
4754 case STL_OFFSET_X:
4755 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004756 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 case STL_OFFSET:
4758#ifdef FEAT_BYTEOFF
4759 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
Bram Moolenaar24959102022-05-07 20:01:16 +01004760 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0
4761 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line
4762 ? 0 : (int)wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763#endif
4764 break;
4765
4766 case STL_BYTEVAL_X:
4767 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004768 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004770 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 if (num == NL)
4772 num = 0;
4773 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4774 num = NL;
4775 break;
4776
4777 case STL_ROFLAG:
4778 case STL_ROFLAG_ALT:
4779 itemisflag = TRUE;
4780 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004781 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 break;
4783
4784 case STL_HELPFLAG:
4785 case STL_HELPFLAG_ALT:
4786 itemisflag = TRUE;
4787 if (wp->w_buffer->b_help)
4788 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004789 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 break;
4791
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 case STL_FILETYPE:
4793 if (*wp->w_buffer->b_p_ft != NUL
4794 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4795 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004796 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004797 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004798 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 }
4800 break;
4801
4802 case STL_FILETYPE_ALT:
4803 itemisflag = TRUE;
4804 if (*wp->w_buffer->b_p_ft != NUL
4805 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4806 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004807 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004808 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004809 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004811 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 }
4813 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814
Bram Moolenaar4033c552017-09-16 20:54:51 +02004815#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 case STL_PREVIEWFLAG:
4817 case STL_PREVIEWFLAG_ALT:
4818 itemisflag = TRUE;
4819 if (wp->w_p_pvw)
4820 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4821 : _("[Preview]"));
4822 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004823
4824 case STL_QUICKFIX:
4825 if (bt_quickfix(wp->w_buffer))
4826 str = (char_u *)(wp->w_llist_ref
4827 ? _(msg_loclist)
4828 : _(msg_qflist));
4829 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830#endif
4831
4832 case STL_MODIFIED:
4833 case STL_MODIFIED_ALT:
4834 itemisflag = TRUE;
4835 switch ((opt == STL_MODIFIED_ALT)
4836 + bufIsChanged(wp->w_buffer) * 2
4837 + (!wp->w_buffer->b_p_ma) * 4)
4838 {
4839 case 2: str = (char_u *)"[+]"; break;
4840 case 3: str = (char_u *)",+"; break;
4841 case 4: str = (char_u *)"[-]"; break;
4842 case 5: str = (char_u *)",-"; break;
4843 case 6: str = (char_u *)"[+-]"; break;
4844 case 7: str = (char_u *)",+-"; break;
4845 }
4846 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004847
4848 case STL_HIGHLIGHT:
4849 t = s;
4850 while (*s != '#' && *s != NUL)
4851 ++s;
4852 if (*s == '#')
4853 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004854 stl_items[curitem].stl_type = Highlight;
4855 stl_items[curitem].stl_start = p;
4856 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004857 curitem++;
4858 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004859 if (*s != NUL)
4860 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004861 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 }
4863
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004864 stl_items[curitem].stl_start = p;
4865 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 if (str != NULL && *str)
4867 {
4868 t = str;
4869 if (itemisflag)
4870 {
4871 if ((t[0] && t[1])
4872 && ((!prevchar_isitem && *t == ',')
4873 || (prevchar_isflag && *t == ' ')))
4874 t++;
4875 prevchar_isflag = TRUE;
4876 }
4877 l = vim_strsize(t);
4878 if (l > 0)
4879 prevchar_isitem = TRUE;
4880 if (l > maxwid)
4881 {
4882 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 if (has_mbyte)
4884 {
4885 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004886 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 }
4888 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 l -= byte2cells(*t++);
4890 if (p + 1 >= out + outlen)
4891 break;
4892 *p++ = '<';
4893 }
4894 if (minwid > 0)
4895 {
4896 for (; l < minwid && p + 1 < out + outlen; l++)
4897 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004898 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4900 *p++ = ' ';
4901 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004902 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 }
4904 minwid = 0;
4905 }
4906 else
4907 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004908 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004910 // Change a space by fillchar, unless fillchar is '-' and a
4911 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004912 if (fillable && *t == ' '
4913 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4914 MB_CHAR2BYTES(fillchar, p);
4915 else
4916 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 }
4918 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004919 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 }
4921 else if (num >= 0)
4922 {
4923 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4924 char_u nstr[20];
4925
4926 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004927 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 prevchar_isitem = TRUE;
4929 t = nstr;
4930 if (opt == STL_VIRTCOL_ALT)
4931 {
4932 *t++ = '-';
4933 minwid--;
4934 }
4935 *t++ = '%';
4936 if (zeropad)
4937 *t++ = '0';
4938 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004939 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 *t = 0;
4941
4942 for (n = num, l = 1; n >= nbase; n /= nbase)
4943 l++;
4944 if (opt == STL_VIRTCOL_ALT)
4945 l++;
4946 if (l > maxwid)
4947 {
4948 l += 2;
4949 n = l - maxwid;
4950 while (l-- > maxwid)
4951 num /= nbase;
4952 *t++ = '>';
4953 *t++ = '%';
4954 *t = t[-3];
4955 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004956 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4957 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 }
4959 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004960 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4961 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 p += STRLEN(p);
4963 }
4964 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004965 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966
4967 if (opt == STL_VIM_EXPR)
4968 vim_free(str);
4969
4970 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004971 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 curitem++;
4973 }
4974 *p = NUL;
4975 itemcnt = curitem;
4976
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004977#ifdef FEAT_EVAL
4978 if (usefmt != fmt)
4979 vim_free(usefmt);
4980#endif
4981
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 width = vim_strsize(out);
4983 if (maxwidth > 0 && width > maxwidth)
4984 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004985 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 l = 0;
4987 if (itemcnt == 0)
4988 s = out;
4989 else
4990 {
4991 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004992 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004994 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004995 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 break;
4997 }
4998 if (l == itemcnt)
4999 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005000 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005001 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 l = 0;
5003 }
5004 }
5005
5006 if (width - vim_strsize(s) >= maxwidth)
5007 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005008 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 if (has_mbyte)
5010 {
5011 s = out;
5012 width = 0;
5013 for (;;)
5014 {
5015 width += ptr2cells(s);
5016 if (width >= maxwidth)
5017 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005018 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005020 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005022 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 }
5024 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 s = out + maxwidth - 1;
5026 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005027 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 break;
5029 itemcnt = l;
5030 *s++ = '>';
5031 *s = 0;
5032 }
5033 else
5034 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 if (has_mbyte)
5036 {
5037 n = 0;
5038 while (width >= maxwidth)
5039 {
5040 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005041 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 }
5043 }
5044 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 n = width - maxwidth + 1;
5046 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005047 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 *s = '<';
5049
Bram Moolenaarc667da52019-11-30 20:52:27 +01005050 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 while (++width < maxwidth)
5052 {
5053 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005054 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 *s = NUL;
5056 }
5057
Bram Moolenaarc667da52019-11-30 20:52:27 +01005058 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 for (; l < itemcnt; l++)
5060 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005061 if (stl_items[l].stl_start - n >= s)
5062 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005064 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 }
5066 }
5067 width = maxwidth;
5068 }
5069 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5070 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005071 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005073 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 break;
5075 if (l < itemcnt)
5076 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005077 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5078 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005079 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005080 for (s = stl_items[l].stl_start; s < p;)
5081 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005083 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 width = maxwidth;
5085 }
5086 }
5087
Bram Moolenaarc667da52019-11-30 20:52:27 +01005088 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005089 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005091 *hltab = stl_hltab;
5092 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 for (l = 0; l < itemcnt; l++)
5094 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005095 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005097 sp->start = stl_items[l].stl_start;
5098 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005099 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 }
5101 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005102 sp->start = NULL;
5103 sp->userhl = 0;
5104 }
5105
Bram Moolenaarc667da52019-11-30 20:52:27 +01005106 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005107 if (tabtab != NULL)
5108 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005109 *tabtab = stl_tabtab;
5110 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005111 for (l = 0; l < itemcnt; l++)
5112 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005113 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005114 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005115 sp->start = stl_items[l].stl_start;
5116 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005117 sp++;
5118 }
5119 }
5120 sp->start = NULL;
5121 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 }
5123
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005124 // When inside update_screen we do not want redrawing a statusline, ruler,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005125 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005126 if (updating_screen)
5127 {
5128 must_redraw = save_must_redraw;
5129 curwin->w_redr_type = save_redr_type;
5130 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005131
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005132 // A user function may reset KeyTyped, restore it.
5133 KeyTyped = save_KeyTyped;
5134
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 return width;
5136}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005137#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005139#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5140 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005142 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5143 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 */
5145 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005146get_rel_pos(
5147 win_T *wp,
5148 char_u *buf,
5149 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005151 long above; // number of lines above window
5152 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153
Bram Moolenaarc667da52019-11-30 20:52:27 +01005154 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005155 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 above = wp->w_topline - 1;
5157#ifdef FEAT_DIFF
5158 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005159 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005160 above = 0; // All buffer lines are displayed and there is an
5161 // indication of filler lines, that can be considered
5162 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163#endif
5164 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5165 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005166 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5167 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005169 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005171 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 ? (int)(above / ((above + below) / 100L))
5173 : (int)(above * 100L / (above + below)));
5174}
5175#endif
5176
5177/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005178 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 * Return TRUE if it was appended.
5180 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005181 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005182append_arg_number(
5183 win_T *wp,
5184 char_u *buf,
5185 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005186 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187{
5188 char_u *p;
5189
Bram Moolenaarc667da52019-11-30 20:52:27 +01005190 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 return FALSE;
5192
Bram Moolenaarc667da52019-11-30 20:52:27 +01005193 p = buf + STRLEN(buf); // go to the end of the buffer
5194 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 return FALSE;
5196 *p++ = ' ';
5197 *p++ = '(';
5198 if (add_file)
5199 {
5200 STRCPY(p, "file ");
5201 p += 5;
5202 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005203 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5204 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5206 return TRUE;
5207}
5208
5209/*
5210 * If fname is not a full path, make it a full path.
5211 * Returns pointer to allocated memory (NULL for failure).
5212 */
5213 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005214fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215{
5216 /*
5217 * Force expanding the path always for Unix, because symbolic links may
5218 * mess up the full path name, even though it starts with a '/'.
5219 * Also expand when there is ".." in the file name, try to remove it,
5220 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005221 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 * For MS-Windows also expand names like "longna~1" to "longname".
5223 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005224#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 return FullName_save(fname, TRUE);
5226#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005227 if (!vim_isAbsName(fname)
5228 || strstr((char *)fname, "..") != NULL
5229 || strstr((char *)fname, "//") != NULL
5230# ifdef BACKSLASH_IN_FILENAME
5231 || strstr((char *)fname, "\\\\") != NULL
5232# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005233# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005235# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 )
5237 return FullName_save(fname, FALSE);
5238
5239 fname = vim_strsave(fname);
5240
Bram Moolenaar9b942202007-10-03 12:31:33 +00005241# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005242 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005243 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005244# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245
5246 return fname;
5247#endif
5248}
5249
5250/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005251 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5252 * "*ffname" becomes a pointer to allocated memory (or NULL).
5253 * When resolving a link both "*sfname" and "*ffname" will point to the same
5254 * allocated memory.
5255 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005256 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005259fname_expand(
5260 buf_T *buf UNUSED,
5261 char_u **ffname,
5262 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005264 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005266 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005268 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269
5270#ifdef FEAT_SHORTCUT
5271 if (!buf->b_p_bin)
5272 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005273 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005275 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005276 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005277 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 {
5279 vim_free(*ffname);
5280 *ffname = rfname;
5281 *sfname = rfname;
5282 }
5283 }
5284#endif
5285}
5286
5287/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 * Open a window for a number of buffers.
5289 */
5290 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005291ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292{
5293 buf_T *buf;
5294 win_T *wp, *wpnext;
5295 int split_ret = OK;
5296 int p_ea_save;
5297 int open_wins = 0;
5298 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005299 int count; // Maximum number of windows to open.
5300 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005301 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005302 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303
Bram Moolenaarc667da52019-11-30 20:52:27 +01005304 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 count = 9999;
5306 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005307 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5309 all = FALSE;
5310 else
5311 all = TRUE;
5312
5313 setpcmark();
5314
5315#ifdef FEAT_GUI
5316 need_mouse_correct = TRUE;
5317#endif
5318
5319 /*
5320 * Close superfluous windows (two windows for the same buffer).
5321 * Also close windows that are not full-width.
5322 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005323 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005324 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005325 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005327 tpnext = curtab->tp_next;
5328 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005330 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005331 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005332 || ((cmdmod.cmod_split & WSP_VERT)
5333 ? wp->w_height + wp->w_status_height < Rows - p_ch
5334 - tabline_height()
5335 : wp->w_width != Columns)
5336 || (had_tab > 0 && wp != firstwin))
5337 && !ONE_WINDOW
5338 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5339 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005340 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005341 if (win_close(wp, FALSE) == FAIL)
5342 break;
5343 // Just in case an autocommand does something strange with
5344 // windows: start all over...
5345 wpnext = firstwin;
5346 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005347 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005348 }
5349 else
5350 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005352
Bram Moolenaarc667da52019-11-30 20:52:27 +01005353 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005354 if (had_tab == 0 || tpnext == NULL)
5355 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005356 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 }
5358
5359 /*
5360 * Go through the buffer list. When a buffer doesn't have a window yet,
5361 * open one. Otherwise move the window to the right position.
5362 * Watch out for autocommands that delete buffers or windows!
5363 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005364 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5369 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005370 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5372 continue;
5373
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005374 if (had_tab != 0)
5375 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005376 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005377 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005378 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005379 else
5380 wp = NULL;
5381 }
5382 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005383 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005384 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005385 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005386 if (wp->w_buffer == buf)
5387 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005388 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005389 if (wp != NULL)
5390 win_move_after(wp, curwin);
5391 }
5392
5393 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005395 bufref_T bufref;
5396
5397 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005398
Bram Moolenaarc667da52019-11-30 20:52:27 +01005399 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005401 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5403 ++open_wins;
5404 p_ea = p_ea_save;
5405 if (split_ret == FAIL)
5406 continue;
5407
Bram Moolenaarc667da52019-11-30 20:52:27 +01005408 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005411 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005413 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 break;
5416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 if (swap_exists_action == SEA_QUIT)
5418 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005419#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005420 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005421
Bram Moolenaarc667da52019-11-30 20:52:27 +01005422 // Reset the error/interrupt/exception state here so that
5423 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005424 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005425#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005426
Bram Moolenaarc667da52019-11-30 20:52:27 +01005427 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 win_close(curwin, TRUE);
5429 --open_wins;
5430 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005431 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005432
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005433#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005434 // Restore the error/interrupt/exception state if not
5435 // discarded by a new aborting error, interrupt, or uncaught
5436 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005437 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 }
5440 else
5441 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 }
5443
5444 ui_breakcheck();
5445 if (got_int)
5446 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005447 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 break;
5449 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005450#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005451 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005452 if (aborting())
5453 break;
5454#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005455 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005456 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005457 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005460 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462
5463 /*
5464 * Close superfluous windows.
5465 */
5466 for (wp = lastwin; open_wins > count; )
5467 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005468 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 if (!win_valid(wp))
5471 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005472 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 wp = lastwin;
5474 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005475 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005477 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 --open_wins;
5479 wp = lastwin;
5480 }
5481 else
5482 {
5483 wp = wp->w_prev;
5484 if (wp == NULL)
5485 break;
5486 }
5487 }
5488}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005491static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005492
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493/*
5494 * do_modelines() - process mode lines for the current file
5495 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005496 * "flags" can be:
5497 * OPT_WINONLY only set options local to window
5498 * OPT_NOWIN don't set options local to window
5499 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 * Returns immediately if the "ml" option isn't set.
5501 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005503do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005505 linenr_T lnum;
5506 int nmlines;
5507 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508
5509 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5510 return;
5511
Bram Moolenaarc667da52019-11-30 20:52:27 +01005512 // Disallow recursive entry here. Can happen when executing a modeline
5513 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 if (entered)
5515 return;
5516
5517 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005518 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005520 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 nmlines = 0;
5522
Hu Jialun9dcd3492021-08-28 20:42:50 +02005523 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005525 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 nmlines = 0;
5527 --entered;
5528}
5529
Bram Moolenaarc667da52019-11-30 20:52:27 +01005530#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531
5532/*
5533 * chk_modeline() - check a single line for a mode string
5534 * Return FAIL if an error encountered.
5535 */
5536 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005537chk_modeline(
5538 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005539 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540{
5541 char_u *s;
5542 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005543 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 int prev;
5545 int vers;
5546 int end;
5547 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005548 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005549
Bram Moolenaare31ee862020-01-07 20:59:34 +01005550 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551
5552 prev = -1;
5553 for (s = ml_get(lnum); *s != NUL; ++s)
5554 {
5555 if (prev == -1 || vim_isspace(prev))
5556 {
5557 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5558 || STRNCMP(s, "vi:", (size_t)3) == 0)
5559 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005560 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005561 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 {
5563 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5564 e = s + 4;
5565 else
5566 e = s + 3;
5567 vers = getdigits(&e);
5568 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005569 && (s[0] != 'V'
5570 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 && (s[3] == ':'
5572 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5573 || (VIM_VERSION_100 < vers && s[3] == '<')
5574 || (VIM_VERSION_100 > vers && s[3] == '>')
5575 || (VIM_VERSION_100 == vers && s[3] == '=')))
5576 break;
5577 }
5578 }
5579 prev = *s;
5580 }
5581
5582 if (*s)
5583 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005584 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 ++s;
5586 while (s[-1] != ':');
5587
Bram Moolenaarc667da52019-11-30 20:52:27 +01005588 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589 if (linecopy == NULL)
5590 return FAIL;
5591
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005592 // prepare for emsg()
5593 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005594 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595
5596 end = FALSE;
5597 while (end == FALSE)
5598 {
5599 s = skipwhite(s);
5600 if (*s == NUL)
5601 break;
5602
5603 /*
5604 * Find end of set command: ':' or end of line.
5605 * Skip over "\:", replacing it with ":".
5606 */
5607 for (e = s; *e != ':' && *e != NUL; ++e)
5608 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005609 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 if (*e == NUL)
5611 end = TRUE;
5612
5613 /*
5614 * If there is a "set" command, require a terminating ':' and
5615 * ignore the stuff after the ':'.
5616 * "vi:set opt opt opt: foo" -- foo not interpreted
5617 * "vi:opt opt opt: foo" -- foo interpreted
5618 * Accept "se" for compatibility with Elvis.
5619 */
5620 if (STRNCMP(s, "set ", (size_t)4) == 0
5621 || STRNCMP(s, "se ", (size_t)3) == 0)
5622 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005623 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 break;
5625 end = TRUE;
5626 s = vim_strchr(s, ' ') + 1;
5627 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005628 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629
Bram Moolenaarc667da52019-11-30 20:52:27 +01005630 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005632 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005633
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005634 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005635 current_sctx.sc_version = 1;
5636#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005637 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005638 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005639 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005641
Bram Moolenaar5958f952018-11-20 04:25:21 +01005642 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005643 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005644
Bram Moolenaara3227e22006-03-08 21:32:40 +00005645 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005646
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005647 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005648 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005649 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 break;
5651 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005652 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653 }
5654
Bram Moolenaare31ee862020-01-07 20:59:34 +01005655 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005656 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 vim_free(linecopy);
5658 }
5659 return retval;
5660}
5661
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005662/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005663 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5664 */
5665 int
5666bt_normal(buf_T *buf)
5667{
5668 return buf != NULL && buf->b_p_bt[0] == NUL;
5669}
5670
Bram Moolenaar113e1072019-01-20 15:30:40 +01005671#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005672/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005673 * Return TRUE if "buf" is the quickfix buffer.
5674 */
5675 int
5676bt_quickfix(buf_T *buf)
5677{
5678 return buf != NULL && buf->b_p_bt[0] == 'q';
5679}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005680#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005681
Bram Moolenaar113e1072019-01-20 15:30:40 +01005682#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005683/*
5684 * Return TRUE if "buf" is a terminal buffer.
5685 */
5686 int
5687bt_terminal(buf_T *buf)
5688{
5689 return buf != NULL && buf->b_p_bt[0] == 't';
5690}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005691#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005692
5693/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005694 * Return TRUE if "buf" is a help buffer.
5695 */
5696 int
5697bt_help(buf_T *buf)
5698{
5699 return buf != NULL && buf->b_help;
5700}
5701
5702/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005703 * Return TRUE if "buf" is a prompt buffer.
5704 */
5705 int
5706bt_prompt(buf_T *buf)
5707{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005708 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5709}
5710
Dominique Pelle748b3082022-01-08 12:41:16 +00005711#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005712/*
5713 * Return TRUE if "buf" is a buffer for a popup window.
5714 */
5715 int
5716bt_popup(buf_T *buf)
5717{
5718 return buf != NULL && buf->b_p_bt != NULL
5719 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005720}
Dominique Pelle748b3082022-01-08 12:41:16 +00005721#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005722
5723/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005724 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5725 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005726 */
5727 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005728bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005729{
5730 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5731 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005732 || buf->b_p_bt[0] == 't'
5733 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005734}
5735
Dominique Pelle748b3082022-01-08 12:41:16 +00005736#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005737/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005738 * Return TRUE if "buf" has 'buftype' set to "nofile".
5739 */
5740 int
5741bt_nofile(buf_T *buf)
5742{
5743 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5744}
Dominique Pelle748b3082022-01-08 12:41:16 +00005745#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005746
5747/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005748 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5749 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005750 */
5751 int
5752bt_dontwrite(buf_T *buf)
5753{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005754 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005755 || buf->b_p_bt[0] == 't'
5756 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005757}
5758
Bram Moolenaar113e1072019-01-20 15:30:40 +01005759#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005760 int
5761bt_dontwrite_msg(buf_T *buf)
5762{
5763 if (bt_dontwrite(buf))
5764 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005765 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005766 return TRUE;
5767 }
5768 return FALSE;
5769}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005770#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005771
5772/*
5773 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5774 * and 'bufhidden'.
5775 */
5776 int
5777buf_hide(buf_T *buf)
5778{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005779 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005780 switch (buf->b_p_bh[0])
5781 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005782 case 'u': // "unload"
5783 case 'w': // "wipe"
5784 case 'd': return FALSE; // "delete"
5785 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005786 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005787 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005788}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789
5790/*
5791 * Return special buffer name.
5792 * Returns NULL when the buffer has a normal file name.
5793 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005794 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005795buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005797#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005799 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005800 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005801 * Differentiate between the quickfix and location list buffers using
5802 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005803 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005804 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005805 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005806 else
5807 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005808 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005810
Bram Moolenaarc667da52019-11-30 20:52:27 +01005811 // There is no _file_ when 'buftype' is "nofile", b_sfname
5812 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005813 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005815#ifdef FEAT_TERMINAL
5816 if (buf->b_term != NULL)
5817 return term_get_status_text(buf->b_term);
5818#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005819 if (buf->b_fname != NULL)
5820 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005821#ifdef FEAT_JOB_CHANNEL
5822 if (bt_prompt(buf))
5823 return (char_u *)_("[Prompt]");
5824#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005825#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005826 if (bt_popup(buf))
5827 return (char_u *)_("[Popup]");
5828#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005829 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005831
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005833 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 return NULL;
5835}
5836
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005838 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5839 */
5840 char_u *
5841buf_get_fname(buf_T *buf)
5842{
5843 if (buf->b_fname == NULL)
5844 return (char_u *)_("[No Name]");
5845 return buf->b_fname;
5846}
5847
5848/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5850 */
5851 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005852set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853{
5854 if (on != curbuf->b_p_bl)
5855 {
5856 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 if (on)
5858 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5859 else
5860 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861 }
5862}
5863
5864/*
5865 * Read the file for "buf" again and check if the contents changed.
5866 * Return TRUE if it changed or this could not be checked.
5867 */
5868 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005869buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870{
5871 buf_T *newbuf;
5872 int differ = TRUE;
5873 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 exarg_T ea;
5876
Bram Moolenaarc667da52019-11-30 20:52:27 +01005877 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5879 if (newbuf == NULL)
5880 return TRUE;
5881
Bram Moolenaarc667da52019-11-30 20:52:27 +01005882 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 if (prep_exarg(&ea, buf) == FAIL)
5884 {
5885 wipe_buffer(newbuf, FALSE);
5886 return TRUE;
5887 }
5888
Bram Moolenaarc667da52019-11-30 20:52:27 +01005889 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891
Bram Moolenaar4770d092006-01-12 23:22:24 +00005892 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 && readfile(buf->b_ffname, buf->b_fname,
5894 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5895 &ea, READ_NEW | READ_DUMMY) == OK)
5896 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005897 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5899 {
5900 differ = FALSE;
5901 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5902 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5903 {
5904 differ = TRUE;
5905 break;
5906 }
5907 }
5908 }
5909 vim_free(ea.cmd);
5910
Bram Moolenaarc667da52019-11-30 20:52:27 +01005911 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913
Bram Moolenaarc667da52019-11-30 20:52:27 +01005914 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 wipe_buffer(newbuf, FALSE);
5916
5917 return differ;
5918}
5919
5920/*
5921 * Wipe out a buffer and decrement the last buffer number if it was used for
5922 * this buffer. Call this to wipe out a temp buffer that does not contain any
5923 * marks.
5924 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005926wipe_buffer(
5927 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005928 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929{
5930 if (buf->b_fnum == top_file_num - 1)
5931 --top_file_num;
5932
Bram Moolenaarc667da52019-11-30 20:52:27 +01005933 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005934 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005935
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005936 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005937
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005939 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940}