blob: 50aa9e8cc1b03e4cf5c6a6a74311601478dfd512 [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 Moolenaardce7c912013-11-05 17:40:52 +0100293#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100294 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100295#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100298 // Set/reset the Changed flag first, autocmds may change the buffer.
299 // Apply the automatic commands, before processing the modelines.
300 // So the modelines have priority over autocommands.
301 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100302 // When reading stdin, the buffer contents always needs writing, so set
303 // the changed flag. Unless in readonly mode: "ls | gview -".
304 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000305 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100306 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100307#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000310 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100312 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200313 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100314 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315
Bram Moolenaarc667da52019-11-30 20:52:27 +0100316 // Set last_changedtick to avoid triggering a TextChanged autocommand right
317 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100318 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100319 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100320 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100321
Bram Moolenaarc667da52019-11-30 20:52:27 +0100322 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323#ifdef FEAT_EVAL
324 if (aborting())
325#else
326 if (got_int)
327#endif
328 curbuf->b_flags |= BF_READERR;
329
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000330#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100331 // Need to update automatic folding. Do this before the autocommands,
332 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000333 foldUpdateAll(curwin);
334#endif
335
Bram Moolenaarc667da52019-11-30 20:52:27 +0100336 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 if (!(curwin->w_valid & VALID_TOPLINE))
338 {
339 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100344#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100346#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348#endif
349
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100350 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100352 // The autocommands may have changed the current buffer. Apply the
353 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200354 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {
356 aco_save_T aco;
357
Bram Moolenaarc667da52019-11-30 20:52:27 +0100358 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200359 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000360 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
362
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100363 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100364#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100365 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
366 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100367#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100368 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370
Bram Moolenaarc667da52019-11-30 20:52:27 +0100371 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 aucmd_restbuf(&aco);
373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 }
375
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 return retval;
377}
378
379/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200380 * Store "buf" in "bufref" and set the free count.
381 */
382 void
383set_bufref(bufref_T *bufref, buf_T *buf)
384{
385 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200386 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200387 bufref->br_buf_free_count = buf_free_count;
388}
389
390/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200391 * Return TRUE if "bufref->br_buf" points to the same buffer as when
392 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200393 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200394 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
395 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200396 */
397 int
398bufref_valid(bufref_T *bufref)
399{
400 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200401 ? TRUE : buf_valid(bufref->br_buf)
402 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200403}
404
405/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200407 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 */
409 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100410buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411{
412 buf_T *bp;
413
Bram Moolenaarc667da52019-11-30 20:52:27 +0100414 // Assume that we more often have a recent buffer, start with the last
415 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200416 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 if (bp == buf)
418 return TRUE;
419 return FALSE;
420}
421
422/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200423 * A hash table used to quickly lookup a buffer by its number.
424 */
425static hashtab_T buf_hashtab;
426
427 static void
428buf_hashtab_add(buf_T *buf)
429{
430 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
431 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000432 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200433}
434
435 static void
436buf_hashtab_remove(buf_T *buf)
437{
438 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
439
440 if (!HASHITEM_EMPTY(hi))
441 hash_remove(&buf_hashtab, hi);
442}
443
Bram Moolenaar94f01952018-09-01 15:30:03 +0200444/*
445 * Return TRUE when buffer "buf" can be unloaded.
446 * Give an error message and return FALSE when the buffer is locked or the
447 * screen is being redrawn and the buffer is in a window.
448 */
449 static int
450can_unload_buffer(buf_T *buf)
451{
452 int can_unload = !buf->b_locked;
453
454 if (can_unload && updating_screen)
455 {
456 win_T *wp;
457
458 FOR_ALL_WINDOWS(wp)
459 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200460 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200461 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200462 break;
463 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200464 }
465 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000466 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200467 return can_unload;
468}
Bram Moolenaara997b452018-04-17 23:24:06 +0200469
Bram Moolenaar480778b2016-07-14 22:09:39 +0200470/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 * Close the link to a buffer.
472 * "action" is used when there is no longer a window for the buffer.
473 * It can be:
474 * 0 buffer becomes hidden
475 * DOBUF_UNLOAD buffer is unloaded
476 * DOBUF_DELETE buffer is unloaded and removed from buffer list
477 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200478 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 * When doing all but the first one on the current buffer, the caller should
480 * get a new buffer very soon!
481 *
482 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100483 *
484 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
485 * cause there to be only one window with this buffer. e.g. when ":quit" is
486 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100487 *
488 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100489 *
490 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100492 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100493close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100494 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100495 buf_T *buf,
496 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100497 int abort_if_last,
498 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100501 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200502 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100503 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200504 win_T *the_curwin = curwin;
505 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200507 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
508 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
Bram Moolenaarcee52202020-03-11 14:19:58 +0100510 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100511
512 // Force unloading or deleting when 'bufhidden' says so.
513 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
514 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100515 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200516 {
517 del_buf = TRUE;
518 unload_buf = TRUE;
519 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100520 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200521 {
522 del_buf = TRUE;
523 unload_buf = TRUE;
524 wipe_buf = TRUE;
525 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100526 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200527 unload_buf = TRUE;
528
Bram Moolenaar94053a52017-08-01 21:44:33 +0200529#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200530 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200531 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100532 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200533 if (term_job_running(buf->b_term))
534 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200535 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200536 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200537 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100538 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200539
Bram Moolenaarc667da52019-11-30 20:52:27 +0100540 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200541 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200542 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200543 else
544 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100545 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200546 del_buf = FALSE;
547 unload_buf = FALSE;
548 }
549 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100550 else if (buf->b_p_bh[0] == 'h' && !del_buf)
551 {
552 // Hide a terminal buffer.
553 unload_buf = FALSE;
554 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200555 else
556 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100557 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200558 del_buf = TRUE;
559 unload_buf = TRUE;
560 wipe_buf = TRUE;
561 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100562 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200563 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200564#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
Bram Moolenaarc667da52019-11-30 20:52:27 +0100566 // Disallow deleting the buffer when it is locked (already being closed or
567 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200568 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100569 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200570
Bram Moolenaarc667da52019-11-30 20:52:27 +0100571 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200572 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100574 // Set b_last_cursor when closing the last window for the buffer.
575 // Remember the last cursor position and window options of the buffer.
576 // This used to be only for the current window, but then options like
577 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 if (buf->b_nwindows == 1)
579 set_last_cursor(win);
580 buflist_setfpos(buf, win,
581 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
582 win->w_cursor.col, TRUE);
583 }
584
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200585 set_bufref(&bufref, buf);
586
Bram Moolenaarc667da52019-11-30 20:52:27 +0100587 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 if (buf->b_nwindows == 1)
589 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200590 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100591 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200592 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
593 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200594 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100595 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100596 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200597aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000598 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100599 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100600 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200601 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100602 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200603 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100604 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200605 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
Bram Moolenaarc667da52019-11-30 20:52:27 +0100607 // When the buffer becomes hidden, but is not unloaded, trigger
608 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 if (!unload_buf)
610 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200611 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100612 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200613 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
614 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200615 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100616 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200617 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200618 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100619 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200620 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100621 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200622 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100624#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100625 // autocmds may abort script processing
626 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100627 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100628#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200630
Bram Moolenaarc667da52019-11-30 20:52:27 +0100631 // If the buffer was in curwin and the window has changed, go back to that
632 // window, if it still exists. This avoids that ":edit x" triggering a
633 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200634 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
635 {
636 block_autocmds();
637 goto_tabpage_win(the_curtab, the_curwin);
638 unblock_autocmds();
639 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200640
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642
Bram Moolenaarc667da52019-11-30 20:52:27 +0100643 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 if (buf->b_nwindows > 0)
645 --buf->b_nwindows;
646
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100647#ifdef FEAT_DIFF
648 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100649 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100650#endif
651
Bram Moolenaarc667da52019-11-30 20:52:27 +0100652 // Return when a window is displaying the buffer or when it's not
653 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100655 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656
Bram Moolenaarc667da52019-11-30 20:52:27 +0100657 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 if (buf->b_ffname == NULL)
659 del_buf = TRUE;
660
Bram Moolenaarc667da52019-11-30 20:52:27 +0100661 // When closing the current buffer stop Visual mode before freeing
662 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200663 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200664#if defined(EXITFREE)
665 && !entered_free_all_mem
666#endif
667 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200668 end_visual_mode();
669
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100670 // Free all things allocated for this buffer.
671 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
672 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100673 // Remember if we are closing the current buffer. Restore the number of
674 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 is_curbuf = (buf == curbuf);
676 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100678 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100679 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100680 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681
Bram Moolenaarc667da52019-11-30 20:52:27 +0100682 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200683 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100684 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100685#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100686 // autocmds may abort script processing
687 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100688 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100691 // It's possible that autocommands change curbuf to the one being deleted.
692 // This might cause the previous curbuf to be deleted unexpectedly. But
693 // in some cases it's OK to delete the curbuf, because a new one is
694 // obtained anyway. Therefore only return if curbuf changed to the
695 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100697 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200698
Bram Moolenaar4033c552017-09-16 20:54:51 +0200699 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100700 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200701
Bram Moolenaarc667da52019-11-30 20:52:27 +0100702 // Autocommands may have opened or closed windows for this buffer.
703 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200704 if (buf->b_nwindows > 0)
705 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 /*
708 * Remove the buffer from the list.
709 */
710 if (wipe_buf)
711 {
Bram Moolenaar347538f2022-03-26 16:28:06 +0000712 // Do not wipe out the buffer if it is used in a window.
713 if (buf->b_nwindows > 0)
714 return FALSE;
715
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200716 if (action == DOBUF_WIPE_REUSE)
717 {
718 // we can re-use this buffer number, store it
719 if (buf_reuse.ga_itemsize == 0)
720 ga_init2(&buf_reuse, sizeof(int), 50);
721 if (ga_grow(&buf_reuse, 1) == OK)
722 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
723 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200724 if (buf->b_sfname != buf->b_ffname)
725 VIM_CLEAR(buf->b_sfname);
726 else
727 buf->b_sfname = NULL;
728 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 if (buf->b_prev == NULL)
730 firstbuf = buf->b_next;
731 else
732 buf->b_prev->b_next = buf->b_next;
733 if (buf->b_next == NULL)
734 lastbuf = buf->b_prev;
735 else
736 buf->b_next->b_prev = buf->b_prev;
737 free_buffer(buf);
738 }
739 else
740 {
741 if (del_buf)
742 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100743 // Free all internal variables and reset option values, to make
744 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 free_buffer_stuff(buf, TRUE);
746
Bram Moolenaarc667da52019-11-30 20:52:27 +0100747 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
749
Bram Moolenaarc667da52019-11-30 20:52:27 +0100750 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 buf->b_p_initialized = FALSE;
752 }
753 buf_clear_file(buf);
754 if (del_buf)
755 buf->b_p_bl = FALSE;
756 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100757 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100758 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759}
760
761/*
762 * Make buffer not contain a file.
763 */
764 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100765buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
767 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200768 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 buf->b_p_eol = TRUE;
771 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000773 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100775 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776#ifdef FEAT_NETBEANS_INTG
777 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778#endif
779}
780
781/*
782 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200783 * the file. Careful: get here with "curwin" NULL when exiting.
784 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100785 * BFA_DEL buffer is going to be deleted
786 * BFA_WIPE buffer is going to be wiped out
787 * BFA_KEEP_UNDO do not free undo information
788 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100791buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200794 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200795 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200796 win_T *the_curwin = curwin;
797 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798
Bram Moolenaarc667da52019-11-30 20:52:27 +0100799 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200800 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100801 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200802 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200803 if (buf->b_ml.ml_mfp != NULL)
804 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200805 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
806 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200807 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100808 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200809 return;
810 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200811 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200813 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
814 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200815 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100816 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 return;
818 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200819 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200821 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
822 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200823 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100824 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 return;
826 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200827 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100828 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200829
Bram Moolenaarc667da52019-11-30 20:52:27 +0100830 // If the buffer was in curwin and the window has changed, go back to that
831 // window, if it still exists. This avoids that ":edit x" triggering a
832 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200833 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
834 {
835 block_autocmds();
836 goto_tabpage_win(the_curtab, the_curwin);
837 unblock_autocmds();
838 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200839
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100840#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100841 // autocmds may abort script processing
842 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100844#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100846 // It's possible that autocommands change curbuf to the one being deleted.
847 // This might cause curbuf to be deleted unexpectedly. But in some cases
848 // it's OK to delete the curbuf, because a new one is obtained anyway.
849 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 if (buf == curbuf && !is_curbuf)
851 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100853 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200855#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100856 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200857 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100858 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200859#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000860
861#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100862 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000863 {
864 win_T *win;
865 tabpage_T *tp;
866
867 FOR_ALL_TAB_WINDOWS(tp, win)
868 if (win->w_buffer == buf)
869 clearFolding(win);
870 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000871#endif
872
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873#ifdef FEAT_TCL
874 tcl_buffer_free(buf);
875#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100876 ml_close(buf, TRUE); // close and delete the memline/memfile
877 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200878 if ((flags & BFA_KEEP_UNDO) == 0)
879 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100880 u_blockfree(buf); // free the memory allocated for undo
881 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100884 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100886#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100887 clear_buf_prop_types(buf);
888#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100889 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890}
891
892/*
893 * Free a buffer structure and the things it contains related to the buffer
894 * itself (not the file, that must have been done already).
895 */
896 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100897free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200899 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200901#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100902 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200903 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200904 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200905 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200906#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200907#ifdef FEAT_LUA
908 lua_buffer_free(buf);
909#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000910#ifdef FEAT_MZSCHEME
911 mzscheme_buffer_free(buf);
912#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913#ifdef FEAT_PERL
914 perl_buf_free(buf);
915#endif
916#ifdef FEAT_PYTHON
917 python_buffer_free(buf);
918#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200919#ifdef FEAT_PYTHON3
920 python3_buffer_free(buf);
921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922#ifdef FEAT_RUBY
923 ruby_buffer_free(buf);
924#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200925#ifdef FEAT_JOB_CHANNEL
926 channel_buffer_free(buf);
927#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200928#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200929 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200930#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200931#ifdef FEAT_JOB_CHANNEL
932 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200933 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200934 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200935#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200936
937 buf_hashtab_remove(buf);
938
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200939 aubuflocal_remove(buf);
940
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200941 if (autocmd_busy)
942 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100943 // Do not free the buffer structure while autocommands are executing,
944 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200945 buf->b_next = au_pending_free_buf;
946 au_pending_free_buf = buf;
947 }
948 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100949 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200950 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100951 if (curbuf == buf)
952 curbuf = NULL; // make clear it's not to be used
953 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954}
955
956/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100957 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100958 */
959 static void
960init_changedtick(buf_T *buf)
961{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100962 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100963
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100964 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
965 di->di_tv.v_type = VAR_NUMBER;
966 di->di_tv.v_lock = VAR_FIXED;
967 di->di_tv.vval.v_number = 0;
968
Bram Moolenaar92769c32017-02-25 15:41:37 +0100969#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100970 STRCPY(buf->b_ct_di.di_key, "changedtick");
971 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100972#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100973}
974
975/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
977 */
978 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100979free_buffer_stuff(
980 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100981 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982{
983 if (free_options)
984 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100985 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200987#ifdef FEAT_SPELL
988 ga_clear(&buf->b_s.b_langp);
989#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 }
991#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100992 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100993 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100994
Bram Moolenaarc667da52019-11-30 20:52:27 +0100995 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100996 hash_init(&buf->b_vars->dv_hashtab);
997 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100998 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100999 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001002 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001004 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001006#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001007 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001008#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001009 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1010 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001011 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012}
1013
1014/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001015 * Free one wininfo_T.
1016 */
1017 void
1018free_wininfo(wininfo_T *wip)
1019{
1020 if (wip->wi_optset)
1021 {
1022 clear_winopt(&wip->wi_opt);
1023#ifdef FEAT_FOLDING
1024 deleteFoldRecurse(&wip->wi_folds);
1025#endif
1026 }
1027 vim_free(wip);
1028}
1029
1030/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 * Free the b_wininfo list for buffer "buf".
1032 */
1033 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001034clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035{
1036 wininfo_T *wip;
1037
1038 while (buf->b_wininfo != NULL)
1039 {
1040 wip = buf->b_wininfo;
1041 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001042 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 }
1044}
1045
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046/*
1047 * Go to another buffer. Handles the result of the ATTENTION dialog.
1048 */
1049 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001050goto_buffer(
1051 exarg_T *eap,
1052 int start,
1053 int dir,
1054 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001056 bufref_T old_curbuf;
Bram Moolenaar188639d2022-04-04 16:57:21 +01001057 int save_sea = swap_exists_action;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001058
1059 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060
Bram Moolenaar188639d2022-04-04 16:57:21 +01001061 if (swap_exists_action == SEA_NONE)
1062 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1064 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1066 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001067#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001068 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001069
Bram Moolenaarc667da52019-11-30 20:52:27 +01001070 // Reset the error/interrupt/exception state here so that
1071 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001073#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001074
Bram Moolenaarc667da52019-11-30 20:52:27 +01001075 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 win_close(curwin, TRUE);
Bram Moolenaar188639d2022-04-04 16:57:21 +01001077 swap_exists_action = save_sea;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001078 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001079
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001080#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001081 // Restore the error/interrupt/exception state if not discarded by a
1082 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001083 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001084#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 }
1086 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001087 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001088}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090/*
1091 * Handle the situation of swap_exists_action being set.
1092 * It is allowed for "old_curbuf" to be NULL or invalid.
1093 */
1094 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001095handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001097#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001098 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001099#endif
1100#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001101 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001102#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001103 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001104
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 if (swap_exists_action == SEA_QUIT)
1106 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001107#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001108 // Reset the error/interrupt/exception state here so that
1109 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001110 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001111#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001112
Bram Moolenaarc667da52019-11-30 20:52:27 +01001113 // User selected Quit at ATTENTION prompt. Go back to previous
1114 // buffer. If that buffer is gone or the same as the current one,
1115 // open a new, empty buffer.
1116 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001117 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001118 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001119 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1120 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001121 {
1122 // Block autocommands here because curwin->w_buffer is NULL.
1123 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001124 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001125 unblock_autocmds();
1126 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001127 else
1128 buf = old_curbuf->br_buf;
1129 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001130 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001131 int old_msg_silent = msg_silent;
1132
1133 if (shortmess(SHM_FILEINFO))
1134 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001135 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001136 // restore msg_silent, so that the command line will be shown
1137 msg_silent = old_msg_silent;
1138
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001139#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001140 if (old_tw != curbuf->b_p_tw)
1141 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001142#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001143 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001144 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001145
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001146#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001147 // Restore the error/interrupt/exception state if not discarded by a
1148 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001149 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 }
1152 else if (swap_exists_action == SEA_RECOVER)
1153 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001154#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001155 // Reset the error/interrupt/exception state here so that
1156 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001157 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001158#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001159
Bram Moolenaarc667da52019-11-30 20:52:27 +01001160 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001162 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001163 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001165 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001166
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001167#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001168 // Restore the error/interrupt/exception state if not discarded by a
1169 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001170 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 }
1173 swap_exists_action = SEA_NONE;
1174}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001177 * Make the current buffer empty.
1178 * Used when it is wiped out and it's the last buffer.
1179 */
1180 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001181empty_curbuf(
1182 int close_others,
1183 int forceit,
1184 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001185{
1186 int retval;
1187 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001188 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001189
1190 if (action == DOBUF_UNLOAD)
1191 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001192 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193 return FAIL;
1194 }
1195
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001196 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001197 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001198 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001199 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001200
1201 setpcmark();
1202 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1203 forceit ? ECMD_FORCEIT : 0, curwin);
1204
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001205 // do_ecmd() may create a new buffer, then we have to delete
1206 // the old one. But do_ecmd() may have done that already, check
1207 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001208 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001209 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001210 if (!close_others)
1211 need_fileinfo = FALSE;
1212 return retval;
1213}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001214
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215/*
1216 * Implementation of the commands for the buffer list.
1217 *
1218 * action == DOBUF_GOTO go to specified buffer
1219 * action == DOBUF_SPLIT split window and go to specified buffer
1220 * action == DOBUF_UNLOAD unload specified buffer(s)
1221 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1222 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001223 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 *
1225 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1226 * start == DOBUF_FIRST go to "count" buffer from first buffer
1227 * start == DOBUF_LAST go to "count" buffer from last buffer
1228 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1229 *
1230 * Return FAIL or OK.
1231 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001232 static int
1233do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001234 int action,
1235 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001236 int dir, // FORWARD or BACKWARD
1237 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001238 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239{
1240 buf_T *buf;
1241 buf_T *bp;
1242 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001243 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
1245 switch (start)
1246 {
1247 case DOBUF_FIRST: buf = firstbuf; break;
1248 case DOBUF_LAST: buf = lastbuf; break;
1249 default: buf = curbuf; break;
1250 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001251 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 {
1253 while (count-- > 0)
1254 {
1255 do
1256 {
1257 buf = buf->b_next;
1258 if (buf == NULL)
1259 buf = firstbuf;
1260 }
1261 while (buf != curbuf && !bufIsChanged(buf));
1262 }
1263 if (!bufIsChanged(buf))
1264 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001265 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 return FAIL;
1267 }
1268 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001269 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 {
1271 while (buf != NULL && buf->b_fnum != count)
1272 buf = buf->b_next;
1273 }
1274 else
1275 {
1276 bp = NULL;
1277 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1278 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001279 // remember the buffer where we start, we come back there when all
1280 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 if (bp == NULL)
1282 bp = buf;
1283 if (dir == FORWARD)
1284 {
1285 buf = buf->b_next;
1286 if (buf == NULL)
1287 buf = firstbuf;
1288 }
1289 else
1290 {
1291 buf = buf->b_prev;
1292 if (buf == NULL)
1293 buf = lastbuf;
1294 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001295 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 if (unload || buf->b_p_bl)
1297 {
1298 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001299 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 }
1301 if (bp == buf)
1302 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001303 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001304 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 return FAIL;
1306 }
1307 }
1308 }
1309
Bram Moolenaarc667da52019-11-30 20:52:27 +01001310 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
1312 if (start == DOBUF_FIRST)
1313 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001314 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001316 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 }
1318 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001319 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001321 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 return FAIL;
1323 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001324#ifdef FEAT_PROP_POPUP
1325 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1326# ifdef FEAT_TERMINAL
1327 && !bt_terminal(buf)
1328#endif
1329 )
1330 return OK;
1331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332
1333#ifdef FEAT_GUI
1334 need_mouse_correct = TRUE;
1335#endif
1336
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001338 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 */
1340 if (unload)
1341 {
1342 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001343 bufref_T bufref;
1344
Bram Moolenaar94f01952018-09-01 15:30:03 +02001345 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001346 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001347
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001348 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
Bram Moolenaarc667da52019-11-30 20:52:27 +01001350 // When unloading or deleting a buffer that's already unloaded and
1351 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001352 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1353 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 return FAIL;
1355
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001356 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001358#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001359 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 {
1361 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001362 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001363 // Autocommand deleted buffer, oops! It's not changed
1364 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001366 // If it's still changed fail silently, the dialog already
1367 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001368 if (bufIsChanged(buf))
1369 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001371 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001372#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001374 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 buf->b_fnum);
1376 return FAIL;
1377 }
1378 }
1379
Bram Moolenaarc667da52019-11-30 20:52:27 +01001380 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001381 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001382 end_visual_mode();
1383
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001384 // If deleting the last (listed) buffer, make it empty.
1385 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001386 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 if (bp->b_p_bl && bp != buf)
1388 break;
1389 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001390 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001392 // If the deleted buffer is the current one, close the current window
1393 // (unless it's the only window). Repeat this so long as we end up in
1394 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001395 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001396 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001397 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001398 {
1399 if (win_close(curwin, FALSE) == FAIL)
1400 break;
1401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001403 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (buf != curbuf)
1405 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001406 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001407 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001408 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 return OK;
1410 }
1411
1412 /*
1413 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001414 * There should be another, otherwise it would have been handled
1415 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001416 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 * Then prefer the buffer we most recently visited.
1418 * Else try to find one that is loaded, after the current buffer,
1419 * then before the current buffer.
1420 * Finally use any buffer.
1421 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001422 buf = NULL; // selected buffer
1423 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001424 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1425 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001426 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
1428 int jumpidx;
1429
1430 jumpidx = curwin->w_jumplistidx - 1;
1431 if (jumpidx < 0)
1432 jumpidx = curwin->w_jumplistlen - 1;
1433
1434 forward = jumpidx;
1435 while (jumpidx != curwin->w_jumplistidx)
1436 {
1437 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1438 if (buf != NULL)
1439 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001440 // Skip current and unlisted bufs. Also skip a quickfix
1441 // buffer, it might be deleted soon.
1442 if (buf == curbuf || !buf->b_p_bl
1443#if defined(FEAT_QUICKFIX)
1444 || bt_quickfix(buf)
1445#endif
1446 )
1447 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 else if (buf->b_ml.ml_mfp == NULL)
1449 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001450 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 if (bp == NULL)
1452 bp = buf;
1453 buf = NULL;
1454 }
1455 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001456 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001458 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1460 break;
1461 if (--jumpidx < 0)
1462 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001463 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 break;
1465 }
1466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467
Bram Moolenaarc667da52019-11-30 20:52:27 +01001468 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 {
1470 forward = TRUE;
1471 buf = curbuf->b_next;
1472 for (;;)
1473 {
1474 if (buf == NULL)
1475 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001476 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 break;
1478 buf = curbuf->b_prev;
1479 forward = FALSE;
1480 continue;
1481 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001482 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001483 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1484#if defined(FEAT_QUICKFIX)
1485 && !bt_quickfix(buf)
1486#endif
1487 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001489 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001491 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 bp = buf;
1493 }
1494 if (forward)
1495 buf = buf->b_next;
1496 else
1497 buf = buf->b_prev;
1498 }
1499 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001500 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001502 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001504 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001505 if (buf->b_p_bl && buf != curbuf
1506#if defined(FEAT_QUICKFIX)
1507 && !bt_quickfix(buf)
1508#endif
1509 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 break;
1511 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001512 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 {
1514 if (curbuf->b_next != NULL)
1515 buf = curbuf->b_next;
1516 else
1517 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001518#if defined(FEAT_QUICKFIX)
1519 if (bt_quickfix(buf))
1520 buf = NULL;
1521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 }
1523 }
1524
Bram Moolenaara02471e2014-01-10 16:43:14 +01001525 if (buf == NULL)
1526 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001527 // Autocommands must have wiped out all other buffers. Only option
1528 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001529 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001530 }
1531
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001533 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001535 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001537 // If 'switchbuf' contains "useopen": jump to first window containing
1538 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001539 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001540 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001541 // If 'switchbuf' contains "usetab": jump to first window in any tab
1542 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001543 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 return OK;
1545 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 return FAIL;
1547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548
Bram Moolenaarc667da52019-11-30 20:52:27 +01001549 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 if (buf == curbuf)
1551 return OK;
1552
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001553 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001554 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
1556#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001557 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001559 bufref_T bufref;
1560
1561 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001563 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001564 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 }
1567 if (bufIsChanged(curbuf))
1568#endif
1569 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001570 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 return FAIL;
1572 }
1573 }
1574
Bram Moolenaarc667da52019-11-30 20:52:27 +01001575 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 set_curbuf(buf, action);
1577
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001579 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001581#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001582 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 return FAIL;
1584#endif
1585
1586 return OK;
1587}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001589 int
1590do_buffer(
1591 int action,
1592 int start,
1593 int dir, // FORWARD or BACKWARD
1594 int count, // buffer number or number of buffers
1595 int forceit) // TRUE when using !
1596{
1597 return do_buffer_ext(action, start, dir, count,
1598 forceit ? DOBUF_FORCEIT : 0);
1599}
1600
1601/*
1602 * do_bufdel() - delete or unload buffer(s)
1603 *
1604 * addr_count == 0: ":bdel" - delete current buffer
1605 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1606 * buffer "end_bnr", then any other arguments.
1607 * addr_count == 2: ":N,N bdel" - delete buffers in range
1608 *
1609 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1610 * DOBUF_DEL (":bdel")
1611 *
1612 * Returns error message or NULL
1613 */
1614 char *
1615do_bufdel(
1616 int command,
1617 char_u *arg, // pointer to extra arguments
1618 int addr_count,
1619 int start_bnr, // first buffer number in a range
1620 int end_bnr, // buffer nr or last buffer nr in a range
1621 int forceit)
1622{
1623 int do_current = 0; // delete current buffer?
1624 int deleted = 0; // number of buffers deleted
1625 char *errormsg = NULL; // return value
1626 int bnr; // buffer number
1627 char_u *p;
1628
1629 if (addr_count == 0)
1630 {
1631 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1632 }
1633 else
1634 {
1635 if (addr_count == 2)
1636 {
1637 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001638 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001639 bnr = start_bnr;
1640 }
1641 else // addr_count == 1
1642 bnr = end_bnr;
1643
1644 for ( ;!got_int; ui_breakcheck())
1645 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001646 // Delete the current buffer last, otherwise when the
1647 // current buffer is deleted, the next buffer becomes
1648 // the current one and will be loaded, which may then
1649 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001650 if (bnr == curbuf->b_fnum)
1651 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001652 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001653 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1654 ++deleted;
1655
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001656 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001657 if (addr_count == 2)
1658 {
1659 if (++bnr > end_bnr)
1660 break;
1661 }
1662 else // addr_count == 1
1663 {
1664 arg = skipwhite(arg);
1665 if (*arg == NUL)
1666 break;
1667 if (!VIM_ISDIGIT(*arg))
1668 {
1669 p = skiptowhite_esc(arg);
1670 bnr = buflist_findpat(arg, p,
1671 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1672 FALSE, FALSE);
1673 if (bnr < 0) // failed
1674 break;
1675 arg = p;
1676 }
1677 else
1678 bnr = getdigits(&arg);
1679 }
1680 }
1681 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1682 FORWARD, do_current, forceit) == OK)
1683 ++deleted;
1684
1685 if (deleted == 0)
1686 {
1687 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001688 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001689 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001690 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001691 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001692 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001693 errormsg = (char *)IObuff;
1694 }
1695 else if (deleted >= p_report)
1696 {
1697 if (command == DOBUF_UNLOAD)
1698 smsg(NGETTEXT("%d buffer unloaded",
1699 "%d buffers unloaded", deleted), deleted);
1700 else if (command == DOBUF_DEL)
1701 smsg(NGETTEXT("%d buffer deleted",
1702 "%d buffers deleted", deleted), deleted);
1703 else
1704 smsg(NGETTEXT("%d buffer wiped out",
1705 "%d buffers wiped out", deleted), deleted);
1706 }
1707 }
1708
1709
1710 return errormsg;
1711}
1712
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713/*
1714 * Set current buffer to "buf". Executes autocommands and closes current
1715 * buffer. "action" tells how to close the current buffer:
1716 * DOBUF_GOTO free or hide it
1717 * DOBUF_SPLIT nothing
1718 * DOBUF_UNLOAD unload it
1719 * DOBUF_DEL delete it
1720 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001721 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 */
1723 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001724set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 buf_T *prevbuf;
1727 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001728 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001729#ifdef FEAT_SYN_HL
1730 long old_tw = curbuf->b_p_tw;
1731#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001732 bufref_T newbufref;
1733 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001734 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
1736 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001737 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001738 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1739 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740
Bram Moolenaarc667da52019-11-30 20:52:27 +01001741 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743
Bram Moolenaarc667da52019-11-30 20:52:27 +01001744 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001746 set_bufref(&prevbufref, prevbuf);
1747 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001749 // Autocommands may delete the current buffer and/or the buffer we want to
1750 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001751 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001752 || (bufref_valid(&prevbufref)
1753 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001754#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001755 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001757 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001759#ifdef FEAT_SYN_HL
1760 if (prevbuf == curwin->w_buffer)
1761 reset_synblock(curwin);
1762#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001764 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001765#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001766 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001768 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001770 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001771 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001772
Bram Moolenaare615db02022-01-20 21:00:54 +00001773 // Do not sync when in Insert mode and the buffer is open in
1774 // another window, might be a timer doing something in another
1775 // window.
1776 if (prevbuf == curbuf
1777 && ((State & INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001778 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1780 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001781 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001782 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1783 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001784 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001785 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001786 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001789 // An autocommand may have deleted "buf", already entered it (e.g., when
1790 // it did ":bunload") or aborted the script processing.
1791 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001792 valid = buf_valid(buf);
1793 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001794#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001795 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001797 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001798 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001799 // If the buffer is not valid but curwin->w_buffer is NULL we must
1800 // enter some buffer. Using the last one is hopefully OK.
1801 if (!valid)
1802 enter_buffer(lastbuf);
1803 else
1804 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001805#ifdef FEAT_SYN_HL
1806 if (old_tw != curbuf->b_p_tw)
1807 check_colorcolumn(curwin);
1808#endif
1809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810}
1811
1812/*
1813 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001814 * Old curbuf must have been abandoned already! This also means "curbuf" may
1815 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001817 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001818enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001820 // Get the buffer in the current window.
1821 curwin->w_buffer = buf;
1822 curbuf = buf;
1823 ++curbuf->b_nwindows;
1824
1825 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1827 if (!buf->b_help)
1828 get_winopts(buf);
1829#ifdef FEAT_FOLDING
1830 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001831 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001833 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#endif
1835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001837 if (curwin->w_p_diff)
1838 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839#endif
1840
Bram Moolenaara971b822011-09-14 14:43:25 +02001841#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001842 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001843#endif
1844
Bram Moolenaarc667da52019-11-30 20:52:27 +01001845 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 curwin->w_cursor.lnum = 1;
1847 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001850 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851
Bram Moolenaarc667da52019-11-30 20:52:27 +01001852 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001853 curwin->w_valid = 0;
1854
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001855 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1856 curbuf->b_last_cursor.col, TRUE);
1857
Bram Moolenaarc667da52019-11-30 20:52:27 +01001858 // Make sure the buffer is loaded.
1859 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001860 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001861 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001862 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001863 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001864 if (*curbuf->b_p_ft == NUL)
1865 did_filetype = FALSE;
1866
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001867 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 else
1870 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001871 if (!msg_silent && !shortmess(SHM_FILEINFO))
1872 need_fileinfo = TRUE; // display file info after redraw
1873
1874 // check if file changed
1875 (void)buf_check_timestamp(curbuf, FALSE);
1876
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001878#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1882 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
1884
Bram Moolenaarc667da52019-11-30 20:52:27 +01001885 // If autocommands did not change the cursor position, restore cursor lnum
1886 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 if (curwin->w_cursor.lnum == 1 && inindent(0))
1888 buflist_getfpos();
1889
Bram Moolenaarc667da52019-11-30 20:52:27 +01001890 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001892 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001893 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001894 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895
Bram Moolenaar009b2592004-10-24 19:18:58 +00001896#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001897 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001898 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001899#endif
1900
Bram Moolenaarc667da52019-11-30 20:52:27 +01001901 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001902 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903
1904#ifdef FEAT_KEYMAP
1905 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001906 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001908#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001909 // May need to set the spell language. Can only do this after the buffer
1910 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001911 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1912 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001913#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001914#ifdef FEAT_VIMINFO
1915 curbuf->b_last_used = vim_time();
1916#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001917
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 redraw_later(NOT_VALID);
1919}
1920
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001921#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1922/*
1923 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001924 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001925 */
1926 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001927do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001928{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001929 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001930 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001931 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001932 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001933 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001934 last_chdir_reason = "autochdir";
1935 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001936}
1937#endif
1938
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001939 void
1940no_write_message(void)
1941{
1942#ifdef FEAT_TERMINAL
1943 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001944 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001945 else
1946#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001947 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001948}
1949
1950 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001951no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001952{
1953#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001954 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001955 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001956 else
1957#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001958 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001959}
1960
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961/*
1962 * functions for dealing with the buffer list
1963 */
1964
1965/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001966 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1967 * only one window. That means it can be re-used.
1968 */
1969 int
1970curbuf_reusable(void)
1971{
1972 return (curbuf != NULL
1973 && curbuf->b_ffname == NULL
1974 && curbuf->b_nwindows <= 1
1975 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001976#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001977 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001978#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001979 && !curbufIsChanged());
1980}
1981
1982/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 * Add a file name to the buffer list. Return a pointer to the buffer.
1984 * If the same file name already exists return a pointer to that buffer.
1985 * If it does not exist, or if fname == NULL, a new entry is created.
1986 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1987 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1988 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001989 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001990 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1991 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001992 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 * This is the ONLY way to create a new buffer.
1994 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001996buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001997 char_u *ffname_arg, // full path of fname or relative
1998 char_u *sfname_arg, // short fname or NULL
1999 linenr_T lnum, // preferred cursor line
2000 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002002 char_u *ffname = ffname_arg;
2003 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 buf_T *buf;
2005#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002006 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007#endif
2008
Bram Moolenaar480778b2016-07-14 22:09:39 +02002009 if (top_file_num == 1)
2010 hash_init(&buf_hashtab);
2011
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002012 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013
2014 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002015 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 */
2017#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002018 // On Unix we can use inode numbers when the file exists. Works better
2019 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2021 st.st_dev = (dev_T)-1;
2022#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002023 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024#ifdef UNIX
2025 buflist_findname_stat(ffname, &st)
2026#else
2027 buflist_findname(ffname)
2028#endif
2029 ) != NULL)
2030 {
2031 vim_free(ffname);
2032 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002033 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2034 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002035
2036 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002037 // copy the options now, if 'cpo' doesn't have 's' and not done
2038 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002039 buf_copy_options(buf, 0);
2040
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2042 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002043 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002044
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002046 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002048 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002049 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002050 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002051 return NULL;
2052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 }
2054 return buf;
2055 }
2056
2057 /*
2058 * If the current buffer has no name and no contents, use the current
2059 * buffer. Otherwise: Need to allocate a new buffer structure.
2060 *
2061 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002062 * (A spell file buffer is allocated in spell.c, but that's not a normal
2063 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 */
2065 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002066 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 {
2068 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002069 // It's like this buffer is deleted. Watch out for autocommands that
2070 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (curbuf->b_p_bl)
2072 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2073 if (buf == curbuf)
2074 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002075#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002076 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002077 {
2078 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002084 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 clear_string_option(&buf->b_p_bh);
2086 clear_string_option(&buf->b_p_bt);
2087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 }
2089 if (buf != curbuf || curbuf == NULL)
2090 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002091 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 if (buf == NULL)
2093 {
2094 vim_free(ffname);
2095 return NULL;
2096 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002097#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002098 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002099 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002100 if (buf->b_vars == NULL)
2101 {
2102 vim_free(ffname);
2103 vim_free(buf);
2104 return NULL;
2105 }
2106 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2107#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002108 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 }
2110
2111 if (ffname != NULL)
2112 {
2113 buf->b_ffname = ffname;
2114 buf->b_sfname = vim_strsave(sfname);
2115 }
2116
2117 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002118 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119
2120 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2121 || buf->b_wininfo == NULL)
2122 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002123 if (buf->b_sfname != buf->b_ffname)
2124 VIM_CLEAR(buf->b_sfname);
2125 else
2126 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002127 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 if (buf != curbuf)
2129 free_buffer(buf);
2130 return NULL;
2131 }
2132
2133 if (buf == curbuf)
2134 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002135 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002136 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002137 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002139#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002140 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 return NULL;
2142#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002143 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002144
Bram Moolenaarc667da52019-11-30 20:52:27 +01002145 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002146 buf->b_p_initialized = FALSE;
2147 buf_copy_options(buf, BCO_ENTER);
2148
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002150 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 curbuf->b_kmap_state |= KEYMAP_INIT;
2152#endif
2153 }
2154 else
2155 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002156 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002158 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 {
2160 buf->b_prev = NULL;
2161 firstbuf = buf;
2162 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002163 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 {
2165 lastbuf->b_next = buf;
2166 buf->b_prev = lastbuf;
2167 }
2168 lastbuf = buf;
2169
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002170 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2171 {
2172 // Recycle a previously used buffer number. Used for buffers which
2173 // are normally hidden, e.g. in a popup window. Avoids that the
2174 // buffer number grows rapidly.
2175 --buf_reuse.ga_len;
2176 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002177
2178 // Move buffer to the right place in the buffer list.
2179 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2180 {
2181 buf_T *prev = buf->b_prev;
2182
2183 prev->b_next = buf->b_next;
2184 if (prev->b_next != NULL)
2185 prev->b_next->b_prev = prev;
2186 buf->b_next = prev;
2187 buf->b_prev = prev->b_prev;
2188 if (buf->b_prev != NULL)
2189 buf->b_prev->b_next = buf;
2190 prev->b_prev = buf;
2191 if (lastbuf == buf)
2192 lastbuf = prev;
2193 if (firstbuf == prev)
2194 firstbuf = buf;
2195 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002196 }
2197 else
2198 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002199 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002201 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002202 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 {
2204 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002205 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 }
2207 top_file_num = 1;
2208 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002209 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002211 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 buf_copy_options(buf, BCO_ALWAYS);
2213 }
2214
2215 buf->b_wininfo->wi_fpos.lnum = lnum;
2216 buf->b_wininfo->wi_win = curwin;
2217
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002218#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002219 hash_init(&buf->b_s.b_keywtab);
2220 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221#endif
2222
2223 buf->b_fname = buf->b_sfname;
2224#ifdef UNIX
2225 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002226 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 else
2228 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002229 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 buf->b_dev = st.st_dev;
2231 buf->b_ino = st.st_ino;
2232 }
2233#endif
2234 buf->b_u_synced = TRUE;
2235 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002236 if (flags & BLN_DUMMY)
2237 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002239 clrallmarks(buf); // clear marks
2240 fmarks_check_names(buf); // check file marks for this file
2241 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 if (!(flags & BLN_DUMMY))
2243 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002244 bufref_T bufref;
2245
Bram Moolenaarc667da52019-11-30 20:52:27 +01002246 // Tricky: these autocommands may change the buffer list. They could
2247 // also split the window with re-using the one empty buffer. This may
2248 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002249 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002250 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002251 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002252 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002254 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002255 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002256 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002257 return NULL;
2258 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002259#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002260 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264
2265 return buf;
2266}
2267
2268/*
2269 * Free the memory for the options of a buffer.
2270 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2271 * 'fileencoding'.
2272 */
2273 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002274free_buf_options(
2275 buf_T *buf,
2276 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277{
2278 if (free_p_ff)
2279 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 clear_string_option(&buf->b_p_bh);
2283 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 }
2285#ifdef FEAT_FIND_ID
2286 clear_string_option(&buf->b_p_def);
2287 clear_string_option(&buf->b_p_inc);
2288# ifdef FEAT_EVAL
2289 clear_string_option(&buf->b_p_inex);
2290# endif
2291#endif
2292#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2293 clear_string_option(&buf->b_p_inde);
2294 clear_string_option(&buf->b_p_indk);
2295#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002296#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2297 clear_string_option(&buf->b_p_bexpr);
2298#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002299#if defined(FEAT_CRYPT)
2300 clear_string_option(&buf->b_p_cm);
2301#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002302 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002303#if defined(FEAT_EVAL)
2304 clear_string_option(&buf->b_p_fex);
2305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002307# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002308 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2309 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2310 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002311# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 clear_string_option(&buf->b_p_key);
2313#endif
2314 clear_string_option(&buf->b_p_kp);
2315 clear_string_option(&buf->b_p_mps);
2316 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002317 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002319#ifdef FEAT_VARTABS
2320 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002321 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002322 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002323 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002324 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002325 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327#ifdef FEAT_KEYMAP
2328 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002329 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 ga_clear(&buf->b_kmap_ga);
2331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333#ifdef FEAT_FOLDING
2334 clear_string_option(&buf->b_p_cms);
2335#endif
2336 clear_string_option(&buf->b_p_nf);
2337#ifdef FEAT_SYN_HL
2338 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002339 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002340#endif
2341#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002342 clear_string_option(&buf->b_s.b_p_spc);
2343 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002344 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002345 buf->b_s.b_cap_prog = NULL;
2346 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002347 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348#endif
2349#ifdef FEAT_SEARCHPATH
2350 clear_string_option(&buf->b_p_sua);
2351#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353#ifdef FEAT_CINDENT
2354 clear_string_option(&buf->b_p_cink);
2355 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002356 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357#endif
2358#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2359 clear_string_option(&buf->b_p_cinw);
2360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002362#ifdef FEAT_COMPL_FUNC
2363 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002364 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002365 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002366 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002367 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002368 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370#ifdef FEAT_QUICKFIX
2371 clear_string_option(&buf->b_p_gp);
2372 clear_string_option(&buf->b_p_mp);
2373 clear_string_option(&buf->b_p_efm);
2374#endif
2375 clear_string_option(&buf->b_p_ep);
2376 clear_string_option(&buf->b_p_path);
2377 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002378 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002379#ifdef FEAT_EVAL
2380 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002381 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002382#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 clear_string_option(&buf->b_p_dict);
2384 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002385#ifdef FEAT_TEXTOBJ
2386 clear_string_option(&buf->b_p_qe);
2387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002389 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002390#ifdef FEAT_LISP
2391 clear_string_option(&buf->b_p_lw);
2392#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002393 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002394 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395}
2396
2397/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002398 * Get alternate file "n".
2399 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2400 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 * if (options & GETF_SETMARK) call setpcmark()
2402 * if (options & GETF_ALT) we are jumping to an alternate file.
2403 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2404 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002405 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 */
2407 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002408buflist_getfile(
2409 int n,
2410 linenr_T lnum,
2411 int options,
2412 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413{
2414 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 pos_T *fpos;
2417 colnr_T col;
2418
2419 buf = buflist_findnr(n);
2420 if (buf == NULL)
2421 {
2422 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002423 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002425 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 return FAIL;
2427 }
2428
Bram Moolenaarc667da52019-11-30 20:52:27 +01002429 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 if (buf == curbuf)
2431 return OK;
2432
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002433 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002434 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002435 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002437 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002438 if (curbuf_locked())
2439 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440
Bram Moolenaarc667da52019-11-30 20:52:27 +01002441 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 if (lnum == 0)
2443 {
2444 fpos = buflist_findfpos(buf);
2445 lnum = fpos->lnum;
2446 col = fpos->col;
2447 }
2448 else
2449 col = 0;
2450
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 if (options & GETF_SWITCH)
2452 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002453 // If 'switchbuf' contains "useopen": jump to first window containing
2454 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002455 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002457
Bram Moolenaarc667da52019-11-30 20:52:27 +01002458 // If 'switchbuf' contains "usetab": jump to first window in any tab
2459 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002460 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002461 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002462
Bram Moolenaarc667da52019-11-30 20:52:27 +01002463 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2464 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002465 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002466 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002468 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002469 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002470 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2471 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002473 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 }
2475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
2477 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002478 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2479 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 {
2481 --RedrawingDisabled;
2482
Bram Moolenaarc667da52019-11-30 20:52:27 +01002483 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 if (!p_sol && col != 0)
2485 {
2486 curwin->w_cursor.col = col;
2487 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 curwin->w_set_curswant = TRUE;
2490 }
2491 return OK;
2492 }
2493 --RedrawingDisabled;
2494 return FAIL;
2495}
2496
2497/*
2498 * go to the last know line number for the current buffer
2499 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002500 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002501buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502{
2503 pos_T *fpos;
2504
2505 fpos = buflist_findfpos(curbuf);
2506
2507 curwin->w_cursor.lnum = fpos->lnum;
2508 check_cursor_lnum();
2509
2510 if (p_sol)
2511 curwin->w_cursor.col = 0;
2512 else
2513 {
2514 curwin->w_cursor.col = fpos->col;
2515 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 curwin->w_set_curswant = TRUE;
2518 }
2519}
2520
Bram Moolenaar81695252004-12-29 20:58:21 +00002521#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2522/*
2523 * Find file in buffer list by name (it has to be for the current window).
2524 * Returns NULL if not found.
2525 */
2526 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002527buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002528{
2529 char_u *ffname;
2530 buf_T *buf = NULL;
2531
Bram Moolenaarc667da52019-11-30 20:52:27 +01002532 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002533 ffname = FullName_save(fname,
2534#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002535 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002536#else
2537 FALSE
2538#endif
2539 );
2540 if (ffname != NULL)
2541 {
2542 buf = buflist_findname(ffname);
2543 vim_free(ffname);
2544 }
2545 return buf;
2546}
2547#endif
2548
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549/*
2550 * Find file in buffer list by name (it has to be for the current window).
2551 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002552 * Skips dummy buffers.
2553 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 */
2555 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002556buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557{
2558#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002559 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560
2561 if (mch_stat((char *)ffname, &st) < 0)
2562 st.st_dev = (dev_T)-1;
2563 return buflist_findname_stat(ffname, &st);
2564}
2565
2566/*
2567 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2568 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002569 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 */
2571 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002572buflist_findname_stat(
2573 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002574 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575{
2576#endif
2577 buf_T *buf;
2578
Bram Moolenaarc667da52019-11-30 20:52:27 +01002579 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002580 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002581 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582#ifdef UNIX
2583 , stp
2584#endif
2585 ))
2586 return buf;
2587 return NULL;
2588}
2589
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590/*
2591 * Find file in buffer list by a regexp pattern.
2592 * Return fnum of the found buffer.
2593 * Return < 0 for error.
2594 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002596buflist_findpat(
2597 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002598 char_u *pattern_end, // pointer to first char after pattern
2599 int unlisted, // find unlisted buffers
2600 int diffmode UNUSED, // find diff-mode buffers only
2601 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602{
2603 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 int match = -1;
2605 int find_listed;
2606 char_u *pat;
2607 char_u *patend;
2608 int attempt;
2609 char_u *p;
2610 int toggledollar;
2611
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002612 // "%" is current file, "%%" or "#" is alternate file
2613 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2614 || (in_vim9script() && pattern_end == pattern + 2
2615 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002617 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002619 else
2620 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621#ifdef FEAT_DIFF
2622 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2623 match = -1;
2624#endif
2625 }
2626
2627 /*
2628 * Try four ways of matching a listed buffer:
2629 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002630 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 * attempt == 2: with '$' at end (only match at end)
2632 * attempt == 3: with '^' at start and '$' at end (only full match)
2633 * Repeat this for finding an unlisted buffer if there was no matching
2634 * listed buffer.
2635 */
2636 else
2637 {
2638 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2639 if (pat == NULL)
2640 return -1;
2641 patend = pat + STRLEN(pat) - 1;
2642 toggledollar = (patend > pat && *patend == '$');
2643
Bram Moolenaarc667da52019-11-30 20:52:27 +01002644 // First try finding a listed buffer. If not found and "unlisted"
2645 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 find_listed = TRUE;
2647 for (;;)
2648 {
2649 for (attempt = 0; attempt <= 3; ++attempt)
2650 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002651 regmatch_T regmatch;
2652
Bram Moolenaarc667da52019-11-30 20:52:27 +01002653 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002655 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002657 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002659 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002660 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 {
2662 vim_free(pat);
2663 return -1;
2664 }
2665
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002666 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 if (buf->b_p_bl == find_listed
2668#ifdef FEAT_DIFF
2669 && (!diffmode || diff_mode_buf(buf))
2670#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002671 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002673 if (curtab_only)
2674 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002675 // Ignore the match if the buffer is not open in
2676 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002677 win_T *wp;
2678
Bram Moolenaar29323592016-07-24 22:04:11 +02002679 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002680 if (wp->w_buffer == buf)
2681 break;
2682 if (wp == NULL)
2683 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002684 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002685 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 {
2687 match = -2;
2688 break;
2689 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002690 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 }
2692
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002693 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002694 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 break;
2696 }
2697
Bram Moolenaarc667da52019-11-30 20:52:27 +01002698 // Only search for unlisted buffers if there was no match with
2699 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 if (!unlisted || !find_listed || match != -1)
2701 break;
2702 find_listed = FALSE;
2703 }
2704
2705 vim_free(pat);
2706 }
2707
2708 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002709 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002711 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 return match;
2713}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714
Bram Moolenaar52410572019-10-27 05:12:45 +01002715#ifdef FEAT_VIMINFO
2716typedef struct {
2717 buf_T *buf;
2718 char_u *match;
2719} bufmatch_T;
2720#endif
2721
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722/*
2723 * Find all buffer names that match.
2724 * For command line expansion of ":buf" and ":sbuf".
2725 * Return OK if matches found, FAIL otherwise.
2726 */
2727 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002728ExpandBufnames(
2729 char_u *pat,
2730 int *num_file,
2731 char_u ***file,
2732 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733{
2734 int count = 0;
2735 buf_T *buf;
2736 int round;
2737 char_u *p;
2738 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002739 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002740#ifdef FEAT_VIMINFO
2741 bufmatch_T *matches = NULL;
2742#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002743 int fuzzy;
2744 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745
Bram Moolenaarc667da52019-11-30 20:52:27 +01002746 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 *file = NULL;
2748
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002749#ifdef FEAT_DIFF
2750 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2751 return FAIL;
2752#endif
2753
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002754 fuzzy = cmdline_fuzzy_complete(pat);
2755
2756 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2757 // expression matching)
2758 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002760 if (*pat == '^')
2761 {
2762 patc = alloc(STRLEN(pat) + 11);
2763 if (patc == NULL)
2764 return FAIL;
2765 STRCPY(patc, "\\(^\\|[\\/]\\)");
2766 STRCPY(patc + 11, pat + 1);
2767 }
2768 else
2769 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002770 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002771
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002772 // attempt == 0: try match with '\<', match at start of word
2773 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002774 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002775 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002776 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002777 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002778
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002779 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002780 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002781 if (attempt > 0 && patc == pat)
2782 break; // there was no anchor, no need to try again
2783 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2784 if (regmatch.regprog == NULL)
2785 {
2786 if (patc != pat)
2787 vim_free(patc);
2788 return FAIL;
2789 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002792 // round == 1: Count the matches.
2793 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 for (round = 1; round <= 2; ++round)
2795 {
2796 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002797 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002799 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002801#ifdef FEAT_DIFF
2802 if (options & BUF_DIFF_FILTER)
2803 // Skip buffers not suitable for
2804 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002805 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002806 continue;
2807#endif
2808
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002809 if (!fuzzy)
2810 p = buflist_match(&regmatch, buf, p_wic);
2811 else
2812 {
2813 p = NULL;
2814 // first try matching with the short file name
2815 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2816 p = buf->b_sfname;
2817 if (p == NULL)
2818 {
2819 // next try matching with the full path file name
2820 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2821 p = buf->b_ffname;
2822 }
2823 }
2824
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002825 if (p == NULL)
2826 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002827
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002828 if (round == 1)
2829 {
2830 ++count;
2831 continue;
2832 }
2833
2834 if (options & WILD_HOME_REPLACE)
2835 p = home_replace_save(buf, p);
2836 else
2837 p = vim_strsave(p);
2838
2839 if (!fuzzy)
2840 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002841#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002842 if (matches != NULL)
2843 {
2844 matches[count].buf = buf;
2845 matches[count].match = p;
2846 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002848 else
2849#endif
2850 (*file)[count++] = p;
2851 }
2852 else
2853 {
2854 fuzmatch[count].idx = count;
2855 fuzmatch[count].str = p;
2856 fuzmatch[count].score = score;
2857 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 }
2859 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002860 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 break;
2862 if (round == 1)
2863 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002864 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002866 *file = ALLOC_MULT(char_u *, count);
2867 if (*file == NULL)
2868 {
2869 vim_regfree(regmatch.regprog);
2870 if (patc != pat)
2871 vim_free(patc);
2872 return FAIL;
2873 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002874#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002875 if (options & WILD_BUFLASTUSED)
2876 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002877#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002878 }
2879 else
2880 {
2881 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2882 if (fuzmatch == NULL)
2883 {
2884 *num_file = 0;
2885 *file = NULL;
2886 return FAIL;
2887 }
2888 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 }
2890 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002891
2892 if (!fuzzy)
2893 {
2894 vim_regfree(regmatch.regprog);
2895 if (count) // match(es) found, break here
2896 break;
2897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 }
2899
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002900 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002901 vim_free(patc);
2902
Bram Moolenaar52410572019-10-27 05:12:45 +01002903#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002904 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002905 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002906 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002907 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002908 int i;
2909 if (count > 1)
2910 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2911 // if the current buffer is first in the list, place it at the end
2912 if (matches[0].buf == curbuf)
2913 {
2914 for (i = 1; i < count; i++)
2915 (*file)[i-1] = matches[i].match;
2916 (*file)[count-1] = matches[0].match;
2917 }
2918 else
2919 {
2920 for (i = 0; i < count; i++)
2921 (*file)[i] = matches[i].match;
2922 }
2923 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002924 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002925 }
2926 else
2927 {
2928 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2929 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002930 }
2931#endif
2932
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 *num_file = count;
2934 return (count == 0 ? FAIL : OK);
2935}
2936
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937/*
2938 * Check for a match on the file name for buffer "buf" with regprog "prog".
2939 */
2940 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002941buflist_match(
2942 regmatch_T *rmp,
2943 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002944 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945{
2946 char_u *match;
2947
Bram Moolenaarc667da52019-11-30 20:52:27 +01002948 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002949 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002951 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952
2953 return match;
2954}
2955
2956/*
2957 * Try matching the regexp in "prog" with file name "name".
2958 * Return "name" when there is a match, NULL when not.
2959 */
2960 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002961fname_match(
2962 regmatch_T *rmp,
2963 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002964 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965{
2966 char_u *match = NULL;
2967 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968
2969 if (name != NULL)
2970 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002971 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002972 rmp->rm_ic = p_fic || ignore_case;
2973 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 match = name;
2975 else
2976 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002977 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002979 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 match = name;
2981 vim_free(p);
2982 }
2983 }
2984
2985 return match;
2986}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987
2988/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002989 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 */
2991 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002992buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002994 char_u key[VIM_SIZEOF_INT * 2 + 1];
2995 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996
2997 if (nr == 0)
2998 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002999 sprintf((char *)key, "%x", nr);
3000 hi = hash_find(&buf_hashtab, key);
3001
3002 if (!HASHITEM_EMPTY(hi))
3003 return (buf_T *)(hi->hi_key
3004 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 return NULL;
3006}
3007
3008/*
3009 * Get name of file 'n' in the buffer list.
3010 * When the file has no name an empty string is returned.
3011 * home_replace() is used to shorten the file name (used for marks).
3012 * Returns a pointer to allocated memory, of NULL when failed.
3013 */
3014 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003015buflist_nr2name(
3016 int n,
3017 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003018 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019{
3020 buf_T *buf;
3021
3022 buf = buflist_findnr(n);
3023 if (buf == NULL)
3024 return NULL;
3025 return home_replace_save(helptail ? buf : NULL,
3026 fullname ? buf->b_ffname : buf->b_fname);
3027}
3028
3029/*
3030 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3031 * When "copy_options" is TRUE save the local window option values.
3032 * When "lnum" is 0 only do the options.
3033 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003034 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003035buflist_setfpos(
3036 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003037 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003038 linenr_T lnum,
3039 colnr_T col,
3040 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041{
3042 wininfo_T *wip;
3043
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003044 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 if (wip->wi_win == win)
3046 break;
3047 if (wip == NULL)
3048 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003049 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003050 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 if (wip == NULL)
3052 return;
3053 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003054 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 lnum = 1;
3056 }
3057 else
3058 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003059 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 if (wip->wi_prev)
3061 wip->wi_prev->wi_next = wip->wi_next;
3062 else
3063 buf->b_wininfo = wip->wi_next;
3064 if (wip->wi_next)
3065 wip->wi_next->wi_prev = wip->wi_prev;
3066 if (copy_options && wip->wi_optset)
3067 {
3068 clear_winopt(&wip->wi_opt);
3069#ifdef FEAT_FOLDING
3070 deleteFoldRecurse(&wip->wi_folds);
3071#endif
3072 }
3073 }
3074 if (lnum != 0)
3075 {
3076 wip->wi_fpos.lnum = lnum;
3077 wip->wi_fpos.col = col;
3078 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003079 if (win != NULL)
3080 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003081 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003083 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3085#ifdef FEAT_FOLDING
3086 wip->wi_fold_manual = win->w_fold_manual;
3087 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3088#endif
3089 wip->wi_optset = TRUE;
3090 }
3091
Bram Moolenaarc667da52019-11-30 20:52:27 +01003092 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 wip->wi_next = buf->b_wininfo;
3094 buf->b_wininfo = wip;
3095 wip->wi_prev = NULL;
3096 if (wip->wi_next)
3097 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098}
3099
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003100#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003101/*
3102 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3103 * page. That's because a diff is local to a tab page.
3104 */
3105 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003106wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003107{
3108 win_T *wp;
3109
3110 if (wip->wi_opt.wo_diff)
3111 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003112 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003113 // return FALSE when it's a window in the current tab page, thus
3114 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003115 if (wip->wi_win == wp)
3116 return FALSE;
3117 return TRUE;
3118 }
3119 return FALSE;
3120}
3121#endif
3122
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123/*
3124 * Find info for the current window in buffer "buf".
3125 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003126 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003127 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3128 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 * Returns NULL when there isn't any info.
3130 */
3131 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003132find_wininfo(
3133 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003134 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003135 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136{
3137 wininfo_T *wip;
3138
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003139 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003140 if (wip->wi_win == curwin
3141#ifdef FEAT_DIFF
3142 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3143#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003144
3145 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003147
Bram Moolenaarc667da52019-11-30 20:52:27 +01003148 // If no wininfo for curwin, use the first in the list (that doesn't have
3149 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003150 // If "need_options" is TRUE skip entries that don't have options set,
3151 // unless the window is editing "buf", so we can copy from the window
3152 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003153 if (wip == NULL)
3154 {
3155#ifdef FEAT_DIFF
3156 if (skip_diff_buffer)
3157 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003158 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003159 if (!wininfo_other_tab_diff(wip)
3160 && (!need_options || wip->wi_optset
3161 || (wip->wi_win != NULL
3162 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003163 break;
3164 }
3165 else
3166#endif
3167 wip = buf->b_wininfo;
3168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 return wip;
3170}
3171
3172/*
3173 * Reset the local window options to the values last used in this window.
3174 * If the buffer wasn't used in this window before, use the values from
3175 * the most recently used window. If the values were never set, use the
3176 * global values for the window.
3177 */
3178 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003179get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180{
3181 wininfo_T *wip;
3182
3183 clear_winopt(&curwin->w_onebuf_opt);
3184#ifdef FEAT_FOLDING
3185 clearFolding(curwin);
3186#endif
3187
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003188 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003189 if (wip != NULL && wip->wi_win != NULL
3190 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003192 // The buffer is currently displayed in the window: use the actual
3193 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003194 win_T *wp = wip->wi_win;
3195
3196 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3197#ifdef FEAT_FOLDING
3198 curwin->w_fold_manual = wp->w_fold_manual;
3199 curwin->w_foldinvalid = TRUE;
3200 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3201#endif
3202 }
3203 else if (wip != NULL && wip->wi_optset)
3204 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003205 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3207#ifdef FEAT_FOLDING
3208 curwin->w_fold_manual = wip->wi_fold_manual;
3209 curwin->w_foldinvalid = TRUE;
3210 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3211#endif
3212 }
3213 else
3214 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003215 if (wip != NULL)
3216 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
3218#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003219 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 if (p_fdls >= 0)
3221 curwin->w_p_fdl = p_fdls;
3222#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003223 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224}
3225
3226/*
3227 * Find the position (lnum and col) for the buffer 'buf' for the current
3228 * window.
3229 * Returns a pointer to no_position if no position is found.
3230 */
3231 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003232buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233{
3234 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003235 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003237 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 if (wip != NULL)
3239 return &(wip->wi_fpos);
3240 else
3241 return &no_position;
3242}
3243
3244/*
3245 * Find the lnum for the buffer 'buf' for the current window.
3246 */
3247 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003248buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249{
3250 return buflist_findfpos(buf)->lnum;
3251}
3252
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003254 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003257buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
Bram Moolenaar52410572019-10-27 05:12:45 +01003259 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 int len;
3261 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003262 int ro_char;
3263 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003264#ifdef FEAT_TERMINAL
3265 int job_running;
3266 int job_none_open;
3267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268
Bram Moolenaar52410572019-10-27 05:12:45 +01003269#ifdef FEAT_VIMINFO
3270 garray_T buflist;
3271 buf_T **buflist_data = NULL, **p;
3272
3273 if (vim_strchr(eap->arg, 't'))
3274 {
3275 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003276 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003277 {
3278 if (ga_grow(&buflist, 1) == OK)
3279 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3280 }
3281
3282 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3283 sizeof(buf_T *), buf_compare);
3284
Bram Moolenaar3b991522019-11-06 23:26:20 +01003285 buflist_data = (buf_T **)buflist.ga_data;
3286 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003287 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003288 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003289
Bram Moolenaar3b991522019-11-06 23:26:20 +01003290 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003291 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3292 : buf->b_next)
3293#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003297#ifdef FEAT_TERMINAL
3298 job_running = term_job_running(buf->b_term);
3299 job_none_open = job_running && term_none_open(buf->b_term);
3300#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003301 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003302 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3303 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3304 || (vim_strchr(eap->arg, '+')
3305 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3306 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003307 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003308 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003309 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3310#ifdef FEAT_TERMINAL
3311 || (vim_strchr(eap->arg, 'R')
3312 && (!job_running || (job_running && job_none_open)))
3313 || (vim_strchr(eap->arg, '?')
3314 && (!job_running || (job_running && !job_none_open)))
3315 || (vim_strchr(eap->arg, 'F')
3316 && (job_running || buf->b_term == NULL))
3317#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003318 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3319 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3320 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3321 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3322 || (vim_strchr(eap->arg, '#')
3323 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003326 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 else
3328 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003329 if (message_filtered(NameBuff))
3330 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003332 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3333 : (bufIsChanged(buf) ? '+' : ' ');
3334#ifdef FEAT_TERMINAL
3335 if (term_job_running(buf->b_term))
3336 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003337 if (term_none_open(buf->b_term))
3338 ro_char = '?';
3339 else
3340 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003341 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3342 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003343 }
3344 else if (buf->b_term != NULL)
3345 ro_char = 'F';
3346 else
3347#endif
3348 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3349
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003350 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003351 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 buf->b_fnum,
3353 buf->b_p_bl ? ' ' : 'u',
3354 buf == curbuf ? '%' :
3355 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3356 buf->b_ml.ml_mfp == NULL ? ' ' :
3357 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003358 ro_char,
3359 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003360 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003361 if (len > IOSIZE - 20)
3362 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363
Bram Moolenaarc667da52019-11-30 20:52:27 +01003364 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 i = 40 - vim_strsize(IObuff);
3366 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003368 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003369#ifdef FEAT_VIMINFO
3370 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3371 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3372 else
3373#endif
3374 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3375 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003376 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003378 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 ui_breakcheck();
3380 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003381
3382#ifdef FEAT_VIMINFO
3383 if (buflist_data)
3384 ga_clear(&buflist);
3385#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387
3388/*
3389 * Get file name and line number for file 'fnum'.
3390 * Used by DoOneCmd() for translating '%' and '#'.
3391 * Used by insert_reg() and cmdline_paste() for '#' register.
3392 * Return FAIL if not found, OK for success.
3393 */
3394 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003395buflist_name_nr(
3396 int fnum,
3397 char_u **fname,
3398 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399{
3400 buf_T *buf;
3401
3402 buf = buflist_findnr(fnum);
3403 if (buf == NULL || buf->b_fname == NULL)
3404 return FAIL;
3405
3406 *fname = buf->b_fname;
3407 *lnum = buflist_findlnum(buf);
3408
3409 return OK;
3410}
3411
3412/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003413 * Set the file name for "buf"' to "ffname_arg", short file name to
3414 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 * The file name with the full path is also remembered, for when :cd is used.
3416 * Returns FAIL for failure (file name already in use by other buffer)
3417 * OK otherwise.
3418 */
3419 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003420setfname(
3421 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003422 char_u *ffname_arg,
3423 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003424 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003426 char_u *ffname = ffname_arg;
3427 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003428 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003430 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431#endif
3432
3433 if (ffname == NULL || *ffname == NUL)
3434 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003435 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003436 if (buf->b_sfname != buf->b_ffname)
3437 VIM_CLEAR(buf->b_sfname);
3438 else
3439 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003440 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441#ifdef UNIX
3442 st.st_dev = (dev_T)-1;
3443#endif
3444 }
3445 else
3446 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003447 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3448 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 return FAIL;
3450
3451 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003452 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 * - if the buffer is loaded, fail
3454 * - if the buffer is not loaded, delete it from the list
3455 */
3456#ifdef UNIX
3457 if (mch_stat((char *)ffname, &st) < 0)
3458 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003459#endif
3460 if (!(buf->b_flags & BF_DUMMY))
3461#ifdef UNIX
3462 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003464 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465#endif
3466 if (obuf != NULL && obuf != buf)
3467 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003468 win_T *win;
3469 tabpage_T *tab;
3470 int in_use = FALSE;
3471
3472 // during startup a window may use a buffer that is not loaded yet
3473 FOR_ALL_TAB_WINDOWS(tab, win)
3474 if (win->w_buffer == obuf)
3475 in_use = TRUE;
3476
3477 // it's loaded or used in a window, fail
3478 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 {
3480 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003481 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 vim_free(ffname);
3483 return FAIL;
3484 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003485 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003486 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 }
3488 sfname = vim_strsave(sfname);
3489 if (ffname == NULL || sfname == NULL)
3490 {
3491 vim_free(sfname);
3492 vim_free(ffname);
3493 return FAIL;
3494 }
3495#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003496 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003498 if (buf->b_sfname != buf->b_ffname)
3499 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 buf->b_ffname = ffname;
3502 buf->b_sfname = sfname;
3503 }
3504 buf->b_fname = buf->b_sfname;
3505#ifdef UNIX
3506 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003507 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 else
3509 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003510 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 buf->b_dev = st.st_dev;
3512 buf->b_ino = st.st_ino;
3513 }
3514#endif
3515
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517
3518 buf_name_changed(buf);
3519 return OK;
3520}
3521
3522/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003523 * Crude way of changing the name of a buffer. Use with care!
3524 * The name should be relative to the current directory.
3525 */
3526 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003527buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003528{
3529 buf_T *buf;
3530
3531 buf = buflist_findnr(fnum);
3532 if (buf != NULL)
3533 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003534 if (buf->b_sfname != buf->b_ffname)
3535 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003536 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003537 buf->b_ffname = vim_strsave(name);
3538 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003539 // Allocate ffname and expand into full path. Also resolves .lnk
3540 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003541 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003542 buf->b_fname = buf->b_sfname;
3543 }
3544}
3545
3546/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 * Take care of what needs to be done when the name of buffer "buf" has
3548 * changed.
3549 */
3550 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003551buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552{
3553 /*
3554 * If the file name changed, also change the name of the swapfile
3555 */
3556 if (buf->b_ml.ml_mfp != NULL)
3557 ml_setname(buf);
3558
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003559#ifdef FEAT_TERMINAL
3560 if (buf->b_term != NULL)
3561 term_clear_status_text(buf->b_term);
3562#endif
3563
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003565 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003566 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003567 status_redraw_all(); // status lines need to be redrawn
3568 fmarks_check_names(buf); // check named file marks
3569 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570}
3571
3572/*
3573 * set alternate file name for current window
3574 *
3575 * Used by do_one_cmd(), do_write() and do_ecmd().
3576 * Return the buffer.
3577 */
3578 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003579setaltfname(
3580 char_u *ffname,
3581 char_u *sfname,
3582 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583{
3584 buf_T *buf;
3585
Bram Moolenaarc667da52019-11-30 20:52:27 +01003586 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003588 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 curwin->w_alt_fnum = buf->b_fnum;
3590 return buf;
3591}
3592
3593/*
3594 * Get alternate file name for current window.
3595 * Return NULL if there isn't any, and give error message if requested.
3596 */
3597 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003598getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003599 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600{
3601 char_u *fname;
3602 linenr_T dummy;
3603
3604 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3605 {
3606 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003607 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 return NULL;
3609 }
3610 return fname;
3611}
3612
3613/*
3614 * Add a file name to the buflist and return its number.
3615 * Uses same flags as buflist_new(), except BLN_DUMMY.
3616 *
3617 * used by qf_init(), main() and doarglist()
3618 */
3619 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003620buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621{
3622 buf_T *buf;
3623
3624 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3625 if (buf != NULL)
3626 return buf->b_fnum;
3627 return 0;
3628}
3629
3630#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3631/*
3632 * Adjust slashes in file names. Called after 'shellslash' was set.
3633 */
3634 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003635buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636{
3637 buf_T *bp;
3638
Bram Moolenaar29323592016-07-24 22:04:11 +02003639 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 {
3641 if (bp->b_ffname != NULL)
3642 slash_adjust(bp->b_ffname);
3643 if (bp->b_sfname != NULL)
3644 slash_adjust(bp->b_sfname);
3645 }
3646}
3647#endif
3648
3649/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003650 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 * Also save the local window option values.
3652 */
3653 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003654buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003656 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657}
3658
3659/*
3660 * Return TRUE if 'ffname' is not the same file as current file.
3661 * Fname must have a full path (expanded by mch_FullName()).
3662 */
3663 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003664otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665{
3666 return otherfile_buf(curbuf, ffname
3667#ifdef UNIX
3668 , NULL
3669#endif
3670 );
3671}
3672
3673 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003674otherfile_buf(
3675 buf_T *buf,
3676 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003678 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003680 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003682 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3684 return TRUE;
3685 if (fnamecmp(ffname, buf->b_ffname) == 0)
3686 return FALSE;
3687#ifdef UNIX
3688 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003689 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690
Bram Moolenaarc667da52019-11-30 20:52:27 +01003691 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 if (stp == NULL)
3693 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003694 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 st.st_dev = (dev_T)-1;
3696 stp = &st;
3697 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003698 // Use dev/ino to check if the files are the same, even when the names
3699 // are different (possible with links). Still need to compare the
3700 // name above, for when the file doesn't exist yet.
3701 // Problem: The dev/ino changes when a file is deleted (and created
3702 // again) and remains the same when renamed/moved. We don't want to
3703 // mch_stat() each buffer each time, that would be too slow. Get the
3704 // dev/ino again when they appear to match, but not when they appear
3705 // to be different: Could skip a buffer when it's actually the same
3706 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 if (buf_same_ino(buf, stp))
3708 {
3709 buf_setino(buf);
3710 if (buf_same_ino(buf, stp))
3711 return FALSE;
3712 }
3713 }
3714#endif
3715 return TRUE;
3716}
3717
3718#if defined(UNIX) || defined(PROTO)
3719/*
3720 * Set inode and device number for a buffer.
3721 * Must always be called when b_fname is changed!.
3722 */
3723 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003724buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003726 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727
3728 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3729 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003730 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 buf->b_dev = st.st_dev;
3732 buf->b_ino = st.st_ino;
3733 }
3734 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003735 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736}
3737
3738/*
3739 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3740 */
3741 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003742buf_same_ino(
3743 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003744 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003746 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 && stp->st_dev == buf->b_dev
3748 && stp->st_ino == buf->b_ino);
3749}
3750#endif
3751
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003752/*
3753 * Print info about the current buffer.
3754 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003756fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003757 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003758 int shorthelp,
3759 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760{
3761 char_u *name;
3762 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003763 char *p;
3764 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003765 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003767 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 if (buffer == NULL)
3769 return;
3770
Bram Moolenaarc667da52019-11-30 20:52:27 +01003771 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003773 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 p = buffer + STRLEN(buffer);
3775 }
3776 else
3777 p = buffer;
3778
3779 *p++ = '"';
3780 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003781 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 else
3783 {
3784 if (!fullname && curbuf->b_fname != NULL)
3785 name = curbuf->b_fname;
3786 else
3787 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003788 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 (int)(IOSIZE - (p - buffer)), TRUE);
3790 }
3791
Bram Moolenaar32526b32019-01-19 17:43:09 +01003792 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 curbufIsChanged() ? (shortmess(SHM_MOD)
3794 ? " [+]" : _(" [Modified]")) : " ",
3795 (curbuf->b_flags & BF_NOTEDITED)
3796#ifdef FEAT_QUICKFIX
3797 && !bt_dontwrite(curbuf)
3798#endif
3799 ? _("[Not edited]") : "",
3800 (curbuf->b_flags & BF_NEW)
3801#ifdef FEAT_QUICKFIX
3802 && !bt_dontwrite(curbuf)
3803#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003804 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003806 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 : _("[readonly]")) : "",
3808 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3809 || curbuf->b_p_ro) ?
3810 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003811 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3812 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 if (curwin->w_cursor.lnum > 1000000L)
3814 n = (int)(((long)curwin->w_cursor.lnum) /
3815 ((long)curbuf->b_ml.ml_line_count / 100L));
3816 else
3817 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3818 (long)curbuf->b_ml.ml_line_count);
3819 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003820 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821#ifdef FEAT_CMDL_INFO
3822 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003823 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003824 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003825 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3826 curbuf->b_ml.ml_line_count),
3827 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828#endif
3829 else
3830 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003831 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 _("line %ld of %ld --%d%%-- col "),
3833 (long)curwin->w_cursor.lnum,
3834 (long)curbuf->b_ml.ml_line_count,
3835 n);
3836 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003837 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003838 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3840 }
3841
Bram Moolenaar32526b32019-01-19 17:43:09 +01003842 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3843 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844
3845 if (dont_truncate)
3846 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003847 // Temporarily set msg_scroll to avoid the message being truncated.
3848 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 msg_start();
3850 n = msg_scroll;
3851 msg_scroll = TRUE;
3852 msg(buffer);
3853 msg_scroll = n;
3854 }
3855 else
3856 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003857 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003859 // Need to repeat the message after redrawing when:
3860 // - When restart_edit is set (otherwise there will be a delay
3861 // before redrawing).
3862 // - When the screen was scrolled but there is no wait-return
3863 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003864 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 }
3866
3867 vim_free(buffer);
3868}
3869
3870 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003871col_print(
3872 char_u *buf,
3873 size_t buflen,
3874 int col,
3875 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876{
3877 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003878 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003880 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881}
3882
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883static char_u *lasttitle = NULL;
3884static char_u *lasticon = NULL;
3885
Bram Moolenaar84a93082018-06-16 22:58:15 +02003886/*
3887 * Put the file name in the title bar and icon of the window.
3888 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003890maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891{
3892 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003893 char_u *title_str = NULL;
3894 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 int maxlen = 0;
3896 int len;
3897 int mustset;
3898 char_u buf[IOSIZE];
3899 int off;
3900
3901 if (!redrawing())
3902 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003903 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 need_maketitle = TRUE;
3905 return;
3906 }
3907
3908 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003909 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003910 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911
3912 if (p_title)
3913 {
3914 if (p_titlelen > 0)
3915 {
3916 maxlen = p_titlelen * Columns / 100;
3917 if (maxlen < 10)
3918 maxlen = 10;
3919 }
3920
Bram Moolenaar84a93082018-06-16 22:58:15 +02003921 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 if (*p_titlestring != NUL)
3923 {
3924#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003925 if (stl_syntax & STL_IN_TITLE)
3926 {
3927 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003928 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003929
3930# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003931 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003932# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003933 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003934 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003935 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003936 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003937 set_string_option_direct((char_u *)"titlestring", -1,
3938 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003939 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 else
3941#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003942 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 }
3944 else
3945 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003946 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947
Bram Moolenaar2c666692012-09-05 13:30:40 +02003948#define SPACE_FOR_FNAME (IOSIZE - 100)
3949#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003950#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003952 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003953#ifdef FEAT_TERMINAL
3954 else if (curbuf->b_term != NULL)
3955 {
3956 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3957 SPACE_FOR_FNAME);
3958 }
3959#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 else
3961 {
3962 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003963 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 }
3966
Bram Moolenaar21554412017-07-24 21:44:43 +02003967#ifdef FEAT_TERMINAL
3968 if (curbuf->b_term == NULL)
3969#endif
3970 switch (bufIsChanged(curbuf)
3971 + (curbuf->b_p_ro * 2)
3972 + (!curbuf->b_p_ma * 4))
3973 {
3974 case 1: STRCAT(buf, " +"); break;
3975 case 2: STRCAT(buf, " ="); break;
3976 case 3: STRCAT(buf, " =+"); break;
3977 case 4:
3978 case 6: STRCAT(buf, " -"); break;
3979 case 5:
3980 case 7: STRCAT(buf, " -+"); break;
3981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982
Bram Moolenaar21554412017-07-24 21:44:43 +02003983 if (curbuf->b_fname != NULL
3984#ifdef FEAT_TERMINAL
3985 && curbuf->b_term == NULL
3986#endif
3987 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003989 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 off = (int)STRLEN(buf);
3991 buf[off++] = ' ';
3992 buf[off++] = '(';
3993 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003994 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003996 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 if (isalpha(buf[off]) && buf[off + 1] == ':')
3998 off += 2;
3999#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01004000 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004001 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02004003 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004004 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02004005 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02004006 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02004007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004010
Bram Moolenaarc667da52019-11-30 20:52:27 +01004011 // Translate unprintable chars and concatenate. Keep some
4012 // room for the server name. When there is no room (very long
4013 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02004014 if (off < SPACE_FOR_DIR)
4015 {
4016 p = transstr(buf + off);
4017 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4018 vim_free(p);
4019 }
4020 else
4021 {
4022 vim_strncpy(buf + off, (char_u *)"...",
4023 (size_t)(SPACE_FOR_ARGNR - off));
4024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 STRCAT(buf, ")");
4026 }
4027
Bram Moolenaar2c666692012-09-05 13:30:40 +02004028 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029
4030#if defined(FEAT_CLIENTSERVER)
4031 if (serverName != NULL)
4032 {
4033 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004034 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 }
4036 else
4037#endif
4038 STRCAT(buf, " - VIM");
4039
4040 if (maxlen > 0)
4041 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004042 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004043 if (vim_strsize(buf) > maxlen)
4044 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 }
4046 }
4047 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004048 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
4050 if (p_icon)
4051 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004052 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 if (*p_iconstring != NUL)
4054 {
4055#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004056 if (stl_syntax & STL_IN_ICON)
4057 {
4058 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004059 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004060
4061# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004062 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004063# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004064 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004065 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004066 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004067 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004068 set_string_option_direct((char_u *)"iconstring", -1,
4069 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 else
4072#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004073 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 }
4075 else
4076 {
4077 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004078 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004079 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004080 p = gettail(curbuf->b_ffname);
4081 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004082 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004083 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 if (len > 100)
4085 {
4086 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004088 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004089 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004091 STRCPY(icon_str, p);
4092 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 }
4094 }
4095
Bram Moolenaar84a93082018-06-16 22:58:15 +02004096 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097
4098 if (mustset)
4099 resettitle();
4100}
4101
4102/*
4103 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4104 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004105 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 */
4107 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004108value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109{
4110 if ((str == NULL) != (*last == NULL)
4111 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4112 {
4113 vim_free(*last);
4114 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004115 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004117 mch_restore_title(
4118 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004121 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004123 return TRUE;
4124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 }
4126 return FALSE;
4127}
4128
4129/*
4130 * Put current window title back (used after calling a shell)
4131 */
4132 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004133resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134{
4135 mch_settitle(lasttitle, lasticon);
4136}
Bram Moolenaarea408852005-06-25 22:49:46 +00004137
4138# if defined(EXITFREE) || defined(PROTO)
4139 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004140free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004141{
4142 vim_free(lasttitle);
4143 vim_free(lasticon);
4144}
4145# endif
4146
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004148#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004149
4150/*
4151 * Used for building in the status line.
4152 */
4153typedef struct
4154{
4155 char_u *stl_start;
4156 int stl_minwid;
4157 int stl_maxwid;
4158 enum {
4159 Normal,
4160 Empty,
4161 Group,
4162 Middle,
4163 Highlight,
4164 TabPage,
4165 Trunc
4166 } stl_type;
4167} stl_item_T;
4168
4169static size_t stl_items_len = 20; // Initial value, grows as needed.
4170static stl_item_T *stl_items = NULL;
4171static int *stl_groupitem = NULL;
4172static stl_hlrec_T *stl_hltab = NULL;
4173static stl_hlrec_T *stl_tabtab = NULL;
4174
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004176 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 * Return length of string in screen cells.
4178 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004179 * Normally works for window "wp", except when working for 'tabline' then it
4180 * is "curwin".
4181 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 * Items are drawn interspersed with the text that surrounds it
4183 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4184 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4185 *
4186 * If maxwidth is not zero, the string will be filled at any middle marker
4187 * or truncated if too long, fillchar is used for all whitespace.
4188 */
4189 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004190build_stl_str_hl(
4191 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004192 char_u *out, // buffer to write into != NameBuff
4193 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004194 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004195 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004196 int fillchar,
4197 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004198 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4199 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200{
Bram Moolenaar10772302019-01-20 18:25:54 +01004201 linenr_T lnum;
4202 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 char_u *p;
4204 char_u *s;
4205 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004206 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004208 win_T *save_curwin;
4209 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004210 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211#endif
4212 int empty_line;
4213 colnr_T virtcol;
4214 long l;
4215 long n;
4216 int prevchar_isflag;
4217 int prevchar_isitem;
4218 int itemisflag;
4219 int fillable;
4220 char_u *str;
4221 long num;
4222 int width;
4223 int itemcnt;
4224 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004225 int group_end_userhl;
4226 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004228#ifdef FEAT_EVAL
4229 int evaldepth;
4230#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 int minwid;
4232 int maxwid;
4233 int zeropad;
4234 char_u base;
4235 char_u opt;
4236#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004237 char_u buf_tmp[TMPLEN];
4238 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004239 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004240 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004241 int save_must_redraw = must_redraw;
4242 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004243 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004244
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004245 if (stl_items == NULL)
4246 {
4247 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4248 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004249
4250 // Allocate one more, because the last element is used to indicate the
4251 // end of the list.
4252 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4253 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004254 }
4255
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004256#ifdef FEAT_EVAL
4257 /*
4258 * When the format starts with "%!" then evaluate it as an expression and
4259 * use the result as the actual format string.
4260 */
4261 if (fmt[0] == '%' && fmt[1] == '!')
4262 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004263 typval_T tv;
4264
4265 tv.v_type = VAR_NUMBER;
4266 tv.vval.v_number = wp->w_id;
4267 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4268
Bram Moolenaar9530b582022-01-22 13:39:08 +00004269 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004270 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004271 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004272
4273 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004274 }
4275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276
4277 if (fillchar == 0)
4278 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004279
Bram Moolenaar10772302019-01-20 18:25:54 +01004280 // The cursor in windows other than the current one isn't always
4281 // up-to-date, esp. because of autocommands and timers.
4282 lnum = wp->w_cursor.lnum;
4283 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4284 {
4285 lnum = wp->w_buffer->b_ml.ml_line_count;
4286 wp->w_cursor.lnum = lnum;
4287 }
4288
4289 // Get line & check if empty (cursorpos will show "0-1"). Note that
4290 // p will become invalid when getting another buffer line.
4291 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004292 empty_line = (*p == NUL);
4293
Bram Moolenaar10772302019-01-20 18:25:54 +01004294 // Get the byte value now, in case we need it below. This is more efficient
4295 // than making a copy of the line.
4296 len = STRLEN(p);
4297 if (wp->w_cursor.col > (colnr_T)len)
4298 {
4299 // Line may have changed since checking the cursor column, or the lnum
4300 // was adjusted above.
4301 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004302 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004303 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004304 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004305 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004306 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307
4308 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004309#ifdef FEAT_EVAL
4310 evaldepth = 0;
4311#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 p = out;
4313 curitem = 0;
4314 prevchar_isflag = TRUE;
4315 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004316 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004318 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004319 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004320 size_t new_len = stl_items_len * 3 / 2;
4321 stl_item_T *new_items;
4322 int *new_groupitem;
4323 stl_hlrec_T *new_hlrec;
4324
4325 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4326 if (new_items == NULL)
4327 break;
4328 stl_items = new_items;
4329 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4330 if (new_groupitem == NULL)
4331 break;
4332 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004333 new_hlrec = vim_realloc(stl_hltab,
4334 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004335 if (new_hlrec == NULL)
4336 break;
4337 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004338 new_hlrec = vim_realloc(stl_tabtab,
4339 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004340 if (new_hlrec == NULL)
4341 break;
4342 stl_tabtab = new_hlrec;
4343 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004344 }
4345
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 if (*s != NUL && *s != '%')
4347 prevchar_isflag = prevchar_isitem = FALSE;
4348
4349 /*
4350 * Handle up to the next '%' or the end.
4351 */
4352 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4353 *p++ = *s++;
4354 if (*s == NUL || p + 1 >= out + outlen)
4355 break;
4356
4357 /*
4358 * Handle one '%' item.
4359 */
4360 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004361 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004362 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 if (*s == '%')
4364 {
4365 if (p + 1 >= out + outlen)
4366 break;
4367 *p++ = *s++;
4368 prevchar_isflag = prevchar_isitem = FALSE;
4369 continue;
4370 }
4371 if (*s == STL_MIDDLEMARK)
4372 {
4373 s++;
4374 if (groupdepth > 0)
4375 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004376 stl_items[curitem].stl_type = Middle;
4377 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 continue;
4379 }
4380 if (*s == STL_TRUNCMARK)
4381 {
4382 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004383 stl_items[curitem].stl_type = Trunc;
4384 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 continue;
4386 }
4387 if (*s == ')')
4388 {
4389 s++;
4390 if (groupdepth < 1)
4391 continue;
4392 groupdepth--;
4393
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004394 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 *p = NUL;
4396 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004397 if (curitem > stl_groupitem[groupdepth] + 1
4398 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004400 // remove group if all items are empty and highlight group
4401 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004402 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004403 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004404 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004405 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004406 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004407 group_start_userhl = group_end_userhl =
4408 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004409 break;
4410 }
4411 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004412 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004413 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004414 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004416 if (stl_items[n].stl_type == Highlight)
4417 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004418 }
4419 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004421 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 p = t;
4423 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004424 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004425 {
4426 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004427 if (stl_items[n].stl_type == Highlight)
4428 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004429 // adjust the start position of TabPage to the next
4430 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004431 if (stl_items[n].stl_type == TabPage)
4432 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 }
4435 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004436 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004438 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 if (has_mbyte)
4440 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004441 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004443 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 {
4445 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004446 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 }
4448 }
4449 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004450 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4451 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452
4453 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004454 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004456
4457 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004458 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004459 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460
Bram Moolenaarc667da52019-11-30 20:52:27 +01004461 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004462 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004464 stl_items[l].stl_start -= n;
4465 if (stl_items[l].stl_start < t)
4466 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004469 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004471 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004472 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 if (n < 0)
4474 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004475 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 n = 0 - n;
4477 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004478 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 }
4480 else
4481 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004482 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004483 l = (n - l) * MB_CHAR2LEN(fillchar);
4484 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004486 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004488 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4489 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004491 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 }
4493 }
4494 continue;
4495 }
4496 minwid = 0;
4497 maxwid = 9999;
4498 zeropad = FALSE;
4499 l = 1;
4500 if (*s == '0')
4501 {
4502 s++;
4503 zeropad = TRUE;
4504 }
4505 if (*s == '-')
4506 {
4507 s++;
4508 l = -1;
4509 }
4510 if (VIM_ISDIGIT(*s))
4511 {
4512 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004513 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 minwid = 0;
4515 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004516 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004518 stl_items[curitem].stl_type = Highlight;
4519 stl_items[curitem].stl_start = p;
4520 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 s++;
4522 curitem++;
4523 continue;
4524 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004525 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4526 {
4527 if (*s == STL_TABCLOSENR)
4528 {
4529 if (minwid == 0)
4530 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004531 // %X ends the close label, go back to the previously
4532 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004533 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004534 if (stl_items[n].stl_type == TabPage
4535 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004536 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004537 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004538 break;
4539 }
4540 }
4541 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004542 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004543 minwid = - minwid;
4544 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004545 stl_items[curitem].stl_type = TabPage;
4546 stl_items[curitem].stl_start = p;
4547 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004548 s++;
4549 curitem++;
4550 continue;
4551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 if (*s == '.')
4553 {
4554 s++;
4555 if (VIM_ISDIGIT(*s))
4556 {
4557 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004558 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 maxwid = 50;
4560 }
4561 }
4562 minwid = (minwid > 50 ? 50 : minwid) * l;
4563 if (*s == '(')
4564 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004565 stl_groupitem[groupdepth++] = curitem;
4566 stl_items[curitem].stl_type = Group;
4567 stl_items[curitem].stl_start = p;
4568 stl_items[curitem].stl_minwid = minwid;
4569 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 s++;
4571 curitem++;
4572 continue;
4573 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004574#ifdef FEAT_EVAL
4575 // Denotes end of expanded %{} block
4576 if (*s == '}' && evaldepth > 0)
4577 {
4578 s++;
4579 evaldepth--;
4580 continue;
4581 }
4582#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 if (vim_strchr(STL_ALL, *s) == NULL)
4584 {
4585 s++;
4586 continue;
4587 }
4588 opt = *s++;
4589
Bram Moolenaarc667da52019-11-30 20:52:27 +01004590 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 base = 'D';
4592 itemisflag = FALSE;
4593 fillable = TRUE;
4594 num = -1;
4595 str = NULL;
4596 switch (opt)
4597 {
4598 case STL_FILEPATH:
4599 case STL_FULLPATH:
4600 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004601 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004603 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 else
4605 {
4606 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004607 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4609 }
4610 trans_characters(NameBuff, MAXPATHL);
4611 if (opt != STL_FILENAME)
4612 str = NameBuff;
4613 else
4614 str = gettail(NameBuff);
4615 break;
4616
Bram Moolenaarc667da52019-11-30 20:52:27 +01004617 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004618 {
4619#ifdef FEAT_EVAL
4620 char_u *block_start = s - 1;
4621#endif
4622 int reevaluate = (*s == '%');
4623
4624 if (reevaluate)
4625 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 itemisflag = TRUE;
4627 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004628 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4629 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004631 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 break;
4633 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004634 if (reevaluate)
4635 p[-1] = 0; // remove the % at the end of %{% expr %}
4636 else
4637 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004640 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4641 "%d", curbuf->b_fnum);
4642 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4643 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4644 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004646 save_curbuf = curbuf;
4647 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004648 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 curwin = wp;
4650 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004651 // Visual mode is only valid in the current window.
4652 if (curwin != save_curwin)
4653 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654
Bram Moolenaar9530b582022-01-22 13:39:08 +00004655 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004657 curwin = save_curwin;
4658 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004659 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004660 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004661 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662
4663 if (str != NULL && *str != 0)
4664 {
4665 if (*skipdigits(str) == NUL)
4666 {
4667 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004668 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 itemisflag = FALSE;
4670 }
4671 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004672
4673 // If the output of the expression needs to be evaluated
4674 // replace the %{} block with the result of evaluation
4675 if (reevaluate && str != NULL && *str != 0
4676 && strchr((const char *)str, '%') != NULL
4677 && evaldepth < MAX_STL_EVAL_DEPTH)
4678 {
4679 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4680 size_t str_length = strlen((const char *)str);
4681 size_t fmt_length = strlen((const char *)s);
4682 size_t new_fmt_len = parsed_usefmt
4683 + str_length + fmt_length + 3;
4684 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4685 char_u *new_fmt_p = new_fmt;
4686
4687 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4688 + parsed_usefmt;
4689 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4690 + str_length;
4691 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4692 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4693 + fmt_length;
4694 *new_fmt_p = 0;
4695 new_fmt_p = NULL;
4696
4697 if (usefmt != fmt)
4698 vim_free(usefmt);
4699 VIM_CLEAR(str);
4700 usefmt = new_fmt;
4701 s = usefmt + parsed_usefmt;
4702 evaldepth++;
4703 continue;
4704 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705#endif
4706 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004707 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 case STL_LINE:
4709 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4710 ? 0L : (long)(wp->w_cursor.lnum);
4711 break;
4712
4713 case STL_NUMLINES:
4714 num = wp->w_buffer->b_ml.ml_line_count;
4715 break;
4716
4717 case STL_COLUMN:
4718 num = !(State & INSERT) && empty_line
4719 ? 0 : (int)wp->w_cursor.col + 1;
4720 break;
4721
4722 case STL_VIRTCOL:
4723 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004724 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004725 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 if (opt == STL_VIRTCOL_ALT
4727 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4728 ? 0 : (int)wp->w_cursor.col + 1)))
4729 break;
4730 num = (long)virtcol;
4731 break;
4732
4733 case STL_PERCENTAGE:
4734 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4735 (long)wp->w_buffer->b_ml.ml_line_count);
4736 break;
4737
4738 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004739 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004740 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 break;
4742
4743 case STL_ARGLISTSTAT:
4744 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004745 buf_tmp[0] = 0;
4746 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4747 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 break;
4749
4750 case STL_KEYMAP:
4751 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004752 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4753 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 break;
4755 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004756#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004757 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758#else
4759 num = 0;
4760#endif
4761 break;
4762
4763 case STL_BUFNO:
4764 num = wp->w_buffer->b_fnum;
4765 break;
4766
4767 case STL_OFFSET_X:
4768 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004769 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 case STL_OFFSET:
4771#ifdef FEAT_BYTEOFF
4772 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4773 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4774 0L : l + 1 + (!(State & INSERT) && empty_line ?
4775 0 : (int)wp->w_cursor.col);
4776#endif
4777 break;
4778
4779 case STL_BYTEVAL_X:
4780 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004781 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004783 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 if (num == NL)
4785 num = 0;
4786 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4787 num = NL;
4788 break;
4789
4790 case STL_ROFLAG:
4791 case STL_ROFLAG_ALT:
4792 itemisflag = TRUE;
4793 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004794 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 break;
4796
4797 case STL_HELPFLAG:
4798 case STL_HELPFLAG_ALT:
4799 itemisflag = TRUE;
4800 if (wp->w_buffer->b_help)
4801 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004802 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 break;
4804
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 case STL_FILETYPE:
4806 if (*wp->w_buffer->b_p_ft != NUL
4807 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4808 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004809 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004810 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004811 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 }
4813 break;
4814
4815 case STL_FILETYPE_ALT:
4816 itemisflag = TRUE;
4817 if (*wp->w_buffer->b_p_ft != NUL
4818 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4819 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004820 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004821 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004822 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004824 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 }
4826 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827
Bram Moolenaar4033c552017-09-16 20:54:51 +02004828#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 case STL_PREVIEWFLAG:
4830 case STL_PREVIEWFLAG_ALT:
4831 itemisflag = TRUE;
4832 if (wp->w_p_pvw)
4833 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4834 : _("[Preview]"));
4835 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004836
4837 case STL_QUICKFIX:
4838 if (bt_quickfix(wp->w_buffer))
4839 str = (char_u *)(wp->w_llist_ref
4840 ? _(msg_loclist)
4841 : _(msg_qflist));
4842 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843#endif
4844
4845 case STL_MODIFIED:
4846 case STL_MODIFIED_ALT:
4847 itemisflag = TRUE;
4848 switch ((opt == STL_MODIFIED_ALT)
4849 + bufIsChanged(wp->w_buffer) * 2
4850 + (!wp->w_buffer->b_p_ma) * 4)
4851 {
4852 case 2: str = (char_u *)"[+]"; break;
4853 case 3: str = (char_u *)",+"; break;
4854 case 4: str = (char_u *)"[-]"; break;
4855 case 5: str = (char_u *)",-"; break;
4856 case 6: str = (char_u *)"[+-]"; break;
4857 case 7: str = (char_u *)",+-"; break;
4858 }
4859 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004860
4861 case STL_HIGHLIGHT:
4862 t = s;
4863 while (*s != '#' && *s != NUL)
4864 ++s;
4865 if (*s == '#')
4866 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004867 stl_items[curitem].stl_type = Highlight;
4868 stl_items[curitem].stl_start = p;
4869 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004870 curitem++;
4871 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004872 if (*s != NUL)
4873 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004874 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 }
4876
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004877 stl_items[curitem].stl_start = p;
4878 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 if (str != NULL && *str)
4880 {
4881 t = str;
4882 if (itemisflag)
4883 {
4884 if ((t[0] && t[1])
4885 && ((!prevchar_isitem && *t == ',')
4886 || (prevchar_isflag && *t == ' ')))
4887 t++;
4888 prevchar_isflag = TRUE;
4889 }
4890 l = vim_strsize(t);
4891 if (l > 0)
4892 prevchar_isitem = TRUE;
4893 if (l > maxwid)
4894 {
4895 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 if (has_mbyte)
4897 {
4898 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004899 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 }
4901 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 l -= byte2cells(*t++);
4903 if (p + 1 >= out + outlen)
4904 break;
4905 *p++ = '<';
4906 }
4907 if (minwid > 0)
4908 {
4909 for (; l < minwid && p + 1 < out + outlen; l++)
4910 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004911 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4913 *p++ = ' ';
4914 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004915 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 }
4917 minwid = 0;
4918 }
4919 else
4920 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004921 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004923 // Change a space by fillchar, unless fillchar is '-' and a
4924 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004925 if (fillable && *t == ' '
4926 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4927 MB_CHAR2BYTES(fillchar, p);
4928 else
4929 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 }
4931 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004932 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 }
4934 else if (num >= 0)
4935 {
4936 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4937 char_u nstr[20];
4938
4939 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004940 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 prevchar_isitem = TRUE;
4942 t = nstr;
4943 if (opt == STL_VIRTCOL_ALT)
4944 {
4945 *t++ = '-';
4946 minwid--;
4947 }
4948 *t++ = '%';
4949 if (zeropad)
4950 *t++ = '0';
4951 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004952 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 *t = 0;
4954
4955 for (n = num, l = 1; n >= nbase; n /= nbase)
4956 l++;
4957 if (opt == STL_VIRTCOL_ALT)
4958 l++;
4959 if (l > maxwid)
4960 {
4961 l += 2;
4962 n = l - maxwid;
4963 while (l-- > maxwid)
4964 num /= nbase;
4965 *t++ = '>';
4966 *t++ = '%';
4967 *t = t[-3];
4968 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004969 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4970 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
4972 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004973 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4974 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 p += STRLEN(p);
4976 }
4977 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004978 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979
4980 if (opt == STL_VIM_EXPR)
4981 vim_free(str);
4982
4983 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004984 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 curitem++;
4986 }
4987 *p = NUL;
4988 itemcnt = curitem;
4989
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004990#ifdef FEAT_EVAL
4991 if (usefmt != fmt)
4992 vim_free(usefmt);
4993#endif
4994
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 width = vim_strsize(out);
4996 if (maxwidth > 0 && width > maxwidth)
4997 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004998 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 l = 0;
5000 if (itemcnt == 0)
5001 s = out;
5002 else
5003 {
5004 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005005 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005007 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005008 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 break;
5010 }
5011 if (l == itemcnt)
5012 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005013 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005014 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 l = 0;
5016 }
5017 }
5018
5019 if (width - vim_strsize(s) >= maxwidth)
5020 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005021 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 if (has_mbyte)
5023 {
5024 s = out;
5025 width = 0;
5026 for (;;)
5027 {
5028 width += ptr2cells(s);
5029 if (width >= maxwidth)
5030 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005031 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005033 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005035 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 }
5037 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 s = out + maxwidth - 1;
5039 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005040 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 break;
5042 itemcnt = l;
5043 *s++ = '>';
5044 *s = 0;
5045 }
5046 else
5047 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 if (has_mbyte)
5049 {
5050 n = 0;
5051 while (width >= maxwidth)
5052 {
5053 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005054 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 }
5056 }
5057 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 n = width - maxwidth + 1;
5059 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005060 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 *s = '<';
5062
Bram Moolenaarc667da52019-11-30 20:52:27 +01005063 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 while (++width < maxwidth)
5065 {
5066 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005067 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 *s = NUL;
5069 }
5070
Bram Moolenaarc667da52019-11-30 20:52:27 +01005071 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 for (; l < itemcnt; l++)
5073 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005074 if (stl_items[l].stl_start - n >= s)
5075 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005077 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 }
5079 }
5080 width = maxwidth;
5081 }
5082 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5083 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005084 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005086 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 break;
5088 if (l < itemcnt)
5089 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005090 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5091 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005092 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005093 for (s = stl_items[l].stl_start; s < p;)
5094 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005096 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 width = maxwidth;
5098 }
5099 }
5100
Bram Moolenaarc667da52019-11-30 20:52:27 +01005101 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005102 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005104 *hltab = stl_hltab;
5105 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 for (l = 0; l < itemcnt; l++)
5107 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005108 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005110 sp->start = stl_items[l].stl_start;
5111 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005112 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 }
5114 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005115 sp->start = NULL;
5116 sp->userhl = 0;
5117 }
5118
Bram Moolenaarc667da52019-11-30 20:52:27 +01005119 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005120 if (tabtab != NULL)
5121 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005122 *tabtab = stl_tabtab;
5123 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005124 for (l = 0; l < itemcnt; l++)
5125 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005126 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005127 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005128 sp->start = stl_items[l].stl_start;
5129 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005130 sp++;
5131 }
5132 }
5133 sp->start = NULL;
5134 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 }
5136
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005137 // When inside update_screen we do not want redrawing a statusline, ruler,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005138 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005139 if (updating_screen)
5140 {
5141 must_redraw = save_must_redraw;
5142 curwin->w_redr_type = save_redr_type;
5143 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005144
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005145 // A user function may reset KeyTyped, restore it.
5146 KeyTyped = save_KeyTyped;
5147
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 return width;
5149}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005150#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005152#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5153 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005155 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5156 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 */
5158 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005159get_rel_pos(
5160 win_T *wp,
5161 char_u *buf,
5162 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005164 long above; // number of lines above window
5165 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166
Bram Moolenaarc667da52019-11-30 20:52:27 +01005167 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005168 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 above = wp->w_topline - 1;
5170#ifdef FEAT_DIFF
5171 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005172 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005173 above = 0; // All buffer lines are displayed and there is an
5174 // indication of filler lines, that can be considered
5175 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176#endif
5177 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5178 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005179 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5180 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005182 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005184 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 ? (int)(above / ((above + below) / 100L))
5186 : (int)(above * 100L / (above + below)));
5187}
5188#endif
5189
5190/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005191 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 * Return TRUE if it was appended.
5193 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005194 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005195append_arg_number(
5196 win_T *wp,
5197 char_u *buf,
5198 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005199 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200{
5201 char_u *p;
5202
Bram Moolenaarc667da52019-11-30 20:52:27 +01005203 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 return FALSE;
5205
Bram Moolenaarc667da52019-11-30 20:52:27 +01005206 p = buf + STRLEN(buf); // go to the end of the buffer
5207 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 return FALSE;
5209 *p++ = ' ';
5210 *p++ = '(';
5211 if (add_file)
5212 {
5213 STRCPY(p, "file ");
5214 p += 5;
5215 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005216 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5217 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5219 return TRUE;
5220}
5221
5222/*
5223 * If fname is not a full path, make it a full path.
5224 * Returns pointer to allocated memory (NULL for failure).
5225 */
5226 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005227fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228{
5229 /*
5230 * Force expanding the path always for Unix, because symbolic links may
5231 * mess up the full path name, even though it starts with a '/'.
5232 * Also expand when there is ".." in the file name, try to remove it,
5233 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005234 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 * For MS-Windows also expand names like "longna~1" to "longname".
5236 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005237#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 return FullName_save(fname, TRUE);
5239#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005240 if (!vim_isAbsName(fname)
5241 || strstr((char *)fname, "..") != NULL
5242 || strstr((char *)fname, "//") != NULL
5243# ifdef BACKSLASH_IN_FILENAME
5244 || strstr((char *)fname, "\\\\") != NULL
5245# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005246# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005248# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 )
5250 return FullName_save(fname, FALSE);
5251
5252 fname = vim_strsave(fname);
5253
Bram Moolenaar9b942202007-10-03 12:31:33 +00005254# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005255 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005256 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005257# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258
5259 return fname;
5260#endif
5261}
5262
5263/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005264 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5265 * "*ffname" becomes a pointer to allocated memory (or NULL).
5266 * When resolving a link both "*sfname" and "*ffname" will point to the same
5267 * allocated memory.
5268 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005269 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005272fname_expand(
5273 buf_T *buf UNUSED,
5274 char_u **ffname,
5275 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005277 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005279 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005281 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282
5283#ifdef FEAT_SHORTCUT
5284 if (!buf->b_p_bin)
5285 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005286 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005288 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005289 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005290 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 {
5292 vim_free(*ffname);
5293 *ffname = rfname;
5294 *sfname = rfname;
5295 }
5296 }
5297#endif
5298}
5299
5300/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 * Open a window for a number of buffers.
5302 */
5303 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005304ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305{
5306 buf_T *buf;
5307 win_T *wp, *wpnext;
5308 int split_ret = OK;
5309 int p_ea_save;
5310 int open_wins = 0;
5311 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005312 int count; // Maximum number of windows to open.
5313 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005314 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005315 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
Bram Moolenaarc667da52019-11-30 20:52:27 +01005317 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 count = 9999;
5319 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005320 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5322 all = FALSE;
5323 else
5324 all = TRUE;
5325
5326 setpcmark();
5327
5328#ifdef FEAT_GUI
5329 need_mouse_correct = TRUE;
5330#endif
5331
5332 /*
5333 * Close superfluous windows (two windows for the same buffer).
5334 * Also close windows that are not full-width.
5335 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005336 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005337 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005338 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005340 tpnext = curtab->tp_next;
5341 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005343 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005344 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005345 || ((cmdmod.cmod_split & WSP_VERT)
5346 ? wp->w_height + wp->w_status_height < Rows - p_ch
5347 - tabline_height()
5348 : wp->w_width != Columns)
5349 || (had_tab > 0 && wp != firstwin))
5350 && !ONE_WINDOW
5351 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5352 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005353 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005354 if (win_close(wp, FALSE) == FAIL)
5355 break;
5356 // Just in case an autocommand does something strange with
5357 // windows: start all over...
5358 wpnext = firstwin;
5359 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005360 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005361 }
5362 else
5363 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005365
Bram Moolenaarc667da52019-11-30 20:52:27 +01005366 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005367 if (had_tab == 0 || tpnext == NULL)
5368 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005369 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 }
5371
5372 /*
5373 * Go through the buffer list. When a buffer doesn't have a window yet,
5374 * open one. Otherwise move the window to the right position.
5375 * Watch out for autocommands that delete buffers or windows!
5376 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005377 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5382 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005383 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5385 continue;
5386
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005387 if (had_tab != 0)
5388 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005389 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005390 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005391 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005392 else
5393 wp = NULL;
5394 }
5395 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005396 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005397 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005398 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005399 if (wp->w_buffer == buf)
5400 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005401 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005402 if (wp != NULL)
5403 win_move_after(wp, curwin);
5404 }
5405
5406 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005408 bufref_T bufref;
5409
5410 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005411
Bram Moolenaarc667da52019-11-30 20:52:27 +01005412 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005414 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5416 ++open_wins;
5417 p_ea = p_ea_save;
5418 if (split_ret == FAIL)
5419 continue;
5420
Bram Moolenaarc667da52019-11-30 20:52:27 +01005421 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005424 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005426 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 break;
5429 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 if (swap_exists_action == SEA_QUIT)
5431 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005432#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005433 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005434
Bram Moolenaarc667da52019-11-30 20:52:27 +01005435 // Reset the error/interrupt/exception state here so that
5436 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005437 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005438#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005439
Bram Moolenaarc667da52019-11-30 20:52:27 +01005440 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 win_close(curwin, TRUE);
5442 --open_wins;
5443 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005444 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005445
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005446#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005447 // Restore the error/interrupt/exception state if not
5448 // discarded by a new aborting error, interrupt, or uncaught
5449 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005450 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 }
5453 else
5454 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 }
5456
5457 ui_breakcheck();
5458 if (got_int)
5459 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005460 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 break;
5462 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005463#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005464 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005465 if (aborting())
5466 break;
5467#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005468 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005469 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005470 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005473 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475
5476 /*
5477 * Close superfluous windows.
5478 */
5479 for (wp = lastwin; open_wins > count; )
5480 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005481 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 if (!win_valid(wp))
5484 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005485 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 wp = lastwin;
5487 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005488 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005490 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491 --open_wins;
5492 wp = lastwin;
5493 }
5494 else
5495 {
5496 wp = wp->w_prev;
5497 if (wp == NULL)
5498 break;
5499 }
5500 }
5501}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005504static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005505
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506/*
5507 * do_modelines() - process mode lines for the current file
5508 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005509 * "flags" can be:
5510 * OPT_WINONLY only set options local to window
5511 * OPT_NOWIN don't set options local to window
5512 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 * Returns immediately if the "ml" option isn't set.
5514 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005516do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005518 linenr_T lnum;
5519 int nmlines;
5520 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521
5522 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5523 return;
5524
Bram Moolenaarc667da52019-11-30 20:52:27 +01005525 // Disallow recursive entry here. Can happen when executing a modeline
5526 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 if (entered)
5528 return;
5529
5530 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005531 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005533 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 nmlines = 0;
5535
Hu Jialun9dcd3492021-08-28 20:42:50 +02005536 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005538 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 nmlines = 0;
5540 --entered;
5541}
5542
Bram Moolenaarc667da52019-11-30 20:52:27 +01005543#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544
5545/*
5546 * chk_modeline() - check a single line for a mode string
5547 * Return FAIL if an error encountered.
5548 */
5549 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005550chk_modeline(
5551 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005552 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553{
5554 char_u *s;
5555 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005556 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 int prev;
5558 int vers;
5559 int end;
5560 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005561 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005562
Bram Moolenaare31ee862020-01-07 20:59:34 +01005563 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564
5565 prev = -1;
5566 for (s = ml_get(lnum); *s != NUL; ++s)
5567 {
5568 if (prev == -1 || vim_isspace(prev))
5569 {
5570 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5571 || STRNCMP(s, "vi:", (size_t)3) == 0)
5572 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005573 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005574 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 {
5576 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5577 e = s + 4;
5578 else
5579 e = s + 3;
5580 vers = getdigits(&e);
5581 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005582 && (s[0] != 'V'
5583 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 && (s[3] == ':'
5585 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5586 || (VIM_VERSION_100 < vers && s[3] == '<')
5587 || (VIM_VERSION_100 > vers && s[3] == '>')
5588 || (VIM_VERSION_100 == vers && s[3] == '=')))
5589 break;
5590 }
5591 }
5592 prev = *s;
5593 }
5594
5595 if (*s)
5596 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005597 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 ++s;
5599 while (s[-1] != ':');
5600
Bram Moolenaarc667da52019-11-30 20:52:27 +01005601 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 if (linecopy == NULL)
5603 return FAIL;
5604
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005605 // prepare for emsg()
5606 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005607 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608
5609 end = FALSE;
5610 while (end == FALSE)
5611 {
5612 s = skipwhite(s);
5613 if (*s == NUL)
5614 break;
5615
5616 /*
5617 * Find end of set command: ':' or end of line.
5618 * Skip over "\:", replacing it with ":".
5619 */
5620 for (e = s; *e != ':' && *e != NUL; ++e)
5621 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005622 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 if (*e == NUL)
5624 end = TRUE;
5625
5626 /*
5627 * If there is a "set" command, require a terminating ':' and
5628 * ignore the stuff after the ':'.
5629 * "vi:set opt opt opt: foo" -- foo not interpreted
5630 * "vi:opt opt opt: foo" -- foo interpreted
5631 * Accept "se" for compatibility with Elvis.
5632 */
5633 if (STRNCMP(s, "set ", (size_t)4) == 0
5634 || STRNCMP(s, "se ", (size_t)3) == 0)
5635 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005636 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 break;
5638 end = TRUE;
5639 s = vim_strchr(s, ' ') + 1;
5640 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005641 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642
Bram Moolenaarc667da52019-11-30 20:52:27 +01005643 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005645 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005646
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005647 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005648 current_sctx.sc_version = 1;
5649#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005650 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005651 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005652 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005654
Bram Moolenaar5958f952018-11-20 04:25:21 +01005655 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005656 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005657
Bram Moolenaara3227e22006-03-08 21:32:40 +00005658 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005659
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005660 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005661 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005662 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 break;
5664 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005665 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 }
5667
Bram Moolenaare31ee862020-01-07 20:59:34 +01005668 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005669 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 vim_free(linecopy);
5671 }
5672 return retval;
5673}
5674
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005675/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005676 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5677 */
5678 int
5679bt_normal(buf_T *buf)
5680{
5681 return buf != NULL && buf->b_p_bt[0] == NUL;
5682}
5683
Bram Moolenaar113e1072019-01-20 15:30:40 +01005684#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005685/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005686 * Return TRUE if "buf" is the quickfix buffer.
5687 */
5688 int
5689bt_quickfix(buf_T *buf)
5690{
5691 return buf != NULL && buf->b_p_bt[0] == 'q';
5692}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005693#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005694
Bram Moolenaar113e1072019-01-20 15:30:40 +01005695#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005696/*
5697 * Return TRUE if "buf" is a terminal buffer.
5698 */
5699 int
5700bt_terminal(buf_T *buf)
5701{
5702 return buf != NULL && buf->b_p_bt[0] == 't';
5703}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005704#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005705
5706/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005707 * Return TRUE if "buf" is a help buffer.
5708 */
5709 int
5710bt_help(buf_T *buf)
5711{
5712 return buf != NULL && buf->b_help;
5713}
5714
5715/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005716 * Return TRUE if "buf" is a prompt buffer.
5717 */
5718 int
5719bt_prompt(buf_T *buf)
5720{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005721 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5722}
5723
Dominique Pelle748b3082022-01-08 12:41:16 +00005724#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005725/*
5726 * Return TRUE if "buf" is a buffer for a popup window.
5727 */
5728 int
5729bt_popup(buf_T *buf)
5730{
5731 return buf != NULL && buf->b_p_bt != NULL
5732 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005733}
Dominique Pelle748b3082022-01-08 12:41:16 +00005734#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005735
5736/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005737 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5738 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005739 */
5740 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005741bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005742{
5743 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5744 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005745 || buf->b_p_bt[0] == 't'
5746 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005747}
5748
Dominique Pelle748b3082022-01-08 12:41:16 +00005749#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005750/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005751 * Return TRUE if "buf" has 'buftype' set to "nofile".
5752 */
5753 int
5754bt_nofile(buf_T *buf)
5755{
5756 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5757}
Dominique Pelle748b3082022-01-08 12:41:16 +00005758#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005759
5760/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005761 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5762 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005763 */
5764 int
5765bt_dontwrite(buf_T *buf)
5766{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005767 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005768 || buf->b_p_bt[0] == 't'
5769 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005770}
5771
Bram Moolenaar113e1072019-01-20 15:30:40 +01005772#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005773 int
5774bt_dontwrite_msg(buf_T *buf)
5775{
5776 if (bt_dontwrite(buf))
5777 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005778 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005779 return TRUE;
5780 }
5781 return FALSE;
5782}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005783#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005784
5785/*
5786 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5787 * and 'bufhidden'.
5788 */
5789 int
5790buf_hide(buf_T *buf)
5791{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005792 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005793 switch (buf->b_p_bh[0])
5794 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005795 case 'u': // "unload"
5796 case 'w': // "wipe"
5797 case 'd': return FALSE; // "delete"
5798 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005799 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005800 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005801}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802
5803/*
5804 * Return special buffer name.
5805 * Returns NULL when the buffer has a normal file name.
5806 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005807 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005808buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005810#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005812 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005813 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005814 * Differentiate between the quickfix and location list buffers using
5815 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005816 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005817 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005818 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005819 else
5820 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005823
Bram Moolenaarc667da52019-11-30 20:52:27 +01005824 // There is no _file_ when 'buftype' is "nofile", b_sfname
5825 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005826 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005828#ifdef FEAT_TERMINAL
5829 if (buf->b_term != NULL)
5830 return term_get_status_text(buf->b_term);
5831#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005832 if (buf->b_fname != NULL)
5833 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005834#ifdef FEAT_JOB_CHANNEL
5835 if (bt_prompt(buf))
5836 return (char_u *)_("[Prompt]");
5837#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005838#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005839 if (bt_popup(buf))
5840 return (char_u *)_("[Popup]");
5841#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005842 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005844
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005846 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847 return NULL;
5848}
5849
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005851 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5852 */
5853 char_u *
5854buf_get_fname(buf_T *buf)
5855{
5856 if (buf->b_fname == NULL)
5857 return (char_u *)_("[No Name]");
5858 return buf->b_fname;
5859}
5860
5861/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5863 */
5864 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005865set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866{
5867 if (on != curbuf->b_p_bl)
5868 {
5869 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 if (on)
5871 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5872 else
5873 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 }
5875}
5876
5877/*
5878 * Read the file for "buf" again and check if the contents changed.
5879 * Return TRUE if it changed or this could not be checked.
5880 */
5881 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005882buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883{
5884 buf_T *newbuf;
5885 int differ = TRUE;
5886 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 exarg_T ea;
5889
Bram Moolenaarc667da52019-11-30 20:52:27 +01005890 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5892 if (newbuf == NULL)
5893 return TRUE;
5894
Bram Moolenaarc667da52019-11-30 20:52:27 +01005895 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 if (prep_exarg(&ea, buf) == FAIL)
5897 {
5898 wipe_buffer(newbuf, FALSE);
5899 return TRUE;
5900 }
5901
Bram Moolenaarc667da52019-11-30 20:52:27 +01005902 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904
Bram Moolenaar4770d092006-01-12 23:22:24 +00005905 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 && readfile(buf->b_ffname, buf->b_fname,
5907 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5908 &ea, READ_NEW | READ_DUMMY) == OK)
5909 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005910 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5912 {
5913 differ = FALSE;
5914 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5915 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5916 {
5917 differ = TRUE;
5918 break;
5919 }
5920 }
5921 }
5922 vim_free(ea.cmd);
5923
Bram Moolenaarc667da52019-11-30 20:52:27 +01005924 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926
Bram Moolenaarc667da52019-11-30 20:52:27 +01005927 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 wipe_buffer(newbuf, FALSE);
5929
5930 return differ;
5931}
5932
5933/*
5934 * Wipe out a buffer and decrement the last buffer number if it was used for
5935 * this buffer. Call this to wipe out a temp buffer that does not contain any
5936 * marks.
5937 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005939wipe_buffer(
5940 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005941 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942{
5943 if (buf->b_fnum == top_file_num - 1)
5944 --top_file_num;
5945
Bram Moolenaarc667da52019-11-30 20:52:27 +01005946 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005947 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005948
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005949 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005950
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005952 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953}