blob: c8e63c34e10401ac07825a36c6f972779f15a195 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
shadmansaleh30e3de22021-05-15 17:23:28 +020030
31#ifdef FEAT_EVAL
32// Determines how deeply nested %{} blocks will be evaluated in statusline.
33# define MAX_STL_EVAL_DEPTH 100
34#endif
35
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020036static void enter_buffer(buf_T *buf);
37static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020041static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
42static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
43static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +020047static int value_changed(char_u *str, char_u **last);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010048static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
49static void free_buffer(buf_T *);
50static void free_buffer_stuff(buf_T *buf, int free_options);
51static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar00d253e2020-04-06 22:13:01 +020059#define FOR_ALL_BUFS_FROM_LAST(buf) \
60 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
66
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020067// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020068static int buf_free_count = 0;
69
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020070static int top_file_num = 1; // highest file number
71static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
72
73/*
74 * Return the highest possible buffer number.
75 */
76 int
77get_highest_fnum(void)
78{
79 return top_file_num - 1;
80}
81
Bram Moolenaarc024b462019-06-08 18:07:21 +020082/*
83 * Read data from buffer for retrying.
84 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020085 static int
86read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010087 int read_stdin, // read file from stdin, otherwise fifo
88 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
89 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020090{
91 int retval = OK;
92 linenr_T line_count;
93
Bram Moolenaarc5935a82021-10-19 20:48:52 +010094 // Read from the buffer which the text is already filled in and append at
95 // the end. This makes it possible to retry when 'fileformat' or
96 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020097 line_count = curbuf->b_ml.ml_line_count;
98 retval = readfile(
99 read_stdin ? NULL : curbuf->b_ffname,
100 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100101 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200102 flags | READ_BUFFER);
103 if (retval == OK)
104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100105 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200106 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200107 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200108 }
109 else
110 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100111 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200112 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200113 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200114 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100115 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116 curwin->w_cursor.lnum = 1;
117 curwin->w_cursor.col = 0;
118
119 if (read_stdin)
120 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100121 // Set or reset 'modified' before executing autocommands, so that
122 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100123 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100125 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200126 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 if (retval == OK)
129 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100130#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100131 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100132 curbuf, &retval);
133#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100134 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200135#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100136 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200137 }
138 return retval;
139}
140
Dominique Pelle748b3082022-01-08 12:41:16 +0000141#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200143 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
144 */
145 void
146buffer_ensure_loaded(buf_T *buf)
147{
148 if (buf->b_ml.ml_mfp == NULL)
149 {
150 aco_save_T aco;
151
152 aucmd_prepbuf(&aco, buf);
153 swap_exists_action = SEA_NONE;
154 open_buffer(FALSE, NULL, 0);
155 aucmd_restbuf(&aco);
156 }
157}
Dominique Pelle748b3082022-01-08 12:41:16 +0000158#endif
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200159
160/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200161 * Open current buffer, that is: open the memfile and read the file into
162 * memory.
163 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 */
165 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100166open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100167 int read_stdin, // read file from stdin
168 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
169 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170{
171 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200172 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100173#ifdef FEAT_SYN_HL
174 long old_tw = curbuf->b_p_tw;
175#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200176 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100178 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
179 // When re-entering the same buffer, it should not change, because the
180 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (readonlymode && curbuf->b_ffname != NULL
182 && (curbuf->b_flags & BF_NEVERLOADED))
183 curbuf->b_p_ro = TRUE;
184
Bram Moolenaar4770d092006-01-12 23:22:24 +0000185 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100187 // There MUST be a memfile, otherwise we can't do anything
188 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100189 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200190 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 if (curbuf->b_ml.ml_mfp != NULL)
192 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100193 // If there is no memfile at all, exit.
194 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 if (curbuf == NULL)
196 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000197 emsg(_(e_cannot_allocate_any_buffer_exiting));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200198
199 // Don't try to do any saving, with "curbuf" NULL almost nothing
200 // will work.
201 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 getout(2);
203 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200204
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000205 emsg(_(e_cannot_allocate_buffer_using_other_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100207#ifdef FEAT_SYN_HL
208 if (old_tw != curbuf->b_p_tw)
209 check_colorcolumn(curwin);
210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 return FAIL;
212 }
213
Bram Moolenaarc667da52019-11-30 20:52:27 +0100214 // The autocommands in readfile() may change the buffer, but only AFTER
215 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200216 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218
Bram Moolenaarc667da52019-11-30 20:52:27 +0100219 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100220 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222 if (curbuf->b_ffname != NULL
223#ifdef FEAT_NETBEANS_INTG
224 && netbeansReadFile
225#endif
226 )
227 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100228 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200229#ifdef UNIX
230 int save_bin = curbuf->b_p_bin;
231 int perm;
232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233#ifdef FEAT_NETBEANS_INTG
234 int oldFire = netbeansFireChanges;
235
236 netbeansFireChanges = 0;
237#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200238#ifdef UNIX
239 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200240 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200241 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200242# ifdef OPEN_CHR_FILES
243 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
244# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200245 ))
246 read_fifo = TRUE;
247 if (read_fifo)
248 curbuf->b_p_bin = TRUE;
249#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100250 if (shortmess(SHM_FILEINFO))
251 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200253 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
255#ifdef UNIX
256 if (read_fifo)
257 {
258 curbuf->b_p_bin = save_bin;
259 if (retval == OK)
260 retval = read_buffer(FALSE, eap, flags);
261 }
262#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100263 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#ifdef FEAT_NETBEANS_INTG
265 netbeansFireChanges = oldFire;
266#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100267 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200268 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 fix_help_buffer();
270 }
271 else if (read_stdin)
272 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200273 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100275 // First read the text in binary mode into the buffer.
276 // Then read from that same buffer and append at the end. This makes
277 // it possible to retry when 'fileformat' or 'fileencoding' was
278 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 curbuf->b_p_bin = TRUE;
280 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200281 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
282 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 curbuf->b_p_bin = save_bin;
284 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200285 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 }
287
Bram Moolenaarc667da52019-11-30 20:52:27 +0100288 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100290 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100292#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100293 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100294#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100295 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100297 // Set/reset the Changed flag first, autocmds may change the buffer.
298 // Apply the automatic commands, before processing the modelines.
299 // So the modelines have priority over autocommands.
300 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100301 // When reading stdin, the buffer contents always needs writing, so set
302 // the changed flag. Unless in readonly mode: "ls | gview -".
303 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000304 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100305 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100306#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000309 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100311 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200312 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100313 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaarc667da52019-11-30 20:52:27 +0100315 // Set last_changedtick to avoid triggering a TextChanged autocommand right
316 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100317 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100318 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100319 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100320
Bram Moolenaarc667da52019-11-30 20:52:27 +0100321 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322#ifdef FEAT_EVAL
323 if (aborting())
324#else
325 if (got_int)
326#endif
327 curbuf->b_flags |= BF_READERR;
328
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000329#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100330 // Need to update automatic folding. Do this before the autocommands,
331 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000332 foldUpdateAll(curwin);
333#endif
334
Bram Moolenaarc667da52019-11-30 20:52:27 +0100335 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 if (!(curwin->w_valid & VALID_TOPLINE))
337 {
338 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100339#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100343#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347#endif
348
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100349 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100351 // The autocommands may have changed the current buffer. Apply the
352 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200353 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 {
355 aco_save_T aco;
356
Bram Moolenaarc667da52019-11-30 20:52:27 +0100357 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200358 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000359 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
361
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100362 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100363#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100364 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
365 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100366#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100367 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
Bram Moolenaarc667da52019-11-30 20:52:27 +0100370 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 aucmd_restbuf(&aco);
372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 }
374
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 return retval;
376}
377
378/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200379 * Store "buf" in "bufref" and set the free count.
380 */
381 void
382set_bufref(bufref_T *bufref, buf_T *buf)
383{
384 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200385 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200386 bufref->br_buf_free_count = buf_free_count;
387}
388
389/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200390 * Return TRUE if "bufref->br_buf" points to the same buffer as when
391 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200392 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200393 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
394 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200395 */
396 int
397bufref_valid(bufref_T *bufref)
398{
399 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200400 ? TRUE : buf_valid(bufref->br_buf)
401 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200402}
403
404/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200406 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 */
408 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100409buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410{
411 buf_T *bp;
412
Bram Moolenaarc667da52019-11-30 20:52:27 +0100413 // Assume that we more often have a recent buffer, start with the last
414 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200415 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 if (bp == buf)
417 return TRUE;
418 return FALSE;
419}
420
421/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200422 * A hash table used to quickly lookup a buffer by its number.
423 */
424static hashtab_T buf_hashtab;
425
426 static void
427buf_hashtab_add(buf_T *buf)
428{
429 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
430 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000431 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200432}
433
434 static void
435buf_hashtab_remove(buf_T *buf)
436{
437 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
438
439 if (!HASHITEM_EMPTY(hi))
440 hash_remove(&buf_hashtab, hi);
441}
442
Bram Moolenaar94f01952018-09-01 15:30:03 +0200443/*
444 * Return TRUE when buffer "buf" can be unloaded.
445 * Give an error message and return FALSE when the buffer is locked or the
446 * screen is being redrawn and the buffer is in a window.
447 */
448 static int
449can_unload_buffer(buf_T *buf)
450{
451 int can_unload = !buf->b_locked;
452
453 if (can_unload && updating_screen)
454 {
455 win_T *wp;
456
457 FOR_ALL_WINDOWS(wp)
458 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200459 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200460 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200461 break;
462 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200463 }
464 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000465 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200466 return can_unload;
467}
Bram Moolenaara997b452018-04-17 23:24:06 +0200468
Bram Moolenaar480778b2016-07-14 22:09:39 +0200469/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 * Close the link to a buffer.
471 * "action" is used when there is no longer a window for the buffer.
472 * It can be:
473 * 0 buffer becomes hidden
474 * DOBUF_UNLOAD buffer is unloaded
475 * DOBUF_DELETE buffer is unloaded and removed from buffer list
476 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200477 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 * When doing all but the first one on the current buffer, the caller should
479 * get a new buffer very soon!
480 *
481 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100482 *
483 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
484 * cause there to be only one window with this buffer. e.g. when ":quit" is
485 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100486 *
487 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100488 *
489 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100491 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100492close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100493 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100494 buf_T *buf,
495 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100496 int abort_if_last,
497 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100500 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200501 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100502 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200503 win_T *the_curwin = curwin;
504 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200506 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
507 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaarcee52202020-03-11 14:19:58 +0100509 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100510
511 // Force unloading or deleting when 'bufhidden' says so.
512 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
513 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100514 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200515 {
516 del_buf = TRUE;
517 unload_buf = TRUE;
518 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100519 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200520 {
521 del_buf = TRUE;
522 unload_buf = TRUE;
523 wipe_buf = TRUE;
524 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100525 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200526 unload_buf = TRUE;
527
Bram Moolenaar94053a52017-08-01 21:44:33 +0200528#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200529 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200530 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100531 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532 if (term_job_running(buf->b_term))
533 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200534 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200535 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200536 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100537 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200538
Bram Moolenaarc667da52019-11-30 20:52:27 +0100539 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200540 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200541 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542 else
543 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100544 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200545 del_buf = FALSE;
546 unload_buf = FALSE;
547 }
548 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100549 else if (buf->b_p_bh[0] == 'h' && !del_buf)
550 {
551 // Hide a terminal buffer.
552 unload_buf = FALSE;
553 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200554 else
555 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100556 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200557 del_buf = TRUE;
558 unload_buf = TRUE;
559 wipe_buf = TRUE;
560 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100561 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200562 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
Bram Moolenaarc667da52019-11-30 20:52:27 +0100565 // Disallow deleting the buffer when it is locked (already being closed or
566 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200567 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100568 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569
Bram Moolenaarc667da52019-11-30 20:52:27 +0100570 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200571 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100573 // Set b_last_cursor when closing the last window for the buffer.
574 // Remember the last cursor position and window options of the buffer.
575 // This used to be only for the current window, but then options like
576 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 if (buf->b_nwindows == 1)
578 set_last_cursor(win);
579 buflist_setfpos(buf, win,
580 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
581 win->w_cursor.col, TRUE);
582 }
583
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200584 set_bufref(&bufref, buf);
585
Bram Moolenaarc667da52019-11-30 20:52:27 +0100586 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 if (buf->b_nwindows == 1)
588 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200589 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100590 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200591 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
592 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200593 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100594 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100595 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200596aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000597 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100598 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100599 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200600 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100601 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200602 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100603 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
Bram Moolenaarc667da52019-11-30 20:52:27 +0100606 // When the buffer becomes hidden, but is not unloaded, trigger
607 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 if (!unload_buf)
609 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200610 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100611 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200612 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
613 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200614 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100615 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200616 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200617 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100618 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200619 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100620 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200621 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100623#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100624 // autocmds may abort script processing
625 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100626 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200629
Bram Moolenaarc667da52019-11-30 20:52:27 +0100630 // If the buffer was in curwin and the window has changed, go back to that
631 // window, if it still exists. This avoids that ":edit x" triggering a
632 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200633 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
634 {
635 block_autocmds();
636 goto_tabpage_win(the_curtab, the_curwin);
637 unblock_autocmds();
638 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200639
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641
Bram Moolenaarc667da52019-11-30 20:52:27 +0100642 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 if (buf->b_nwindows > 0)
644 --buf->b_nwindows;
645
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100646#ifdef FEAT_DIFF
647 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100648 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100649#endif
650
Bram Moolenaarc667da52019-11-30 20:52:27 +0100651 // Return when a window is displaying the buffer or when it's not
652 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100654 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaarc667da52019-11-30 20:52:27 +0100656 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (buf->b_ffname == NULL)
658 del_buf = TRUE;
659
Bram Moolenaarc667da52019-11-30 20:52:27 +0100660 // When closing the current buffer stop Visual mode before freeing
661 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200662 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200663#if defined(EXITFREE)
664 && !entered_free_all_mem
665#endif
666 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200667 end_visual_mode();
668
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100669 // Free all things allocated for this buffer.
670 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
671 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100672 // Remember if we are closing the current buffer. Restore the number of
673 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 is_curbuf = (buf == curbuf);
675 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100677 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100678 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100679 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaarc667da52019-11-30 20:52:27 +0100681 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200682 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100683 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100684#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100685 // autocmds may abort script processing
686 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100687 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100690 // It's possible that autocommands change curbuf to the one being deleted.
691 // This might cause the previous curbuf to be deleted unexpectedly. But
692 // in some cases it's OK to delete the curbuf, because a new one is
693 // obtained anyway. Therefore only return if curbuf changed to the
694 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100696 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200697
Bram Moolenaar4033c552017-09-16 20:54:51 +0200698 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100699 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200700
Bram Moolenaarc667da52019-11-30 20:52:27 +0100701 // Autocommands may have opened or closed windows for this buffer.
702 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200703 if (buf->b_nwindows > 0)
704 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 /*
707 * Remove the buffer from the list.
708 */
709 if (wipe_buf)
710 {
Bram Moolenaar347538f2022-03-26 16:28:06 +0000711 // Do not wipe out the buffer if it is used in a window.
712 if (buf->b_nwindows > 0)
713 return FALSE;
714
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200715 if (action == DOBUF_WIPE_REUSE)
716 {
717 // we can re-use this buffer number, store it
718 if (buf_reuse.ga_itemsize == 0)
719 ga_init2(&buf_reuse, sizeof(int), 50);
720 if (ga_grow(&buf_reuse, 1) == OK)
721 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
722 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200723 if (buf->b_sfname != buf->b_ffname)
724 VIM_CLEAR(buf->b_sfname);
725 else
726 buf->b_sfname = NULL;
727 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 if (buf->b_prev == NULL)
729 firstbuf = buf->b_next;
730 else
731 buf->b_prev->b_next = buf->b_next;
732 if (buf->b_next == NULL)
733 lastbuf = buf->b_prev;
734 else
735 buf->b_next->b_prev = buf->b_prev;
736 free_buffer(buf);
737 }
738 else
739 {
740 if (del_buf)
741 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100742 // Free all internal variables and reset option values, to make
743 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 free_buffer_stuff(buf, TRUE);
745
Bram Moolenaarc667da52019-11-30 20:52:27 +0100746 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
748
Bram Moolenaarc667da52019-11-30 20:52:27 +0100749 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 buf->b_p_initialized = FALSE;
751 }
752 buf_clear_file(buf);
753 if (del_buf)
754 buf->b_p_bl = FALSE;
755 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100756 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100757 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758}
759
760/*
761 * Make buffer not contain a file.
762 */
763 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100764buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765{
766 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200767 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 buf->b_p_eol = TRUE;
770 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000772 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100774 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775#ifdef FEAT_NETBEANS_INTG
776 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777#endif
778}
779
780/*
781 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200782 * the file. Careful: get here with "curwin" NULL when exiting.
783 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100784 * BFA_DEL buffer is going to be deleted
785 * BFA_WIPE buffer is going to be wiped out
786 * BFA_KEEP_UNDO do not free undo information
787 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100790buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200793 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200794 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200795 win_T *the_curwin = curwin;
796 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797
Bram Moolenaarc667da52019-11-30 20:52:27 +0100798 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200799 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100800 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200801 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200802 if (buf->b_ml.ml_mfp != NULL)
803 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200804 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
805 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200806 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100807 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200808 return;
809 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200810 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200812 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
813 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200814 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100815 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 return;
817 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200818 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200820 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
821 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200822 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100823 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 return;
825 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200826 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100827 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200828
Bram Moolenaarc667da52019-11-30 20:52:27 +0100829 // If the buffer was in curwin and the window has changed, go back to that
830 // window, if it still exists. This avoids that ":edit x" triggering a
831 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200832 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
833 {
834 block_autocmds();
835 goto_tabpage_win(the_curtab, the_curwin);
836 unblock_autocmds();
837 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200838
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100839#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100840 // autocmds may abort script processing
841 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100843#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100845 // It's possible that autocommands change curbuf to the one being deleted.
846 // This might cause curbuf to be deleted unexpectedly. But in some cases
847 // it's OK to delete the curbuf, because a new one is obtained anyway.
848 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 if (buf == curbuf && !is_curbuf)
850 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100852 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200854#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100855 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200856 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100857 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200858#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000859
860#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100861 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000862 {
863 win_T *win;
864 tabpage_T *tp;
865
866 FOR_ALL_TAB_WINDOWS(tp, win)
867 if (win->w_buffer == buf)
868 clearFolding(win);
869 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000870#endif
871
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872#ifdef FEAT_TCL
873 tcl_buffer_free(buf);
874#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100875 ml_close(buf, TRUE); // close and delete the memline/memfile
876 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200877 if ((flags & BFA_KEEP_UNDO) == 0)
878 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100879 u_blockfree(buf); // free the memory allocated for undo
880 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200881 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100883 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100885#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100886 clear_buf_prop_types(buf);
887#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100888 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889}
890
891/*
892 * Free a buffer structure and the things it contains related to the buffer
893 * itself (not the file, that must have been done already).
894 */
895 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100896free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200898 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200900#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100901 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200902 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200903 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200904 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200905#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200906#ifdef FEAT_LUA
907 lua_buffer_free(buf);
908#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000909#ifdef FEAT_MZSCHEME
910 mzscheme_buffer_free(buf);
911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912#ifdef FEAT_PERL
913 perl_buf_free(buf);
914#endif
915#ifdef FEAT_PYTHON
916 python_buffer_free(buf);
917#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200918#ifdef FEAT_PYTHON3
919 python3_buffer_free(buf);
920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921#ifdef FEAT_RUBY
922 ruby_buffer_free(buf);
923#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200924#ifdef FEAT_JOB_CHANNEL
925 channel_buffer_free(buf);
926#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200927#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200928 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200929#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200930#ifdef FEAT_JOB_CHANNEL
931 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200932 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200933 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200934#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200935
936 buf_hashtab_remove(buf);
937
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200938 aubuflocal_remove(buf);
939
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200940 if (autocmd_busy)
941 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100942 // Do not free the buffer structure while autocommands are executing,
943 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200944 buf->b_next = au_pending_free_buf;
945 au_pending_free_buf = buf;
946 }
947 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100948 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200949 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100950 if (curbuf == buf)
951 curbuf = NULL; // make clear it's not to be used
952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953}
954
955/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100956 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100957 */
958 static void
959init_changedtick(buf_T *buf)
960{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100961 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100962
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100963 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
964 di->di_tv.v_type = VAR_NUMBER;
965 di->di_tv.v_lock = VAR_FIXED;
966 di->di_tv.vval.v_number = 0;
967
Bram Moolenaar92769c32017-02-25 15:41:37 +0100968#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100969 STRCPY(buf->b_ct_di.di_key, "changedtick");
970 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100971#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100972}
973
974/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
976 */
977 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100978free_buffer_stuff(
979 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100980 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981{
982 if (free_options)
983 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100984 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200986#ifdef FEAT_SPELL
987 ga_clear(&buf->b_s.b_langp);
988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 }
990#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100991 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100992 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100993
Bram Moolenaarc667da52019-11-30 20:52:27 +0100994 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100995 hash_init(&buf->b_vars->dv_hashtab);
996 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100997 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100998 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001001 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001003 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001005#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001006 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001007#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001008 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1009 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001010 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011}
1012
1013/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001014 * Free one wininfo_T.
1015 */
1016 void
1017free_wininfo(wininfo_T *wip)
1018{
1019 if (wip->wi_optset)
1020 {
1021 clear_winopt(&wip->wi_opt);
1022#ifdef FEAT_FOLDING
1023 deleteFoldRecurse(&wip->wi_folds);
1024#endif
1025 }
1026 vim_free(wip);
1027}
1028
1029/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 * Free the b_wininfo list for buffer "buf".
1031 */
1032 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001033clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034{
1035 wininfo_T *wip;
1036
1037 while (buf->b_wininfo != NULL)
1038 {
1039 wip = buf->b_wininfo;
1040 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001041 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 }
1043}
1044
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045/*
1046 * Go to another buffer. Handles the result of the ATTENTION dialog.
1047 */
1048 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001049goto_buffer(
1050 exarg_T *eap,
1051 int start,
1052 int dir,
1053 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001055 bufref_T old_curbuf;
1056
1057 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
1059 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1061 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1063 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001064#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001065 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001066
Bram Moolenaarc667da52019-11-30 20:52:27 +01001067 // Reset the error/interrupt/exception state here so that
1068 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001069 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001070#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001071
Bram Moolenaarc667da52019-11-30 20:52:27 +01001072 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 win_close(curwin, TRUE);
1074 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001075 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001076
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001077#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001078 // Restore the error/interrupt/exception state if not discarded by a
1079 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001080 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 }
1083 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001084 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001085}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087/*
1088 * Handle the situation of swap_exists_action being set.
1089 * It is allowed for "old_curbuf" to be NULL or invalid.
1090 */
1091 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001092handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001094#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001095 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001096#endif
1097#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001098 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001099#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001100 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001101
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 if (swap_exists_action == SEA_QUIT)
1103 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001104#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001105 // Reset the error/interrupt/exception state here so that
1106 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001107 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001108#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001109
Bram Moolenaarc667da52019-11-30 20:52:27 +01001110 // User selected Quit at ATTENTION prompt. Go back to previous
1111 // buffer. If that buffer is gone or the same as the current one,
1112 // open a new, empty buffer.
1113 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001114 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001115 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001116 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1117 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001118 {
1119 // Block autocommands here because curwin->w_buffer is NULL.
1120 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001121 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001122 unblock_autocmds();
1123 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001124 else
1125 buf = old_curbuf->br_buf;
1126 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001127 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001128 int old_msg_silent = msg_silent;
1129
1130 if (shortmess(SHM_FILEINFO))
1131 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001132 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001133 // restore msg_silent, so that the command line will be shown
1134 msg_silent = old_msg_silent;
1135
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001136#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001137 if (old_tw != curbuf->b_p_tw)
1138 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001139#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001140 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001141 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001142
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001143#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001144 // Restore the error/interrupt/exception state if not discarded by a
1145 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001146 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001147#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 }
1149 else if (swap_exists_action == SEA_RECOVER)
1150 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001151#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001152 // Reset the error/interrupt/exception state here so that
1153 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001154 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001155#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001156
Bram Moolenaarc667da52019-11-30 20:52:27 +01001157 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001159 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001160 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001162 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001163
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001164#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001165 // Restore the error/interrupt/exception state if not discarded by a
1166 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001167 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 }
1170 swap_exists_action = SEA_NONE;
1171}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001174 * Make the current buffer empty.
1175 * Used when it is wiped out and it's the last buffer.
1176 */
1177 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001178empty_curbuf(
1179 int close_others,
1180 int forceit,
1181 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001182{
1183 int retval;
1184 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001185 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001186
1187 if (action == DOBUF_UNLOAD)
1188 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001189 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001190 return FAIL;
1191 }
1192
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001193 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001194 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001195 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001196 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001197
1198 setpcmark();
1199 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1200 forceit ? ECMD_FORCEIT : 0, curwin);
1201
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001202 // do_ecmd() may create a new buffer, then we have to delete
1203 // the old one. But do_ecmd() may have done that already, check
1204 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001205 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001206 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001207 if (!close_others)
1208 need_fileinfo = FALSE;
1209 return retval;
1210}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001211
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212/*
1213 * Implementation of the commands for the buffer list.
1214 *
1215 * action == DOBUF_GOTO go to specified buffer
1216 * action == DOBUF_SPLIT split window and go to specified buffer
1217 * action == DOBUF_UNLOAD unload specified buffer(s)
1218 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1219 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001220 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 *
1222 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1223 * start == DOBUF_FIRST go to "count" buffer from first buffer
1224 * start == DOBUF_LAST go to "count" buffer from last buffer
1225 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1226 *
1227 * Return FAIL or OK.
1228 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001229 static int
1230do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001231 int action,
1232 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001233 int dir, // FORWARD or BACKWARD
1234 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001235 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236{
1237 buf_T *buf;
1238 buf_T *bp;
1239 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001240 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
1242 switch (start)
1243 {
1244 case DOBUF_FIRST: buf = firstbuf; break;
1245 case DOBUF_LAST: buf = lastbuf; break;
1246 default: buf = curbuf; break;
1247 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001248 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 {
1250 while (count-- > 0)
1251 {
1252 do
1253 {
1254 buf = buf->b_next;
1255 if (buf == NULL)
1256 buf = firstbuf;
1257 }
1258 while (buf != curbuf && !bufIsChanged(buf));
1259 }
1260 if (!bufIsChanged(buf))
1261 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001262 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 return FAIL;
1264 }
1265 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001266 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 {
1268 while (buf != NULL && buf->b_fnum != count)
1269 buf = buf->b_next;
1270 }
1271 else
1272 {
1273 bp = NULL;
1274 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1275 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001276 // remember the buffer where we start, we come back there when all
1277 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 if (bp == NULL)
1279 bp = buf;
1280 if (dir == FORWARD)
1281 {
1282 buf = buf->b_next;
1283 if (buf == NULL)
1284 buf = firstbuf;
1285 }
1286 else
1287 {
1288 buf = buf->b_prev;
1289 if (buf == NULL)
1290 buf = lastbuf;
1291 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001292 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 if (unload || buf->b_p_bl)
1294 {
1295 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001296 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 }
1298 if (bp == buf)
1299 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001300 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001301 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 return FAIL;
1303 }
1304 }
1305 }
1306
Bram Moolenaarc667da52019-11-30 20:52:27 +01001307 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 {
1309 if (start == DOBUF_FIRST)
1310 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001311 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001313 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 }
1315 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001316 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001318 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 return FAIL;
1320 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001321#ifdef FEAT_PROP_POPUP
1322 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1323# ifdef FEAT_TERMINAL
1324 && !bt_terminal(buf)
1325#endif
1326 )
1327 return OK;
1328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329
1330#ifdef FEAT_GUI
1331 need_mouse_correct = TRUE;
1332#endif
1333
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001335 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 */
1337 if (unload)
1338 {
1339 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001340 bufref_T bufref;
1341
Bram Moolenaar94f01952018-09-01 15:30:03 +02001342 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001343 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001344
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001345 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346
Bram Moolenaarc667da52019-11-30 20:52:27 +01001347 // When unloading or deleting a buffer that's already unloaded and
1348 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001349 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1350 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 return FAIL;
1352
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001353 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001355#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001356 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 {
1358 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001359 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001360 // Autocommand deleted buffer, oops! It's not changed
1361 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001363 // If it's still changed fail silently, the dialog already
1364 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001365 if (bufIsChanged(buf))
1366 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001368 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001371 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 buf->b_fnum);
1373 return FAIL;
1374 }
1375 }
1376
Bram Moolenaarc667da52019-11-30 20:52:27 +01001377 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001378 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001379 end_visual_mode();
1380
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001381 // If deleting the last (listed) buffer, make it empty.
1382 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001383 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 if (bp->b_p_bl && bp != buf)
1385 break;
1386 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001387 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001389 // If the deleted buffer is the current one, close the current window
1390 // (unless it's the only window). Repeat this so long as we end up in
1391 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001392 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001393 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001394 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001395 {
1396 if (win_close(curwin, FALSE) == FAIL)
1397 break;
1398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001400 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 if (buf != curbuf)
1402 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001403 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001404 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001405 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 return OK;
1407 }
1408
1409 /*
1410 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001411 * There should be another, otherwise it would have been handled
1412 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001413 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 * Then prefer the buffer we most recently visited.
1415 * Else try to find one that is loaded, after the current buffer,
1416 * then before the current buffer.
1417 * Finally use any buffer.
1418 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001419 buf = NULL; // selected buffer
1420 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001421 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1422 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001423 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 {
1425 int jumpidx;
1426
1427 jumpidx = curwin->w_jumplistidx - 1;
1428 if (jumpidx < 0)
1429 jumpidx = curwin->w_jumplistlen - 1;
1430
1431 forward = jumpidx;
1432 while (jumpidx != curwin->w_jumplistidx)
1433 {
1434 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1435 if (buf != NULL)
1436 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001437 // Skip current and unlisted bufs. Also skip a quickfix
1438 // buffer, it might be deleted soon.
1439 if (buf == curbuf || !buf->b_p_bl
1440#if defined(FEAT_QUICKFIX)
1441 || bt_quickfix(buf)
1442#endif
1443 )
1444 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 else if (buf->b_ml.ml_mfp == NULL)
1446 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001447 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 if (bp == NULL)
1449 bp = buf;
1450 buf = NULL;
1451 }
1452 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001453 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001455 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1457 break;
1458 if (--jumpidx < 0)
1459 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001460 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 break;
1462 }
1463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464
Bram Moolenaarc667da52019-11-30 20:52:27 +01001465 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
1467 forward = TRUE;
1468 buf = curbuf->b_next;
1469 for (;;)
1470 {
1471 if (buf == NULL)
1472 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001473 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 break;
1475 buf = curbuf->b_prev;
1476 forward = FALSE;
1477 continue;
1478 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001479 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001480 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1481#if defined(FEAT_QUICKFIX)
1482 && !bt_quickfix(buf)
1483#endif
1484 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001486 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001488 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 bp = buf;
1490 }
1491 if (forward)
1492 buf = buf->b_next;
1493 else
1494 buf = buf->b_prev;
1495 }
1496 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001497 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001499 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001501 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001502 if (buf->b_p_bl && buf != curbuf
1503#if defined(FEAT_QUICKFIX)
1504 && !bt_quickfix(buf)
1505#endif
1506 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 break;
1508 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001509 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 {
1511 if (curbuf->b_next != NULL)
1512 buf = curbuf->b_next;
1513 else
1514 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001515#if defined(FEAT_QUICKFIX)
1516 if (bt_quickfix(buf))
1517 buf = NULL;
1518#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 }
1520 }
1521
Bram Moolenaara02471e2014-01-10 16:43:14 +01001522 if (buf == NULL)
1523 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001524 // Autocommands must have wiped out all other buffers. Only option
1525 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001526 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001527 }
1528
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001530 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001532 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001534 // If 'switchbuf' contains "useopen": jump to first window containing
1535 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001536 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001537 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001538 // If 'switchbuf' contains "usetab": jump to first window in any tab
1539 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001540 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 return OK;
1542 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 return FAIL;
1544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545
Bram Moolenaarc667da52019-11-30 20:52:27 +01001546 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 if (buf == curbuf)
1548 return OK;
1549
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001550 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001551 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 {
1553#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001554 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001556 bufref_T bufref;
1557
1558 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001560 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001561 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 }
1564 if (bufIsChanged(curbuf))
1565#endif
1566 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001567 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 return FAIL;
1569 }
1570 }
1571
Bram Moolenaarc667da52019-11-30 20:52:27 +01001572 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 set_curbuf(buf, action);
1574
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001576 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001578#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001579 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 return FAIL;
1581#endif
1582
1583 return OK;
1584}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001586 int
1587do_buffer(
1588 int action,
1589 int start,
1590 int dir, // FORWARD or BACKWARD
1591 int count, // buffer number or number of buffers
1592 int forceit) // TRUE when using !
1593{
1594 return do_buffer_ext(action, start, dir, count,
1595 forceit ? DOBUF_FORCEIT : 0);
1596}
1597
1598/*
1599 * do_bufdel() - delete or unload buffer(s)
1600 *
1601 * addr_count == 0: ":bdel" - delete current buffer
1602 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1603 * buffer "end_bnr", then any other arguments.
1604 * addr_count == 2: ":N,N bdel" - delete buffers in range
1605 *
1606 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1607 * DOBUF_DEL (":bdel")
1608 *
1609 * Returns error message or NULL
1610 */
1611 char *
1612do_bufdel(
1613 int command,
1614 char_u *arg, // pointer to extra arguments
1615 int addr_count,
1616 int start_bnr, // first buffer number in a range
1617 int end_bnr, // buffer nr or last buffer nr in a range
1618 int forceit)
1619{
1620 int do_current = 0; // delete current buffer?
1621 int deleted = 0; // number of buffers deleted
1622 char *errormsg = NULL; // return value
1623 int bnr; // buffer number
1624 char_u *p;
1625
1626 if (addr_count == 0)
1627 {
1628 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1629 }
1630 else
1631 {
1632 if (addr_count == 2)
1633 {
1634 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001635 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001636 bnr = start_bnr;
1637 }
1638 else // addr_count == 1
1639 bnr = end_bnr;
1640
1641 for ( ;!got_int; ui_breakcheck())
1642 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001643 // Delete the current buffer last, otherwise when the
1644 // current buffer is deleted, the next buffer becomes
1645 // the current one and will be loaded, which may then
1646 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001647 if (bnr == curbuf->b_fnum)
1648 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001649 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001650 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1651 ++deleted;
1652
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001653 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001654 if (addr_count == 2)
1655 {
1656 if (++bnr > end_bnr)
1657 break;
1658 }
1659 else // addr_count == 1
1660 {
1661 arg = skipwhite(arg);
1662 if (*arg == NUL)
1663 break;
1664 if (!VIM_ISDIGIT(*arg))
1665 {
1666 p = skiptowhite_esc(arg);
1667 bnr = buflist_findpat(arg, p,
1668 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1669 FALSE, FALSE);
1670 if (bnr < 0) // failed
1671 break;
1672 arg = p;
1673 }
1674 else
1675 bnr = getdigits(&arg);
1676 }
1677 }
1678 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1679 FORWARD, do_current, forceit) == OK)
1680 ++deleted;
1681
1682 if (deleted == 0)
1683 {
1684 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001685 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001686 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001687 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001688 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001689 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001690 errormsg = (char *)IObuff;
1691 }
1692 else if (deleted >= p_report)
1693 {
1694 if (command == DOBUF_UNLOAD)
1695 smsg(NGETTEXT("%d buffer unloaded",
1696 "%d buffers unloaded", deleted), deleted);
1697 else if (command == DOBUF_DEL)
1698 smsg(NGETTEXT("%d buffer deleted",
1699 "%d buffers deleted", deleted), deleted);
1700 else
1701 smsg(NGETTEXT("%d buffer wiped out",
1702 "%d buffers wiped out", deleted), deleted);
1703 }
1704 }
1705
1706
1707 return errormsg;
1708}
1709
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710/*
1711 * Set current buffer to "buf". Executes autocommands and closes current
1712 * buffer. "action" tells how to close the current buffer:
1713 * DOBUF_GOTO free or hide it
1714 * DOBUF_SPLIT nothing
1715 * DOBUF_UNLOAD unload it
1716 * DOBUF_DEL delete it
1717 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001718 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 */
1720 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001721set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722{
1723 buf_T *prevbuf;
1724 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001725 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001726#ifdef FEAT_SYN_HL
1727 long old_tw = curbuf->b_p_tw;
1728#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001729 bufref_T newbufref;
1730 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001731 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732
1733 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001734 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001735 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1736 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
Bram Moolenaarc667da52019-11-30 20:52:27 +01001738 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740
Bram Moolenaarc667da52019-11-30 20:52:27 +01001741 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001743 set_bufref(&prevbufref, prevbuf);
1744 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001746 // Autocommands may delete the current buffer and/or the buffer we want to
1747 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001748 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001749 || (bufref_valid(&prevbufref)
1750 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001751#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001752 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001754 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001756#ifdef FEAT_SYN_HL
1757 if (prevbuf == curwin->w_buffer)
1758 reset_synblock(curwin);
1759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001761 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001762#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001763 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001765 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001767 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001768 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001769
Bram Moolenaare615db02022-01-20 21:00:54 +00001770 // Do not sync when in Insert mode and the buffer is open in
1771 // another window, might be a timer doing something in another
1772 // window.
1773 if (prevbuf == curbuf
1774 && ((State & INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001775 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1777 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001778 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001779 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1780 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001781 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001782 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001783 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001786 // An autocommand may have deleted "buf", already entered it (e.g., when
1787 // it did ":bunload") or aborted the script processing.
1788 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001789 valid = buf_valid(buf);
1790 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001791#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001792 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001794 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001795 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001796 // If the buffer is not valid but curwin->w_buffer is NULL we must
1797 // enter some buffer. Using the last one is hopefully OK.
1798 if (!valid)
1799 enter_buffer(lastbuf);
1800 else
1801 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001802#ifdef FEAT_SYN_HL
1803 if (old_tw != curbuf->b_p_tw)
1804 check_colorcolumn(curwin);
1805#endif
1806 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807}
1808
1809/*
1810 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001811 * Old curbuf must have been abandoned already! This also means "curbuf" may
1812 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001814 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001815enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001817 // Get the buffer in the current window.
1818 curwin->w_buffer = buf;
1819 curbuf = buf;
1820 ++curbuf->b_nwindows;
1821
1822 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1824 if (!buf->b_help)
1825 get_winopts(buf);
1826#ifdef FEAT_FOLDING
1827 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001828 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001830 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831#endif
1832
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001834 if (curwin->w_p_diff)
1835 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#endif
1837
Bram Moolenaara971b822011-09-14 14:43:25 +02001838#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001839 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001840#endif
1841
Bram Moolenaarc667da52019-11-30 20:52:27 +01001842 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 curwin->w_cursor.lnum = 1;
1844 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001847 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848
Bram Moolenaarc667da52019-11-30 20:52:27 +01001849 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001850 curwin->w_valid = 0;
1851
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001852 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1853 curbuf->b_last_cursor.col, TRUE);
1854
Bram Moolenaarc667da52019-11-30 20:52:27 +01001855 // Make sure the buffer is loaded.
1856 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001857 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001858 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001859 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001860 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001861 if (*curbuf->b_p_ft == NUL)
1862 did_filetype = FALSE;
1863
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001864 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 else
1867 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001868 if (!msg_silent && !shortmess(SHM_FILEINFO))
1869 need_fileinfo = TRUE; // display file info after redraw
1870
1871 // check if file changed
1872 (void)buf_check_timestamp(curbuf, FALSE);
1873
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001875#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001877#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1879 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 }
1881
Bram Moolenaarc667da52019-11-30 20:52:27 +01001882 // If autocommands did not change the cursor position, restore cursor lnum
1883 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 if (curwin->w_cursor.lnum == 1 && inindent(0))
1885 buflist_getfpos();
1886
Bram Moolenaarc667da52019-11-30 20:52:27 +01001887 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001889 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001890 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001891 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892
Bram Moolenaar009b2592004-10-24 19:18:58 +00001893#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001894 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001895 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001896#endif
1897
Bram Moolenaarc667da52019-11-30 20:52:27 +01001898 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001899 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900
1901#ifdef FEAT_KEYMAP
1902 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001903 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001905#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001906 // May need to set the spell language. Can only do this after the buffer
1907 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001908 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1909 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001910#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001911#ifdef FEAT_VIMINFO
1912 curbuf->b_last_used = vim_time();
1913#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001914
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 redraw_later(NOT_VALID);
1916}
1917
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001918#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1919/*
1920 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001921 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001922 */
1923 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001924do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001925{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001926 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001927 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001928 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001929 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001930 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001931 last_chdir_reason = "autochdir";
1932 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001933}
1934#endif
1935
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001936 void
1937no_write_message(void)
1938{
1939#ifdef FEAT_TERMINAL
1940 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001941 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001942 else
1943#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001944 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001945}
1946
1947 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001948no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001949{
1950#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001951 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001952 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001953 else
1954#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001955 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001956}
1957
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958/*
1959 * functions for dealing with the buffer list
1960 */
1961
1962/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001963 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1964 * only one window. That means it can be re-used.
1965 */
1966 int
1967curbuf_reusable(void)
1968{
1969 return (curbuf != NULL
1970 && curbuf->b_ffname == NULL
1971 && curbuf->b_nwindows <= 1
1972 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001973#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001974 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001975#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001976 && !curbufIsChanged());
1977}
1978
1979/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 * Add a file name to the buffer list. Return a pointer to the buffer.
1981 * If the same file name already exists return a pointer to that buffer.
1982 * If it does not exist, or if fname == NULL, a new entry is created.
1983 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1984 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1985 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001986 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001987 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1988 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001989 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 * This is the ONLY way to create a new buffer.
1991 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001993buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001994 char_u *ffname_arg, // full path of fname or relative
1995 char_u *sfname_arg, // short fname or NULL
1996 linenr_T lnum, // preferred cursor line
1997 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001999 char_u *ffname = ffname_arg;
2000 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 buf_T *buf;
2002#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002003 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004#endif
2005
Bram Moolenaar480778b2016-07-14 22:09:39 +02002006 if (top_file_num == 1)
2007 hash_init(&buf_hashtab);
2008
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002009 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010
2011 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002012 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 */
2014#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002015 // On Unix we can use inode numbers when the file exists. Works better
2016 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2018 st.st_dev = (dev_T)-1;
2019#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002020 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021#ifdef UNIX
2022 buflist_findname_stat(ffname, &st)
2023#else
2024 buflist_findname(ffname)
2025#endif
2026 ) != NULL)
2027 {
2028 vim_free(ffname);
2029 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002030 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2031 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002032
2033 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002034 // copy the options now, if 'cpo' doesn't have 's' and not done
2035 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002036 buf_copy_options(buf, 0);
2037
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2039 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002040 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002041
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002043 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002045 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002046 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002047 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002048 return NULL;
2049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 }
2051 return buf;
2052 }
2053
2054 /*
2055 * If the current buffer has no name and no contents, use the current
2056 * buffer. Otherwise: Need to allocate a new buffer structure.
2057 *
2058 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002059 * (A spell file buffer is allocated in spell.c, but that's not a normal
2060 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 */
2062 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002063 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 {
2065 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002066 // It's like this buffer is deleted. Watch out for autocommands that
2067 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 if (curbuf->b_p_bl)
2069 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2070 if (buf == curbuf)
2071 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002072#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002073 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002074 {
2075 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002081 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 clear_string_option(&buf->b_p_bh);
2083 clear_string_option(&buf->b_p_bt);
2084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 }
2086 if (buf != curbuf || curbuf == NULL)
2087 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002088 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 if (buf == NULL)
2090 {
2091 vim_free(ffname);
2092 return NULL;
2093 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002094#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002095 // init b: variables
Yegappan Lakshmanan0dac1ab2022-04-02 21:46:19 +01002096 buf->b_vars = dict_alloc_id(aid_buflistnew_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002097 if (buf->b_vars == NULL)
2098 {
2099 vim_free(ffname);
2100 vim_free(buf);
2101 return NULL;
2102 }
2103 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2104#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002105 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 }
2107
2108 if (ffname != NULL)
2109 {
2110 buf->b_ffname = ffname;
2111 buf->b_sfname = vim_strsave(sfname);
2112 }
2113
2114 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002115 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
2117 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2118 || buf->b_wininfo == NULL)
2119 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002120 if (buf->b_sfname != buf->b_ffname)
2121 VIM_CLEAR(buf->b_sfname);
2122 else
2123 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002124 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 if (buf != curbuf)
2126 free_buffer(buf);
2127 return NULL;
2128 }
2129
2130 if (buf == curbuf)
2131 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002132 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002133 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002134 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002136#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002137 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 return NULL;
2139#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002140 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002141
Bram Moolenaarc667da52019-11-30 20:52:27 +01002142 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002143 buf->b_p_initialized = FALSE;
2144 buf_copy_options(buf, BCO_ENTER);
2145
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002147 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 curbuf->b_kmap_state |= KEYMAP_INIT;
2149#endif
2150 }
2151 else
2152 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002153 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002155 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 {
2157 buf->b_prev = NULL;
2158 firstbuf = buf;
2159 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002160 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
2162 lastbuf->b_next = buf;
2163 buf->b_prev = lastbuf;
2164 }
2165 lastbuf = buf;
2166
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002167 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2168 {
2169 // Recycle a previously used buffer number. Used for buffers which
2170 // are normally hidden, e.g. in a popup window. Avoids that the
2171 // buffer number grows rapidly.
2172 --buf_reuse.ga_len;
2173 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002174
2175 // Move buffer to the right place in the buffer list.
2176 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2177 {
2178 buf_T *prev = buf->b_prev;
2179
2180 prev->b_next = buf->b_next;
2181 if (prev->b_next != NULL)
2182 prev->b_next->b_prev = prev;
2183 buf->b_next = prev;
2184 buf->b_prev = prev->b_prev;
2185 if (buf->b_prev != NULL)
2186 buf->b_prev->b_next = buf;
2187 prev->b_prev = buf;
2188 if (lastbuf == buf)
2189 lastbuf = prev;
2190 if (firstbuf == prev)
2191 firstbuf = buf;
2192 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002193 }
2194 else
2195 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002196 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002198 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002199 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
2201 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002202 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 }
2204 top_file_num = 1;
2205 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002206 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002208 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 buf_copy_options(buf, BCO_ALWAYS);
2210 }
2211
2212 buf->b_wininfo->wi_fpos.lnum = lnum;
2213 buf->b_wininfo->wi_win = curwin;
2214
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002215#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002216 hash_init(&buf->b_s.b_keywtab);
2217 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#endif
2219
2220 buf->b_fname = buf->b_sfname;
2221#ifdef UNIX
2222 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002223 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 else
2225 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002226 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 buf->b_dev = st.st_dev;
2228 buf->b_ino = st.st_ino;
2229 }
2230#endif
2231 buf->b_u_synced = TRUE;
2232 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002233 if (flags & BLN_DUMMY)
2234 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002236 clrallmarks(buf); // clear marks
2237 fmarks_check_names(buf); // check file marks for this file
2238 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (!(flags & BLN_DUMMY))
2240 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002241 bufref_T bufref;
2242
Bram Moolenaarc667da52019-11-30 20:52:27 +01002243 // Tricky: these autocommands may change the buffer list. They could
2244 // also split the window with re-using the one empty buffer. This may
2245 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002246 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002247 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002248 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002249 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002251 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002252 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002253 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002254 return NULL;
2255 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002256#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002257 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
2262 return buf;
2263}
2264
2265/*
2266 * Free the memory for the options of a buffer.
2267 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2268 * 'fileencoding'.
2269 */
2270 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002271free_buf_options(
2272 buf_T *buf,
2273 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 if (free_p_ff)
2276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 clear_string_option(&buf->b_p_bh);
2280 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 }
2282#ifdef FEAT_FIND_ID
2283 clear_string_option(&buf->b_p_def);
2284 clear_string_option(&buf->b_p_inc);
2285# ifdef FEAT_EVAL
2286 clear_string_option(&buf->b_p_inex);
2287# endif
2288#endif
2289#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2290 clear_string_option(&buf->b_p_inde);
2291 clear_string_option(&buf->b_p_indk);
2292#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002293#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2294 clear_string_option(&buf->b_p_bexpr);
2295#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002296#if defined(FEAT_CRYPT)
2297 clear_string_option(&buf->b_p_cm);
2298#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002299 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002300#if defined(FEAT_EVAL)
2301 clear_string_option(&buf->b_p_fex);
2302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002304# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002305 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2306 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2307 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002308# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 clear_string_option(&buf->b_p_key);
2310#endif
2311 clear_string_option(&buf->b_p_kp);
2312 clear_string_option(&buf->b_p_mps);
2313 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002314 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002316#ifdef FEAT_VARTABS
2317 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002318 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002319 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002320 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002321 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002322 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002323#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324#ifdef FEAT_KEYMAP
2325 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002326 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 ga_clear(&buf->b_kmap_ga);
2328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#ifdef FEAT_FOLDING
2331 clear_string_option(&buf->b_p_cms);
2332#endif
2333 clear_string_option(&buf->b_p_nf);
2334#ifdef FEAT_SYN_HL
2335 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002336 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002337#endif
2338#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002339 clear_string_option(&buf->b_s.b_p_spc);
2340 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002341 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002342 buf->b_s.b_cap_prog = NULL;
2343 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002344 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345#endif
2346#ifdef FEAT_SEARCHPATH
2347 clear_string_option(&buf->b_p_sua);
2348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350#ifdef FEAT_CINDENT
2351 clear_string_option(&buf->b_p_cink);
2352 clear_string_option(&buf->b_p_cino);
2353#endif
2354#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2355 clear_string_option(&buf->b_p_cinw);
2356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002358#ifdef FEAT_COMPL_FUNC
2359 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002360 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002361 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002362 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002363 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002364 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366#ifdef FEAT_QUICKFIX
2367 clear_string_option(&buf->b_p_gp);
2368 clear_string_option(&buf->b_p_mp);
2369 clear_string_option(&buf->b_p_efm);
2370#endif
2371 clear_string_option(&buf->b_p_ep);
2372 clear_string_option(&buf->b_p_path);
2373 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002374 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002375#ifdef FEAT_EVAL
2376 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002377 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 clear_string_option(&buf->b_p_dict);
2380 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002381#ifdef FEAT_TEXTOBJ
2382 clear_string_option(&buf->b_p_qe);
2383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002385 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002386#ifdef FEAT_LISP
2387 clear_string_option(&buf->b_p_lw);
2388#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002389 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002390 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391}
2392
2393/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002394 * Get alternate file "n".
2395 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2396 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 * if (options & GETF_SETMARK) call setpcmark()
2398 * if (options & GETF_ALT) we are jumping to an alternate file.
2399 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2400 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002401 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 */
2403 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002404buflist_getfile(
2405 int n,
2406 linenr_T lnum,
2407 int options,
2408 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409{
2410 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 pos_T *fpos;
2413 colnr_T col;
2414
2415 buf = buflist_findnr(n);
2416 if (buf == NULL)
2417 {
2418 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002419 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002421 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 return FAIL;
2423 }
2424
Bram Moolenaarc667da52019-11-30 20:52:27 +01002425 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 if (buf == curbuf)
2427 return OK;
2428
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002429 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002430 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002431 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002433 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002434 if (curbuf_locked())
2435 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
Bram Moolenaarc667da52019-11-30 20:52:27 +01002437 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 if (lnum == 0)
2439 {
2440 fpos = buflist_findfpos(buf);
2441 lnum = fpos->lnum;
2442 col = fpos->col;
2443 }
2444 else
2445 col = 0;
2446
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (options & GETF_SWITCH)
2448 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002449 // If 'switchbuf' contains "useopen": jump to first window containing
2450 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002451 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002453
Bram Moolenaarc667da52019-11-30 20:52:27 +01002454 // If 'switchbuf' contains "usetab": jump to first window in any tab
2455 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002456 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002457 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002458
Bram Moolenaarc667da52019-11-30 20:52:27 +01002459 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2460 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002461 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002462 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002464 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002465 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002466 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2467 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002469 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 }
2471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472
2473 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002474 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2475 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {
2477 --RedrawingDisabled;
2478
Bram Moolenaarc667da52019-11-30 20:52:27 +01002479 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 if (!p_sol && col != 0)
2481 {
2482 curwin->w_cursor.col = col;
2483 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 curwin->w_set_curswant = TRUE;
2486 }
2487 return OK;
2488 }
2489 --RedrawingDisabled;
2490 return FAIL;
2491}
2492
2493/*
2494 * go to the last know line number for the current buffer
2495 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002496 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002497buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498{
2499 pos_T *fpos;
2500
2501 fpos = buflist_findfpos(curbuf);
2502
2503 curwin->w_cursor.lnum = fpos->lnum;
2504 check_cursor_lnum();
2505
2506 if (p_sol)
2507 curwin->w_cursor.col = 0;
2508 else
2509 {
2510 curwin->w_cursor.col = fpos->col;
2511 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 curwin->w_set_curswant = TRUE;
2514 }
2515}
2516
Bram Moolenaar81695252004-12-29 20:58:21 +00002517#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2518/*
2519 * Find file in buffer list by name (it has to be for the current window).
2520 * Returns NULL if not found.
2521 */
2522 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002523buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002524{
2525 char_u *ffname;
2526 buf_T *buf = NULL;
2527
Bram Moolenaarc667da52019-11-30 20:52:27 +01002528 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002529 ffname = FullName_save(fname,
2530#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002531 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002532#else
2533 FALSE
2534#endif
2535 );
2536 if (ffname != NULL)
2537 {
2538 buf = buflist_findname(ffname);
2539 vim_free(ffname);
2540 }
2541 return buf;
2542}
2543#endif
2544
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545/*
2546 * Find file in buffer list by name (it has to be for the current window).
2547 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002548 * Skips dummy buffers.
2549 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 */
2551 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002552buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553{
2554#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002555 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556
2557 if (mch_stat((char *)ffname, &st) < 0)
2558 st.st_dev = (dev_T)-1;
2559 return buflist_findname_stat(ffname, &st);
2560}
2561
2562/*
2563 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2564 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002565 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 */
2567 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002568buflist_findname_stat(
2569 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002570 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571{
2572#endif
2573 buf_T *buf;
2574
Bram Moolenaarc667da52019-11-30 20:52:27 +01002575 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002576 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002577 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578#ifdef UNIX
2579 , stp
2580#endif
2581 ))
2582 return buf;
2583 return NULL;
2584}
2585
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586/*
2587 * Find file in buffer list by a regexp pattern.
2588 * Return fnum of the found buffer.
2589 * Return < 0 for error.
2590 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002592buflist_findpat(
2593 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002594 char_u *pattern_end, // pointer to first char after pattern
2595 int unlisted, // find unlisted buffers
2596 int diffmode UNUSED, // find diff-mode buffers only
2597 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598{
2599 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 int match = -1;
2601 int find_listed;
2602 char_u *pat;
2603 char_u *patend;
2604 int attempt;
2605 char_u *p;
2606 int toggledollar;
2607
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002608 // "%" is current file, "%%" or "#" is alternate file
2609 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2610 || (in_vim9script() && pattern_end == pattern + 2
2611 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002613 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002615 else
2616 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617#ifdef FEAT_DIFF
2618 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2619 match = -1;
2620#endif
2621 }
2622
2623 /*
2624 * Try four ways of matching a listed buffer:
2625 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002626 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 * attempt == 2: with '$' at end (only match at end)
2628 * attempt == 3: with '^' at start and '$' at end (only full match)
2629 * Repeat this for finding an unlisted buffer if there was no matching
2630 * listed buffer.
2631 */
2632 else
2633 {
2634 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2635 if (pat == NULL)
2636 return -1;
2637 patend = pat + STRLEN(pat) - 1;
2638 toggledollar = (patend > pat && *patend == '$');
2639
Bram Moolenaarc667da52019-11-30 20:52:27 +01002640 // First try finding a listed buffer. If not found and "unlisted"
2641 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 find_listed = TRUE;
2643 for (;;)
2644 {
2645 for (attempt = 0; attempt <= 3; ++attempt)
2646 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002647 regmatch_T regmatch;
2648
Bram Moolenaarc667da52019-11-30 20:52:27 +01002649 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002651 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002653 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002655 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002656 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 {
2658 vim_free(pat);
2659 return -1;
2660 }
2661
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002662 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 if (buf->b_p_bl == find_listed
2664#ifdef FEAT_DIFF
2665 && (!diffmode || diff_mode_buf(buf))
2666#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002667 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002669 if (curtab_only)
2670 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002671 // Ignore the match if the buffer is not open in
2672 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002673 win_T *wp;
2674
Bram Moolenaar29323592016-07-24 22:04:11 +02002675 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002676 if (wp->w_buffer == buf)
2677 break;
2678 if (wp == NULL)
2679 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002680 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002681 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 {
2683 match = -2;
2684 break;
2685 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002686 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 }
2688
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002689 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002690 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 break;
2692 }
2693
Bram Moolenaarc667da52019-11-30 20:52:27 +01002694 // Only search for unlisted buffers if there was no match with
2695 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 if (!unlisted || !find_listed || match != -1)
2697 break;
2698 find_listed = FALSE;
2699 }
2700
2701 vim_free(pat);
2702 }
2703
2704 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002705 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002707 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 return match;
2709}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710
Bram Moolenaar52410572019-10-27 05:12:45 +01002711#ifdef FEAT_VIMINFO
2712typedef struct {
2713 buf_T *buf;
2714 char_u *match;
2715} bufmatch_T;
2716#endif
2717
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718/*
2719 * Find all buffer names that match.
2720 * For command line expansion of ":buf" and ":sbuf".
2721 * Return OK if matches found, FAIL otherwise.
2722 */
2723 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002724ExpandBufnames(
2725 char_u *pat,
2726 int *num_file,
2727 char_u ***file,
2728 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
2730 int count = 0;
2731 buf_T *buf;
2732 int round;
2733 char_u *p;
2734 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002735 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002736#ifdef FEAT_VIMINFO
2737 bufmatch_T *matches = NULL;
2738#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002739 int fuzzy;
2740 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741
Bram Moolenaarc667da52019-11-30 20:52:27 +01002742 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 *file = NULL;
2744
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002745#ifdef FEAT_DIFF
2746 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2747 return FAIL;
2748#endif
2749
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002750 fuzzy = cmdline_fuzzy_complete(pat);
2751
2752 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2753 // expression matching)
2754 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002756 if (*pat == '^')
2757 {
2758 patc = alloc(STRLEN(pat) + 11);
2759 if (patc == NULL)
2760 return FAIL;
2761 STRCPY(patc, "\\(^\\|[\\/]\\)");
2762 STRCPY(patc + 11, pat + 1);
2763 }
2764 else
2765 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002766 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002767
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002768 // attempt == 0: try match with '\<', match at start of word
2769 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002770 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002771 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002772 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002773 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002774
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002775 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002776 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002777 if (attempt > 0 && patc == pat)
2778 break; // there was no anchor, no need to try again
2779 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2780 if (regmatch.regprog == NULL)
2781 {
2782 if (patc != pat)
2783 vim_free(patc);
2784 return FAIL;
2785 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002788 // round == 1: Count the matches.
2789 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 for (round = 1; round <= 2; ++round)
2791 {
2792 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002793 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002795 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002797#ifdef FEAT_DIFF
2798 if (options & BUF_DIFF_FILTER)
2799 // Skip buffers not suitable for
2800 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002801 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002802 continue;
2803#endif
2804
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002805 if (!fuzzy)
2806 p = buflist_match(&regmatch, buf, p_wic);
2807 else
2808 {
2809 p = NULL;
2810 // first try matching with the short file name
2811 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2812 p = buf->b_sfname;
2813 if (p == NULL)
2814 {
2815 // next try matching with the full path file name
2816 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2817 p = buf->b_ffname;
2818 }
2819 }
2820
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002821 if (p == NULL)
2822 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002823
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002824 if (round == 1)
2825 {
2826 ++count;
2827 continue;
2828 }
2829
2830 if (options & WILD_HOME_REPLACE)
2831 p = home_replace_save(buf, p);
2832 else
2833 p = vim_strsave(p);
2834
2835 if (!fuzzy)
2836 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002837#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002838 if (matches != NULL)
2839 {
2840 matches[count].buf = buf;
2841 matches[count].match = p;
2842 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002844 else
2845#endif
2846 (*file)[count++] = p;
2847 }
2848 else
2849 {
2850 fuzmatch[count].idx = count;
2851 fuzmatch[count].str = p;
2852 fuzmatch[count].score = score;
2853 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 }
2855 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002856 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 break;
2858 if (round == 1)
2859 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002860 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002862 *file = ALLOC_MULT(char_u *, count);
2863 if (*file == NULL)
2864 {
2865 vim_regfree(regmatch.regprog);
2866 if (patc != pat)
2867 vim_free(patc);
2868 return FAIL;
2869 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002870#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002871 if (options & WILD_BUFLASTUSED)
2872 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002873#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002874 }
2875 else
2876 {
2877 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2878 if (fuzmatch == NULL)
2879 {
2880 *num_file = 0;
2881 *file = NULL;
2882 return FAIL;
2883 }
2884 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 }
2886 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002887
2888 if (!fuzzy)
2889 {
2890 vim_regfree(regmatch.regprog);
2891 if (count) // match(es) found, break here
2892 break;
2893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 }
2895
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002896 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002897 vim_free(patc);
2898
Bram Moolenaar52410572019-10-27 05:12:45 +01002899#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002900 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002901 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002902 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002903 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002904 int i;
2905 if (count > 1)
2906 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2907 // if the current buffer is first in the list, place it at the end
2908 if (matches[0].buf == curbuf)
2909 {
2910 for (i = 1; i < count; i++)
2911 (*file)[i-1] = matches[i].match;
2912 (*file)[count-1] = matches[0].match;
2913 }
2914 else
2915 {
2916 for (i = 0; i < count; i++)
2917 (*file)[i] = matches[i].match;
2918 }
2919 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002920 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002921 }
2922 else
2923 {
2924 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2925 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002926 }
2927#endif
2928
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 *num_file = count;
2930 return (count == 0 ? FAIL : OK);
2931}
2932
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933/*
2934 * Check for a match on the file name for buffer "buf" with regprog "prog".
2935 */
2936 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002937buflist_match(
2938 regmatch_T *rmp,
2939 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002940 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941{
2942 char_u *match;
2943
Bram Moolenaarc667da52019-11-30 20:52:27 +01002944 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002945 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002947 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948
2949 return match;
2950}
2951
2952/*
2953 * Try matching the regexp in "prog" with file name "name".
2954 * Return "name" when there is a match, NULL when not.
2955 */
2956 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002957fname_match(
2958 regmatch_T *rmp,
2959 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002960 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961{
2962 char_u *match = NULL;
2963 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964
2965 if (name != NULL)
2966 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002967 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002968 rmp->rm_ic = p_fic || ignore_case;
2969 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 match = name;
2971 else
2972 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002973 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002975 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 match = name;
2977 vim_free(p);
2978 }
2979 }
2980
2981 return match;
2982}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983
2984/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002985 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 */
2987 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002988buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002990 char_u key[VIM_SIZEOF_INT * 2 + 1];
2991 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992
2993 if (nr == 0)
2994 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002995 sprintf((char *)key, "%x", nr);
2996 hi = hash_find(&buf_hashtab, key);
2997
2998 if (!HASHITEM_EMPTY(hi))
2999 return (buf_T *)(hi->hi_key
3000 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 return NULL;
3002}
3003
3004/*
3005 * Get name of file 'n' in the buffer list.
3006 * When the file has no name an empty string is returned.
3007 * home_replace() is used to shorten the file name (used for marks).
3008 * Returns a pointer to allocated memory, of NULL when failed.
3009 */
3010 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003011buflist_nr2name(
3012 int n,
3013 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003014 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015{
3016 buf_T *buf;
3017
3018 buf = buflist_findnr(n);
3019 if (buf == NULL)
3020 return NULL;
3021 return home_replace_save(helptail ? buf : NULL,
3022 fullname ? buf->b_ffname : buf->b_fname);
3023}
3024
3025/*
3026 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3027 * When "copy_options" is TRUE save the local window option values.
3028 * When "lnum" is 0 only do the options.
3029 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003030 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003031buflist_setfpos(
3032 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003033 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003034 linenr_T lnum,
3035 colnr_T col,
3036 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037{
3038 wininfo_T *wip;
3039
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003040 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 if (wip->wi_win == win)
3042 break;
3043 if (wip == NULL)
3044 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003045 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003046 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 if (wip == NULL)
3048 return;
3049 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003050 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 lnum = 1;
3052 }
3053 else
3054 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003055 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 if (wip->wi_prev)
3057 wip->wi_prev->wi_next = wip->wi_next;
3058 else
3059 buf->b_wininfo = wip->wi_next;
3060 if (wip->wi_next)
3061 wip->wi_next->wi_prev = wip->wi_prev;
3062 if (copy_options && wip->wi_optset)
3063 {
3064 clear_winopt(&wip->wi_opt);
3065#ifdef FEAT_FOLDING
3066 deleteFoldRecurse(&wip->wi_folds);
3067#endif
3068 }
3069 }
3070 if (lnum != 0)
3071 {
3072 wip->wi_fpos.lnum = lnum;
3073 wip->wi_fpos.col = col;
3074 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003075 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003077 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3079#ifdef FEAT_FOLDING
3080 wip->wi_fold_manual = win->w_fold_manual;
3081 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3082#endif
3083 wip->wi_optset = TRUE;
3084 }
3085
Bram Moolenaarc667da52019-11-30 20:52:27 +01003086 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 wip->wi_next = buf->b_wininfo;
3088 buf->b_wininfo = wip;
3089 wip->wi_prev = NULL;
3090 if (wip->wi_next)
3091 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092}
3093
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003094#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003095/*
3096 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3097 * page. That's because a diff is local to a tab page.
3098 */
3099 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003100wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003101{
3102 win_T *wp;
3103
3104 if (wip->wi_opt.wo_diff)
3105 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003106 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003107 // return FALSE when it's a window in the current tab page, thus
3108 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003109 if (wip->wi_win == wp)
3110 return FALSE;
3111 return TRUE;
3112 }
3113 return FALSE;
3114}
3115#endif
3116
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117/*
3118 * Find info for the current window in buffer "buf".
3119 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003120 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003121 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3122 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 * Returns NULL when there isn't any info.
3124 */
3125 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003126find_wininfo(
3127 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003128 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003129 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130{
3131 wininfo_T *wip;
3132
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003133 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003134 if (wip->wi_win == curwin
3135#ifdef FEAT_DIFF
3136 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3137#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003138
3139 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003141
Bram Moolenaarc667da52019-11-30 20:52:27 +01003142 // If no wininfo for curwin, use the first in the list (that doesn't have
3143 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003144 // If "need_options" is TRUE skip entries that don't have options set,
3145 // unless the window is editing "buf", so we can copy from the window
3146 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003147 if (wip == NULL)
3148 {
3149#ifdef FEAT_DIFF
3150 if (skip_diff_buffer)
3151 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003152 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003153 if (!wininfo_other_tab_diff(wip)
3154 && (!need_options || wip->wi_optset
3155 || (wip->wi_win != NULL
3156 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003157 break;
3158 }
3159 else
3160#endif
3161 wip = buf->b_wininfo;
3162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 return wip;
3164}
3165
3166/*
3167 * Reset the local window options to the values last used in this window.
3168 * If the buffer wasn't used in this window before, use the values from
3169 * the most recently used window. If the values were never set, use the
3170 * global values for the window.
3171 */
3172 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003173get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174{
3175 wininfo_T *wip;
3176
3177 clear_winopt(&curwin->w_onebuf_opt);
3178#ifdef FEAT_FOLDING
3179 clearFolding(curwin);
3180#endif
3181
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003182 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003183 if (wip != NULL && wip->wi_win != NULL
3184 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003186 // The buffer is currently displayed in the window: use the actual
3187 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003188 win_T *wp = wip->wi_win;
3189
3190 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3191#ifdef FEAT_FOLDING
3192 curwin->w_fold_manual = wp->w_fold_manual;
3193 curwin->w_foldinvalid = TRUE;
3194 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3195#endif
3196 }
3197 else if (wip != NULL && wip->wi_optset)
3198 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003199 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3201#ifdef FEAT_FOLDING
3202 curwin->w_fold_manual = wip->wi_fold_manual;
3203 curwin->w_foldinvalid = TRUE;
3204 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3205#endif
3206 }
3207 else
3208 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3209
3210#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003211 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 if (p_fdls >= 0)
3213 curwin->w_p_fdl = p_fdls;
3214#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003215 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216}
3217
3218/*
3219 * Find the position (lnum and col) for the buffer 'buf' for the current
3220 * window.
3221 * Returns a pointer to no_position if no position is found.
3222 */
3223 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003224buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225{
3226 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003227 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003229 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 if (wip != NULL)
3231 return &(wip->wi_fpos);
3232 else
3233 return &no_position;
3234}
3235
3236/*
3237 * Find the lnum for the buffer 'buf' for the current window.
3238 */
3239 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003240buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241{
3242 return buflist_findfpos(buf)->lnum;
3243}
3244
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003246 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003249buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250{
Bram Moolenaar52410572019-10-27 05:12:45 +01003251 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 int len;
3253 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003254 int ro_char;
3255 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003256#ifdef FEAT_TERMINAL
3257 int job_running;
3258 int job_none_open;
3259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260
Bram Moolenaar52410572019-10-27 05:12:45 +01003261#ifdef FEAT_VIMINFO
3262 garray_T buflist;
3263 buf_T **buflist_data = NULL, **p;
3264
3265 if (vim_strchr(eap->arg, 't'))
3266 {
3267 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003268 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003269 {
3270 if (ga_grow(&buflist, 1) == OK)
3271 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3272 }
3273
3274 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3275 sizeof(buf_T *), buf_compare);
3276
Bram Moolenaar3b991522019-11-06 23:26:20 +01003277 buflist_data = (buf_T **)buflist.ga_data;
3278 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003279 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003280 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003281
Bram Moolenaar3b991522019-11-06 23:26:20 +01003282 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003283 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3284 : buf->b_next)
3285#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003289#ifdef FEAT_TERMINAL
3290 job_running = term_job_running(buf->b_term);
3291 job_none_open = job_running && term_none_open(buf->b_term);
3292#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003293 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003294 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3295 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3296 || (vim_strchr(eap->arg, '+')
3297 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3298 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003299 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003300 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003301 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3302#ifdef FEAT_TERMINAL
3303 || (vim_strchr(eap->arg, 'R')
3304 && (!job_running || (job_running && job_none_open)))
3305 || (vim_strchr(eap->arg, '?')
3306 && (!job_running || (job_running && !job_none_open)))
3307 || (vim_strchr(eap->arg, 'F')
3308 && (job_running || buf->b_term == NULL))
3309#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003310 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3311 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3312 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3313 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3314 || (vim_strchr(eap->arg, '#')
3315 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003318 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 else
3320 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003321 if (message_filtered(NameBuff))
3322 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003324 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3325 : (bufIsChanged(buf) ? '+' : ' ');
3326#ifdef FEAT_TERMINAL
3327 if (term_job_running(buf->b_term))
3328 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003329 if (term_none_open(buf->b_term))
3330 ro_char = '?';
3331 else
3332 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003333 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3334 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003335 }
3336 else if (buf->b_term != NULL)
3337 ro_char = 'F';
3338 else
3339#endif
3340 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3341
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003342 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003343 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 buf->b_fnum,
3345 buf->b_p_bl ? ' ' : 'u',
3346 buf == curbuf ? '%' :
3347 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3348 buf->b_ml.ml_mfp == NULL ? ' ' :
3349 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003350 ro_char,
3351 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003352 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003353 if (len > IOSIZE - 20)
3354 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355
Bram Moolenaarc667da52019-11-30 20:52:27 +01003356 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357 i = 40 - vim_strsize(IObuff);
3358 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003360 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003361#ifdef FEAT_VIMINFO
3362 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3363 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3364 else
3365#endif
3366 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3367 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003368 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003370 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 ui_breakcheck();
3372 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003373
3374#ifdef FEAT_VIMINFO
3375 if (buflist_data)
3376 ga_clear(&buflist);
3377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379
3380/*
3381 * Get file name and line number for file 'fnum'.
3382 * Used by DoOneCmd() for translating '%' and '#'.
3383 * Used by insert_reg() and cmdline_paste() for '#' register.
3384 * Return FAIL if not found, OK for success.
3385 */
3386 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003387buflist_name_nr(
3388 int fnum,
3389 char_u **fname,
3390 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
3392 buf_T *buf;
3393
3394 buf = buflist_findnr(fnum);
3395 if (buf == NULL || buf->b_fname == NULL)
3396 return FAIL;
3397
3398 *fname = buf->b_fname;
3399 *lnum = buflist_findlnum(buf);
3400
3401 return OK;
3402}
3403
3404/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003405 * Set the file name for "buf"' to "ffname_arg", short file name to
3406 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 * The file name with the full path is also remembered, for when :cd is used.
3408 * Returns FAIL for failure (file name already in use by other buffer)
3409 * OK otherwise.
3410 */
3411 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003412setfname(
3413 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003414 char_u *ffname_arg,
3415 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003416 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003418 char_u *ffname = ffname_arg;
3419 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003420 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003422 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423#endif
3424
3425 if (ffname == NULL || *ffname == NUL)
3426 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003427 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003428 if (buf->b_sfname != buf->b_ffname)
3429 VIM_CLEAR(buf->b_sfname);
3430 else
3431 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003432 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433#ifdef UNIX
3434 st.st_dev = (dev_T)-1;
3435#endif
3436 }
3437 else
3438 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003439 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3440 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 return FAIL;
3442
3443 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003444 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 * - if the buffer is loaded, fail
3446 * - if the buffer is not loaded, delete it from the list
3447 */
3448#ifdef UNIX
3449 if (mch_stat((char *)ffname, &st) < 0)
3450 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003451#endif
3452 if (!(buf->b_flags & BF_DUMMY))
3453#ifdef UNIX
3454 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003456 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457#endif
3458 if (obuf != NULL && obuf != buf)
3459 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003460 win_T *win;
3461 tabpage_T *tab;
3462 int in_use = FALSE;
3463
3464 // during startup a window may use a buffer that is not loaded yet
3465 FOR_ALL_TAB_WINDOWS(tab, win)
3466 if (win->w_buffer == obuf)
3467 in_use = TRUE;
3468
3469 // it's loaded or used in a window, fail
3470 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 {
3472 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003473 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 vim_free(ffname);
3475 return FAIL;
3476 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003477 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003478 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 }
3480 sfname = vim_strsave(sfname);
3481 if (ffname == NULL || sfname == NULL)
3482 {
3483 vim_free(sfname);
3484 vim_free(ffname);
3485 return FAIL;
3486 }
3487#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003488 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003490 if (buf->b_sfname != buf->b_ffname)
3491 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 buf->b_ffname = ffname;
3494 buf->b_sfname = sfname;
3495 }
3496 buf->b_fname = buf->b_sfname;
3497#ifdef UNIX
3498 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003499 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 else
3501 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003502 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 buf->b_dev = st.st_dev;
3504 buf->b_ino = st.st_ino;
3505 }
3506#endif
3507
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509
3510 buf_name_changed(buf);
3511 return OK;
3512}
3513
3514/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003515 * Crude way of changing the name of a buffer. Use with care!
3516 * The name should be relative to the current directory.
3517 */
3518 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003519buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003520{
3521 buf_T *buf;
3522
3523 buf = buflist_findnr(fnum);
3524 if (buf != NULL)
3525 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003526 if (buf->b_sfname != buf->b_ffname)
3527 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003528 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003529 buf->b_ffname = vim_strsave(name);
3530 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003531 // Allocate ffname and expand into full path. Also resolves .lnk
3532 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003533 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003534 buf->b_fname = buf->b_sfname;
3535 }
3536}
3537
3538/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 * Take care of what needs to be done when the name of buffer "buf" has
3540 * changed.
3541 */
3542 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003543buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544{
3545 /*
3546 * If the file name changed, also change the name of the swapfile
3547 */
3548 if (buf->b_ml.ml_mfp != NULL)
3549 ml_setname(buf);
3550
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003551#ifdef FEAT_TERMINAL
3552 if (buf->b_term != NULL)
3553 term_clear_status_text(buf->b_term);
3554#endif
3555
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003557 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003558 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003559 status_redraw_all(); // status lines need to be redrawn
3560 fmarks_check_names(buf); // check named file marks
3561 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562}
3563
3564/*
3565 * set alternate file name for current window
3566 *
3567 * Used by do_one_cmd(), do_write() and do_ecmd().
3568 * Return the buffer.
3569 */
3570 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003571setaltfname(
3572 char_u *ffname,
3573 char_u *sfname,
3574 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575{
3576 buf_T *buf;
3577
Bram Moolenaarc667da52019-11-30 20:52:27 +01003578 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003580 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 curwin->w_alt_fnum = buf->b_fnum;
3582 return buf;
3583}
3584
3585/*
3586 * Get alternate file name for current window.
3587 * Return NULL if there isn't any, and give error message if requested.
3588 */
3589 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003590getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003591 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592{
3593 char_u *fname;
3594 linenr_T dummy;
3595
3596 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3597 {
3598 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003599 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 return NULL;
3601 }
3602 return fname;
3603}
3604
3605/*
3606 * Add a file name to the buflist and return its number.
3607 * Uses same flags as buflist_new(), except BLN_DUMMY.
3608 *
3609 * used by qf_init(), main() and doarglist()
3610 */
3611 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003612buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613{
3614 buf_T *buf;
3615
3616 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3617 if (buf != NULL)
3618 return buf->b_fnum;
3619 return 0;
3620}
3621
3622#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3623/*
3624 * Adjust slashes in file names. Called after 'shellslash' was set.
3625 */
3626 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003627buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628{
3629 buf_T *bp;
3630
Bram Moolenaar29323592016-07-24 22:04:11 +02003631 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 {
3633 if (bp->b_ffname != NULL)
3634 slash_adjust(bp->b_ffname);
3635 if (bp->b_sfname != NULL)
3636 slash_adjust(bp->b_sfname);
3637 }
3638}
3639#endif
3640
3641/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003642 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 * Also save the local window option values.
3644 */
3645 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003646buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003648 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649}
3650
3651/*
3652 * Return TRUE if 'ffname' is not the same file as current file.
3653 * Fname must have a full path (expanded by mch_FullName()).
3654 */
3655 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003656otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657{
3658 return otherfile_buf(curbuf, ffname
3659#ifdef UNIX
3660 , NULL
3661#endif
3662 );
3663}
3664
3665 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003666otherfile_buf(
3667 buf_T *buf,
3668 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003670 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003672 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003674 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3676 return TRUE;
3677 if (fnamecmp(ffname, buf->b_ffname) == 0)
3678 return FALSE;
3679#ifdef UNIX
3680 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003681 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682
Bram Moolenaarc667da52019-11-30 20:52:27 +01003683 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 if (stp == NULL)
3685 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003686 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 st.st_dev = (dev_T)-1;
3688 stp = &st;
3689 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003690 // Use dev/ino to check if the files are the same, even when the names
3691 // are different (possible with links). Still need to compare the
3692 // name above, for when the file doesn't exist yet.
3693 // Problem: The dev/ino changes when a file is deleted (and created
3694 // again) and remains the same when renamed/moved. We don't want to
3695 // mch_stat() each buffer each time, that would be too slow. Get the
3696 // dev/ino again when they appear to match, but not when they appear
3697 // to be different: Could skip a buffer when it's actually the same
3698 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 if (buf_same_ino(buf, stp))
3700 {
3701 buf_setino(buf);
3702 if (buf_same_ino(buf, stp))
3703 return FALSE;
3704 }
3705 }
3706#endif
3707 return TRUE;
3708}
3709
3710#if defined(UNIX) || defined(PROTO)
3711/*
3712 * Set inode and device number for a buffer.
3713 * Must always be called when b_fname is changed!.
3714 */
3715 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003716buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003718 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719
3720 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3721 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003722 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 buf->b_dev = st.st_dev;
3724 buf->b_ino = st.st_ino;
3725 }
3726 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003727 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728}
3729
3730/*
3731 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3732 */
3733 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003734buf_same_ino(
3735 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003736 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003738 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 && stp->st_dev == buf->b_dev
3740 && stp->st_ino == buf->b_ino);
3741}
3742#endif
3743
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003744/*
3745 * Print info about the current buffer.
3746 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003748fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003749 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003750 int shorthelp,
3751 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752{
3753 char_u *name;
3754 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003755 char *p;
3756 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003757 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003759 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 if (buffer == NULL)
3761 return;
3762
Bram Moolenaarc667da52019-11-30 20:52:27 +01003763 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003765 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 p = buffer + STRLEN(buffer);
3767 }
3768 else
3769 p = buffer;
3770
3771 *p++ = '"';
3772 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003773 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 else
3775 {
3776 if (!fullname && curbuf->b_fname != NULL)
3777 name = curbuf->b_fname;
3778 else
3779 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003780 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 (int)(IOSIZE - (p - buffer)), TRUE);
3782 }
3783
Bram Moolenaar32526b32019-01-19 17:43:09 +01003784 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 curbufIsChanged() ? (shortmess(SHM_MOD)
3786 ? " [+]" : _(" [Modified]")) : " ",
3787 (curbuf->b_flags & BF_NOTEDITED)
3788#ifdef FEAT_QUICKFIX
3789 && !bt_dontwrite(curbuf)
3790#endif
3791 ? _("[Not edited]") : "",
3792 (curbuf->b_flags & BF_NEW)
3793#ifdef FEAT_QUICKFIX
3794 && !bt_dontwrite(curbuf)
3795#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003796 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003798 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 : _("[readonly]")) : "",
3800 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3801 || curbuf->b_p_ro) ?
3802 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003803 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3804 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 if (curwin->w_cursor.lnum > 1000000L)
3806 n = (int)(((long)curwin->w_cursor.lnum) /
3807 ((long)curbuf->b_ml.ml_line_count / 100L));
3808 else
3809 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3810 (long)curbuf->b_ml.ml_line_count);
3811 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003812 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813#ifdef FEAT_CMDL_INFO
3814 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003815 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003816 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003817 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3818 curbuf->b_ml.ml_line_count),
3819 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820#endif
3821 else
3822 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003823 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 _("line %ld of %ld --%d%%-- col "),
3825 (long)curwin->w_cursor.lnum,
3826 (long)curbuf->b_ml.ml_line_count,
3827 n);
3828 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003829 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003830 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3832 }
3833
Bram Moolenaar32526b32019-01-19 17:43:09 +01003834 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3835 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836
3837 if (dont_truncate)
3838 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003839 // Temporarily set msg_scroll to avoid the message being truncated.
3840 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 msg_start();
3842 n = msg_scroll;
3843 msg_scroll = TRUE;
3844 msg(buffer);
3845 msg_scroll = n;
3846 }
3847 else
3848 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003849 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003851 // Need to repeat the message after redrawing when:
3852 // - When restart_edit is set (otherwise there will be a delay
3853 // before redrawing).
3854 // - When the screen was scrolled but there is no wait-return
3855 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003856 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 }
3858
3859 vim_free(buffer);
3860}
3861
3862 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003863col_print(
3864 char_u *buf,
3865 size_t buflen,
3866 int col,
3867 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868{
3869 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003870 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003872 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873}
3874
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875static char_u *lasttitle = NULL;
3876static char_u *lasticon = NULL;
3877
Bram Moolenaar84a93082018-06-16 22:58:15 +02003878/*
3879 * Put the file name in the title bar and icon of the window.
3880 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003882maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883{
3884 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003885 char_u *title_str = NULL;
3886 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 int maxlen = 0;
3888 int len;
3889 int mustset;
3890 char_u buf[IOSIZE];
3891 int off;
3892
3893 if (!redrawing())
3894 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003895 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 need_maketitle = TRUE;
3897 return;
3898 }
3899
3900 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003901 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003902 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903
3904 if (p_title)
3905 {
3906 if (p_titlelen > 0)
3907 {
3908 maxlen = p_titlelen * Columns / 100;
3909 if (maxlen < 10)
3910 maxlen = 10;
3911 }
3912
Bram Moolenaar84a93082018-06-16 22:58:15 +02003913 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 if (*p_titlestring != NUL)
3915 {
3916#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003917 if (stl_syntax & STL_IN_TITLE)
3918 {
3919 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003920 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003921
3922# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003923 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003924# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003925 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003926 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003927 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003928 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003929 set_string_option_direct((char_u *)"titlestring", -1,
3930 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 else
3933#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003934 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 }
3936 else
3937 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003938 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939
Bram Moolenaar2c666692012-09-05 13:30:40 +02003940#define SPACE_FOR_FNAME (IOSIZE - 100)
3941#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003942#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003944 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003945#ifdef FEAT_TERMINAL
3946 else if (curbuf->b_term != NULL)
3947 {
3948 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3949 SPACE_FOR_FNAME);
3950 }
3951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 else
3953 {
3954 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003955 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 }
3958
Bram Moolenaar21554412017-07-24 21:44:43 +02003959#ifdef FEAT_TERMINAL
3960 if (curbuf->b_term == NULL)
3961#endif
3962 switch (bufIsChanged(curbuf)
3963 + (curbuf->b_p_ro * 2)
3964 + (!curbuf->b_p_ma * 4))
3965 {
3966 case 1: STRCAT(buf, " +"); break;
3967 case 2: STRCAT(buf, " ="); break;
3968 case 3: STRCAT(buf, " =+"); break;
3969 case 4:
3970 case 6: STRCAT(buf, " -"); break;
3971 case 5:
3972 case 7: STRCAT(buf, " -+"); break;
3973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
Bram Moolenaar21554412017-07-24 21:44:43 +02003975 if (curbuf->b_fname != NULL
3976#ifdef FEAT_TERMINAL
3977 && curbuf->b_term == NULL
3978#endif
3979 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003981 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 off = (int)STRLEN(buf);
3983 buf[off++] = ' ';
3984 buf[off++] = '(';
3985 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003986 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003988 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 if (isalpha(buf[off]) && buf[off + 1] == ':')
3990 off += 2;
3991#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003992 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003993 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003995 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003996 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003997 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003998 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004002
Bram Moolenaarc667da52019-11-30 20:52:27 +01004003 // Translate unprintable chars and concatenate. Keep some
4004 // room for the server name. When there is no room (very long
4005 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02004006 if (off < SPACE_FOR_DIR)
4007 {
4008 p = transstr(buf + off);
4009 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4010 vim_free(p);
4011 }
4012 else
4013 {
4014 vim_strncpy(buf + off, (char_u *)"...",
4015 (size_t)(SPACE_FOR_ARGNR - off));
4016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 STRCAT(buf, ")");
4018 }
4019
Bram Moolenaar2c666692012-09-05 13:30:40 +02004020 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
4022#if defined(FEAT_CLIENTSERVER)
4023 if (serverName != NULL)
4024 {
4025 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004026 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 }
4028 else
4029#endif
4030 STRCAT(buf, " - VIM");
4031
4032 if (maxlen > 0)
4033 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004034 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004035 if (vim_strsize(buf) > maxlen)
4036 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 }
4038 }
4039 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004040 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041
4042 if (p_icon)
4043 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004044 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 if (*p_iconstring != NUL)
4046 {
4047#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004048 if (stl_syntax & STL_IN_ICON)
4049 {
4050 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004051 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004052
4053# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004054 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004055# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004056 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004057 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004058 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004059 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004060 set_string_option_direct((char_u *)"iconstring", -1,
4061 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 else
4064#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004065 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 }
4067 else
4068 {
4069 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004070 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004071 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004072 p = gettail(curbuf->b_ffname);
4073 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004074 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004075 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 if (len > 100)
4077 {
4078 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004080 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004081 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004083 STRCPY(icon_str, p);
4084 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 }
4086 }
4087
Bram Moolenaar84a93082018-06-16 22:58:15 +02004088 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089
4090 if (mustset)
4091 resettitle();
4092}
4093
4094/*
4095 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4096 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004097 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 */
4099 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004100value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101{
4102 if ((str == NULL) != (*last == NULL)
4103 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4104 {
4105 vim_free(*last);
4106 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004107 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004109 mch_restore_title(
4110 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004113 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004115 return TRUE;
4116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 }
4118 return FALSE;
4119}
4120
4121/*
4122 * Put current window title back (used after calling a shell)
4123 */
4124 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004125resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126{
4127 mch_settitle(lasttitle, lasticon);
4128}
Bram Moolenaarea408852005-06-25 22:49:46 +00004129
4130# if defined(EXITFREE) || defined(PROTO)
4131 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004132free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004133{
4134 vim_free(lasttitle);
4135 vim_free(lasticon);
4136}
4137# endif
4138
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004140#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004141
4142/*
4143 * Used for building in the status line.
4144 */
4145typedef struct
4146{
4147 char_u *stl_start;
4148 int stl_minwid;
4149 int stl_maxwid;
4150 enum {
4151 Normal,
4152 Empty,
4153 Group,
4154 Middle,
4155 Highlight,
4156 TabPage,
4157 Trunc
4158 } stl_type;
4159} stl_item_T;
4160
4161static size_t stl_items_len = 20; // Initial value, grows as needed.
4162static stl_item_T *stl_items = NULL;
4163static int *stl_groupitem = NULL;
4164static stl_hlrec_T *stl_hltab = NULL;
4165static stl_hlrec_T *stl_tabtab = NULL;
4166
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004168 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 * Return length of string in screen cells.
4170 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004171 * Normally works for window "wp", except when working for 'tabline' then it
4172 * is "curwin".
4173 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 * Items are drawn interspersed with the text that surrounds it
4175 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4176 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4177 *
4178 * If maxwidth is not zero, the string will be filled at any middle marker
4179 * or truncated if too long, fillchar is used for all whitespace.
4180 */
4181 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004182build_stl_str_hl(
4183 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004184 char_u *out, // buffer to write into != NameBuff
4185 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004186 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004187 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004188 int fillchar,
4189 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004190 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4191 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192{
Bram Moolenaar10772302019-01-20 18:25:54 +01004193 linenr_T lnum;
4194 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 char_u *p;
4196 char_u *s;
4197 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004198 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004200 win_T *save_curwin;
4201 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004202 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203#endif
4204 int empty_line;
4205 colnr_T virtcol;
4206 long l;
4207 long n;
4208 int prevchar_isflag;
4209 int prevchar_isitem;
4210 int itemisflag;
4211 int fillable;
4212 char_u *str;
4213 long num;
4214 int width;
4215 int itemcnt;
4216 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004217 int group_end_userhl;
4218 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004220#ifdef FEAT_EVAL
4221 int evaldepth;
4222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 int minwid;
4224 int maxwid;
4225 int zeropad;
4226 char_u base;
4227 char_u opt;
4228#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004229 char_u buf_tmp[TMPLEN];
4230 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004231 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004232 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004233 int save_must_redraw = must_redraw;
4234 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004235 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004236
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004237 if (stl_items == NULL)
4238 {
4239 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4240 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004241
4242 // Allocate one more, because the last element is used to indicate the
4243 // end of the list.
4244 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4245 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004246 }
4247
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004248#ifdef FEAT_EVAL
4249 /*
4250 * When the format starts with "%!" then evaluate it as an expression and
4251 * use the result as the actual format string.
4252 */
4253 if (fmt[0] == '%' && fmt[1] == '!')
4254 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004255 typval_T tv;
4256
4257 tv.v_type = VAR_NUMBER;
4258 tv.vval.v_number = wp->w_id;
4259 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4260
Bram Moolenaar9530b582022-01-22 13:39:08 +00004261 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004262 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004263 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004264
4265 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004266 }
4267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
4269 if (fillchar == 0)
4270 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004271
Bram Moolenaar10772302019-01-20 18:25:54 +01004272 // The cursor in windows other than the current one isn't always
4273 // up-to-date, esp. because of autocommands and timers.
4274 lnum = wp->w_cursor.lnum;
4275 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4276 {
4277 lnum = wp->w_buffer->b_ml.ml_line_count;
4278 wp->w_cursor.lnum = lnum;
4279 }
4280
4281 // Get line & check if empty (cursorpos will show "0-1"). Note that
4282 // p will become invalid when getting another buffer line.
4283 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004284 empty_line = (*p == NUL);
4285
Bram Moolenaar10772302019-01-20 18:25:54 +01004286 // Get the byte value now, in case we need it below. This is more efficient
4287 // than making a copy of the line.
4288 len = STRLEN(p);
4289 if (wp->w_cursor.col > (colnr_T)len)
4290 {
4291 // Line may have changed since checking the cursor column, or the lnum
4292 // was adjusted above.
4293 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004294 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004295 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004296 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004297 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004298 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299
4300 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004301#ifdef FEAT_EVAL
4302 evaldepth = 0;
4303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 p = out;
4305 curitem = 0;
4306 prevchar_isflag = TRUE;
4307 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004308 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004310 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004311 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004312 size_t new_len = stl_items_len * 3 / 2;
4313 stl_item_T *new_items;
4314 int *new_groupitem;
4315 stl_hlrec_T *new_hlrec;
4316
4317 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4318 if (new_items == NULL)
4319 break;
4320 stl_items = new_items;
4321 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4322 if (new_groupitem == NULL)
4323 break;
4324 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004325 new_hlrec = vim_realloc(stl_hltab,
4326 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004327 if (new_hlrec == NULL)
4328 break;
4329 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004330 new_hlrec = vim_realloc(stl_tabtab,
4331 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004332 if (new_hlrec == NULL)
4333 break;
4334 stl_tabtab = new_hlrec;
4335 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004336 }
4337
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 if (*s != NUL && *s != '%')
4339 prevchar_isflag = prevchar_isitem = FALSE;
4340
4341 /*
4342 * Handle up to the next '%' or the end.
4343 */
4344 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4345 *p++ = *s++;
4346 if (*s == NUL || p + 1 >= out + outlen)
4347 break;
4348
4349 /*
4350 * Handle one '%' item.
4351 */
4352 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004353 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004354 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 if (*s == '%')
4356 {
4357 if (p + 1 >= out + outlen)
4358 break;
4359 *p++ = *s++;
4360 prevchar_isflag = prevchar_isitem = FALSE;
4361 continue;
4362 }
4363 if (*s == STL_MIDDLEMARK)
4364 {
4365 s++;
4366 if (groupdepth > 0)
4367 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004368 stl_items[curitem].stl_type = Middle;
4369 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 continue;
4371 }
4372 if (*s == STL_TRUNCMARK)
4373 {
4374 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004375 stl_items[curitem].stl_type = Trunc;
4376 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 continue;
4378 }
4379 if (*s == ')')
4380 {
4381 s++;
4382 if (groupdepth < 1)
4383 continue;
4384 groupdepth--;
4385
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004386 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 *p = NUL;
4388 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004389 if (curitem > stl_groupitem[groupdepth] + 1
4390 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004392 // remove group if all items are empty and highlight group
4393 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004394 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004395 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004396 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004397 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004398 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004399 group_start_userhl = group_end_userhl =
4400 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004401 break;
4402 }
4403 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004404 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004405 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004406 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004408 if (stl_items[n].stl_type == Highlight)
4409 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004410 }
4411 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004413 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 p = t;
4415 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004416 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004417 {
4418 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004419 if (stl_items[n].stl_type == Highlight)
4420 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004421 // adjust the start position of TabPage to the next
4422 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004423 if (stl_items[n].stl_type == TabPage)
4424 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 }
4427 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004428 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004430 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 if (has_mbyte)
4432 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004433 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004435 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 {
4437 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004438 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 }
4440 }
4441 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004442 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4443 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444
4445 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004446 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004448
4449 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004450 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004451 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452
Bram Moolenaarc667da52019-11-30 20:52:27 +01004453 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004454 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004456 stl_items[l].stl_start -= n;
4457 if (stl_items[l].stl_start < t)
4458 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 }
4460 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004461 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004463 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004464 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 if (n < 0)
4466 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004467 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 n = 0 - n;
4469 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004470 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 }
4472 else
4473 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004474 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004475 l = (n - l) * MB_CHAR2LEN(fillchar);
4476 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004478 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004480 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4481 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004483 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 }
4485 }
4486 continue;
4487 }
4488 minwid = 0;
4489 maxwid = 9999;
4490 zeropad = FALSE;
4491 l = 1;
4492 if (*s == '0')
4493 {
4494 s++;
4495 zeropad = TRUE;
4496 }
4497 if (*s == '-')
4498 {
4499 s++;
4500 l = -1;
4501 }
4502 if (VIM_ISDIGIT(*s))
4503 {
4504 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004505 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 minwid = 0;
4507 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004508 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004510 stl_items[curitem].stl_type = Highlight;
4511 stl_items[curitem].stl_start = p;
4512 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 s++;
4514 curitem++;
4515 continue;
4516 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004517 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4518 {
4519 if (*s == STL_TABCLOSENR)
4520 {
4521 if (minwid == 0)
4522 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004523 // %X ends the close label, go back to the previously
4524 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004525 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004526 if (stl_items[n].stl_type == TabPage
4527 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004528 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004529 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004530 break;
4531 }
4532 }
4533 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004534 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004535 minwid = - minwid;
4536 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004537 stl_items[curitem].stl_type = TabPage;
4538 stl_items[curitem].stl_start = p;
4539 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004540 s++;
4541 curitem++;
4542 continue;
4543 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 if (*s == '.')
4545 {
4546 s++;
4547 if (VIM_ISDIGIT(*s))
4548 {
4549 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004550 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 maxwid = 50;
4552 }
4553 }
4554 minwid = (minwid > 50 ? 50 : minwid) * l;
4555 if (*s == '(')
4556 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004557 stl_groupitem[groupdepth++] = curitem;
4558 stl_items[curitem].stl_type = Group;
4559 stl_items[curitem].stl_start = p;
4560 stl_items[curitem].stl_minwid = minwid;
4561 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 s++;
4563 curitem++;
4564 continue;
4565 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004566#ifdef FEAT_EVAL
4567 // Denotes end of expanded %{} block
4568 if (*s == '}' && evaldepth > 0)
4569 {
4570 s++;
4571 evaldepth--;
4572 continue;
4573 }
4574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 if (vim_strchr(STL_ALL, *s) == NULL)
4576 {
4577 s++;
4578 continue;
4579 }
4580 opt = *s++;
4581
Bram Moolenaarc667da52019-11-30 20:52:27 +01004582 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 base = 'D';
4584 itemisflag = FALSE;
4585 fillable = TRUE;
4586 num = -1;
4587 str = NULL;
4588 switch (opt)
4589 {
4590 case STL_FILEPATH:
4591 case STL_FULLPATH:
4592 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004593 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004595 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 else
4597 {
4598 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004599 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4601 }
4602 trans_characters(NameBuff, MAXPATHL);
4603 if (opt != STL_FILENAME)
4604 str = NameBuff;
4605 else
4606 str = gettail(NameBuff);
4607 break;
4608
Bram Moolenaarc667da52019-11-30 20:52:27 +01004609 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004610 {
4611#ifdef FEAT_EVAL
4612 char_u *block_start = s - 1;
4613#endif
4614 int reevaluate = (*s == '%');
4615
4616 if (reevaluate)
4617 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 itemisflag = TRUE;
4619 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004620 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4621 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004623 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 break;
4625 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004626 if (reevaluate)
4627 p[-1] = 0; // remove the % at the end of %{% expr %}
4628 else
4629 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004632 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4633 "%d", curbuf->b_fnum);
4634 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4635 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4636 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004638 save_curbuf = curbuf;
4639 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004640 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 curwin = wp;
4642 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004643 // Visual mode is only valid in the current window.
4644 if (curwin != save_curwin)
4645 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646
Bram Moolenaar9530b582022-01-22 13:39:08 +00004647 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004649 curwin = save_curwin;
4650 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004651 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004652 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004653 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654
4655 if (str != NULL && *str != 0)
4656 {
4657 if (*skipdigits(str) == NUL)
4658 {
4659 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004660 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 itemisflag = FALSE;
4662 }
4663 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004664
4665 // If the output of the expression needs to be evaluated
4666 // replace the %{} block with the result of evaluation
4667 if (reevaluate && str != NULL && *str != 0
4668 && strchr((const char *)str, '%') != NULL
4669 && evaldepth < MAX_STL_EVAL_DEPTH)
4670 {
4671 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4672 size_t str_length = strlen((const char *)str);
4673 size_t fmt_length = strlen((const char *)s);
4674 size_t new_fmt_len = parsed_usefmt
4675 + str_length + fmt_length + 3;
4676 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4677 char_u *new_fmt_p = new_fmt;
4678
4679 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4680 + parsed_usefmt;
4681 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4682 + str_length;
4683 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4684 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4685 + fmt_length;
4686 *new_fmt_p = 0;
4687 new_fmt_p = NULL;
4688
4689 if (usefmt != fmt)
4690 vim_free(usefmt);
4691 VIM_CLEAR(str);
4692 usefmt = new_fmt;
4693 s = usefmt + parsed_usefmt;
4694 evaldepth++;
4695 continue;
4696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697#endif
4698 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004699 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 case STL_LINE:
4701 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4702 ? 0L : (long)(wp->w_cursor.lnum);
4703 break;
4704
4705 case STL_NUMLINES:
4706 num = wp->w_buffer->b_ml.ml_line_count;
4707 break;
4708
4709 case STL_COLUMN:
4710 num = !(State & INSERT) && empty_line
4711 ? 0 : (int)wp->w_cursor.col + 1;
4712 break;
4713
4714 case STL_VIRTCOL:
4715 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004716 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004717 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 if (opt == STL_VIRTCOL_ALT
4719 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4720 ? 0 : (int)wp->w_cursor.col + 1)))
4721 break;
4722 num = (long)virtcol;
4723 break;
4724
4725 case STL_PERCENTAGE:
4726 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4727 (long)wp->w_buffer->b_ml.ml_line_count);
4728 break;
4729
4730 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004731 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004732 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 break;
4734
4735 case STL_ARGLISTSTAT:
4736 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004737 buf_tmp[0] = 0;
4738 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4739 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 break;
4741
4742 case STL_KEYMAP:
4743 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004744 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4745 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 break;
4747 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004748#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004749 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750#else
4751 num = 0;
4752#endif
4753 break;
4754
4755 case STL_BUFNO:
4756 num = wp->w_buffer->b_fnum;
4757 break;
4758
4759 case STL_OFFSET_X:
4760 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004761 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 case STL_OFFSET:
4763#ifdef FEAT_BYTEOFF
4764 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4765 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4766 0L : l + 1 + (!(State & INSERT) && empty_line ?
4767 0 : (int)wp->w_cursor.col);
4768#endif
4769 break;
4770
4771 case STL_BYTEVAL_X:
4772 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004773 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004775 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 if (num == NL)
4777 num = 0;
4778 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4779 num = NL;
4780 break;
4781
4782 case STL_ROFLAG:
4783 case STL_ROFLAG_ALT:
4784 itemisflag = TRUE;
4785 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004786 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 break;
4788
4789 case STL_HELPFLAG:
4790 case STL_HELPFLAG_ALT:
4791 itemisflag = TRUE;
4792 if (wp->w_buffer->b_help)
4793 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004794 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 break;
4796
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 case STL_FILETYPE:
4798 if (*wp->w_buffer->b_p_ft != NUL
4799 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4800 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004801 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004802 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004803 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 }
4805 break;
4806
4807 case STL_FILETYPE_ALT:
4808 itemisflag = TRUE;
4809 if (*wp->w_buffer->b_p_ft != NUL
4810 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4811 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004812 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004813 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004814 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004816 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 }
4818 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819
Bram Moolenaar4033c552017-09-16 20:54:51 +02004820#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 case STL_PREVIEWFLAG:
4822 case STL_PREVIEWFLAG_ALT:
4823 itemisflag = TRUE;
4824 if (wp->w_p_pvw)
4825 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4826 : _("[Preview]"));
4827 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004828
4829 case STL_QUICKFIX:
4830 if (bt_quickfix(wp->w_buffer))
4831 str = (char_u *)(wp->w_llist_ref
4832 ? _(msg_loclist)
4833 : _(msg_qflist));
4834 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835#endif
4836
4837 case STL_MODIFIED:
4838 case STL_MODIFIED_ALT:
4839 itemisflag = TRUE;
4840 switch ((opt == STL_MODIFIED_ALT)
4841 + bufIsChanged(wp->w_buffer) * 2
4842 + (!wp->w_buffer->b_p_ma) * 4)
4843 {
4844 case 2: str = (char_u *)"[+]"; break;
4845 case 3: str = (char_u *)",+"; break;
4846 case 4: str = (char_u *)"[-]"; break;
4847 case 5: str = (char_u *)",-"; break;
4848 case 6: str = (char_u *)"[+-]"; break;
4849 case 7: str = (char_u *)",+-"; break;
4850 }
4851 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004852
4853 case STL_HIGHLIGHT:
4854 t = s;
4855 while (*s != '#' && *s != NUL)
4856 ++s;
4857 if (*s == '#')
4858 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004859 stl_items[curitem].stl_type = Highlight;
4860 stl_items[curitem].stl_start = p;
4861 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004862 curitem++;
4863 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004864 if (*s != NUL)
4865 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004866 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 }
4868
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004869 stl_items[curitem].stl_start = p;
4870 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 if (str != NULL && *str)
4872 {
4873 t = str;
4874 if (itemisflag)
4875 {
4876 if ((t[0] && t[1])
4877 && ((!prevchar_isitem && *t == ',')
4878 || (prevchar_isflag && *t == ' ')))
4879 t++;
4880 prevchar_isflag = TRUE;
4881 }
4882 l = vim_strsize(t);
4883 if (l > 0)
4884 prevchar_isitem = TRUE;
4885 if (l > maxwid)
4886 {
4887 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 if (has_mbyte)
4889 {
4890 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004891 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 }
4893 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 l -= byte2cells(*t++);
4895 if (p + 1 >= out + outlen)
4896 break;
4897 *p++ = '<';
4898 }
4899 if (minwid > 0)
4900 {
4901 for (; l < minwid && p + 1 < out + outlen; l++)
4902 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004903 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4905 *p++ = ' ';
4906 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004907 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 }
4909 minwid = 0;
4910 }
4911 else
4912 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004913 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004915 // Change a space by fillchar, unless fillchar is '-' and a
4916 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004917 if (fillable && *t == ' '
4918 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4919 MB_CHAR2BYTES(fillchar, p);
4920 else
4921 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 }
4923 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004924 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 }
4926 else if (num >= 0)
4927 {
4928 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4929 char_u nstr[20];
4930
4931 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004932 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 prevchar_isitem = TRUE;
4934 t = nstr;
4935 if (opt == STL_VIRTCOL_ALT)
4936 {
4937 *t++ = '-';
4938 minwid--;
4939 }
4940 *t++ = '%';
4941 if (zeropad)
4942 *t++ = '0';
4943 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004944 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 *t = 0;
4946
4947 for (n = num, l = 1; n >= nbase; n /= nbase)
4948 l++;
4949 if (opt == STL_VIRTCOL_ALT)
4950 l++;
4951 if (l > maxwid)
4952 {
4953 l += 2;
4954 n = l - maxwid;
4955 while (l-- > maxwid)
4956 num /= nbase;
4957 *t++ = '>';
4958 *t++ = '%';
4959 *t = t[-3];
4960 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004961 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4962 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 }
4964 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004965 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4966 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 p += STRLEN(p);
4968 }
4969 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004970 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971
4972 if (opt == STL_VIM_EXPR)
4973 vim_free(str);
4974
4975 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004976 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 curitem++;
4978 }
4979 *p = NUL;
4980 itemcnt = curitem;
4981
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004982#ifdef FEAT_EVAL
4983 if (usefmt != fmt)
4984 vim_free(usefmt);
4985#endif
4986
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 width = vim_strsize(out);
4988 if (maxwidth > 0 && width > maxwidth)
4989 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004990 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 l = 0;
4992 if (itemcnt == 0)
4993 s = out;
4994 else
4995 {
4996 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004997 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004999 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005000 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 break;
5002 }
5003 if (l == itemcnt)
5004 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005005 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005006 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 l = 0;
5008 }
5009 }
5010
5011 if (width - vim_strsize(s) >= maxwidth)
5012 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005013 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 if (has_mbyte)
5015 {
5016 s = out;
5017 width = 0;
5018 for (;;)
5019 {
5020 width += ptr2cells(s);
5021 if (width >= maxwidth)
5022 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005023 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005025 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005027 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
5029 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 s = out + maxwidth - 1;
5031 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005032 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 break;
5034 itemcnt = l;
5035 *s++ = '>';
5036 *s = 0;
5037 }
5038 else
5039 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 if (has_mbyte)
5041 {
5042 n = 0;
5043 while (width >= maxwidth)
5044 {
5045 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005046 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
5048 }
5049 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 n = width - maxwidth + 1;
5051 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005052 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 *s = '<';
5054
Bram Moolenaarc667da52019-11-30 20:52:27 +01005055 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 while (++width < maxwidth)
5057 {
5058 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005059 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 *s = NUL;
5061 }
5062
Bram Moolenaarc667da52019-11-30 20:52:27 +01005063 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 for (; l < itemcnt; l++)
5065 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005066 if (stl_items[l].stl_start - n >= s)
5067 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005069 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
5071 }
5072 width = maxwidth;
5073 }
5074 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5075 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005076 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005078 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 break;
5080 if (l < itemcnt)
5081 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005082 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5083 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005084 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005085 for (s = stl_items[l].stl_start; s < p;)
5086 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005088 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 width = maxwidth;
5090 }
5091 }
5092
Bram Moolenaarc667da52019-11-30 20:52:27 +01005093 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005094 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005096 *hltab = stl_hltab;
5097 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 for (l = 0; l < itemcnt; l++)
5099 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005100 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005102 sp->start = stl_items[l].stl_start;
5103 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005104 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 }
5106 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005107 sp->start = NULL;
5108 sp->userhl = 0;
5109 }
5110
Bram Moolenaarc667da52019-11-30 20:52:27 +01005111 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005112 if (tabtab != NULL)
5113 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005114 *tabtab = stl_tabtab;
5115 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005116 for (l = 0; l < itemcnt; l++)
5117 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005118 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005119 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005120 sp->start = stl_items[l].stl_start;
5121 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005122 sp++;
5123 }
5124 }
5125 sp->start = NULL;
5126 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 }
5128
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005129 // When inside update_screen we do not want redrawing a statusline, ruler,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005130 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005131 if (updating_screen)
5132 {
5133 must_redraw = save_must_redraw;
5134 curwin->w_redr_type = save_redr_type;
5135 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005136
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005137 // A user function may reset KeyTyped, restore it.
5138 KeyTyped = save_KeyTyped;
5139
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 return width;
5141}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005142#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005144#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5145 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005147 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5148 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 */
5150 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005151get_rel_pos(
5152 win_T *wp,
5153 char_u *buf,
5154 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005156 long above; // number of lines above window
5157 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158
Bram Moolenaarc667da52019-11-30 20:52:27 +01005159 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005160 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 above = wp->w_topline - 1;
5162#ifdef FEAT_DIFF
5163 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005164 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005165 above = 0; // All buffer lines are displayed and there is an
5166 // indication of filler lines, that can be considered
5167 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168#endif
5169 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5170 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005171 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5172 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005174 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005176 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 ? (int)(above / ((above + below) / 100L))
5178 : (int)(above * 100L / (above + below)));
5179}
5180#endif
5181
5182/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005183 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 * Return TRUE if it was appended.
5185 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005186 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005187append_arg_number(
5188 win_T *wp,
5189 char_u *buf,
5190 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005191 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192{
5193 char_u *p;
5194
Bram Moolenaarc667da52019-11-30 20:52:27 +01005195 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 return FALSE;
5197
Bram Moolenaarc667da52019-11-30 20:52:27 +01005198 p = buf + STRLEN(buf); // go to the end of the buffer
5199 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 return FALSE;
5201 *p++ = ' ';
5202 *p++ = '(';
5203 if (add_file)
5204 {
5205 STRCPY(p, "file ");
5206 p += 5;
5207 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005208 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5209 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5211 return TRUE;
5212}
5213
5214/*
5215 * If fname is not a full path, make it a full path.
5216 * Returns pointer to allocated memory (NULL for failure).
5217 */
5218 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005219fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220{
5221 /*
5222 * Force expanding the path always for Unix, because symbolic links may
5223 * mess up the full path name, even though it starts with a '/'.
5224 * Also expand when there is ".." in the file name, try to remove it,
5225 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005226 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 * For MS-Windows also expand names like "longna~1" to "longname".
5228 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005229#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 return FullName_save(fname, TRUE);
5231#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005232 if (!vim_isAbsName(fname)
5233 || strstr((char *)fname, "..") != NULL
5234 || strstr((char *)fname, "//") != NULL
5235# ifdef BACKSLASH_IN_FILENAME
5236 || strstr((char *)fname, "\\\\") != NULL
5237# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005238# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005240# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 )
5242 return FullName_save(fname, FALSE);
5243
5244 fname = vim_strsave(fname);
5245
Bram Moolenaar9b942202007-10-03 12:31:33 +00005246# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005247 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005248 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005249# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250
5251 return fname;
5252#endif
5253}
5254
5255/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005256 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5257 * "*ffname" becomes a pointer to allocated memory (or NULL).
5258 * When resolving a link both "*sfname" and "*ffname" will point to the same
5259 * allocated memory.
5260 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005261 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005264fname_expand(
5265 buf_T *buf UNUSED,
5266 char_u **ffname,
5267 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005269 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005271 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005273 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274
5275#ifdef FEAT_SHORTCUT
5276 if (!buf->b_p_bin)
5277 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005278 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005280 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005281 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005282 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 {
5284 vim_free(*ffname);
5285 *ffname = rfname;
5286 *sfname = rfname;
5287 }
5288 }
5289#endif
5290}
5291
5292/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 * Open a window for a number of buffers.
5294 */
5295 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005296ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297{
5298 buf_T *buf;
5299 win_T *wp, *wpnext;
5300 int split_ret = OK;
5301 int p_ea_save;
5302 int open_wins = 0;
5303 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005304 int count; // Maximum number of windows to open.
5305 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005306 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005307 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308
Bram Moolenaarc667da52019-11-30 20:52:27 +01005309 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 count = 9999;
5311 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005312 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5314 all = FALSE;
5315 else
5316 all = TRUE;
5317
5318 setpcmark();
5319
5320#ifdef FEAT_GUI
5321 need_mouse_correct = TRUE;
5322#endif
5323
5324 /*
5325 * Close superfluous windows (two windows for the same buffer).
5326 * Also close windows that are not full-width.
5327 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005328 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005329 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005330 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005332 tpnext = curtab->tp_next;
5333 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005335 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005336 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005337 || ((cmdmod.cmod_split & WSP_VERT)
5338 ? wp->w_height + wp->w_status_height < Rows - p_ch
5339 - tabline_height()
5340 : wp->w_width != Columns)
5341 || (had_tab > 0 && wp != firstwin))
5342 && !ONE_WINDOW
5343 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5344 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005345 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005346 if (win_close(wp, FALSE) == FAIL)
5347 break;
5348 // Just in case an autocommand does something strange with
5349 // windows: start all over...
5350 wpnext = firstwin;
5351 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005352 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005353 }
5354 else
5355 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005357
Bram Moolenaarc667da52019-11-30 20:52:27 +01005358 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005359 if (had_tab == 0 || tpnext == NULL)
5360 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005361 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 }
5363
5364 /*
5365 * Go through the buffer list. When a buffer doesn't have a window yet,
5366 * open one. Otherwise move the window to the right position.
5367 * Watch out for autocommands that delete buffers or windows!
5368 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005369 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5374 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005375 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5377 continue;
5378
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005379 if (had_tab != 0)
5380 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005381 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005382 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005383 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005384 else
5385 wp = NULL;
5386 }
5387 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005388 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005389 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005390 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005391 if (wp->w_buffer == buf)
5392 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005393 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005394 if (wp != NULL)
5395 win_move_after(wp, curwin);
5396 }
5397
5398 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005400 bufref_T bufref;
5401
5402 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005403
Bram Moolenaarc667da52019-11-30 20:52:27 +01005404 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005406 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5408 ++open_wins;
5409 p_ea = p_ea_save;
5410 if (split_ret == FAIL)
5411 continue;
5412
Bram Moolenaarc667da52019-11-30 20:52:27 +01005413 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005416 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005418 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 break;
5421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 if (swap_exists_action == SEA_QUIT)
5423 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005424#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005425 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005426
Bram Moolenaarc667da52019-11-30 20:52:27 +01005427 // Reset the error/interrupt/exception state here so that
5428 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005429 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005430#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005431
Bram Moolenaarc667da52019-11-30 20:52:27 +01005432 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 win_close(curwin, TRUE);
5434 --open_wins;
5435 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005436 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005437
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005438#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005439 // Restore the error/interrupt/exception state if not
5440 // discarded by a new aborting error, interrupt, or uncaught
5441 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005442 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 }
5445 else
5446 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 }
5448
5449 ui_breakcheck();
5450 if (got_int)
5451 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005452 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 break;
5454 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005455#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005456 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005457 if (aborting())
5458 break;
5459#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005460 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005461 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005462 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005465 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467
5468 /*
5469 * Close superfluous windows.
5470 */
5471 for (wp = lastwin; open_wins > count; )
5472 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005473 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 if (!win_valid(wp))
5476 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005477 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 wp = lastwin;
5479 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005480 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005482 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 --open_wins;
5484 wp = lastwin;
5485 }
5486 else
5487 {
5488 wp = wp->w_prev;
5489 if (wp == NULL)
5490 break;
5491 }
5492 }
5493}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005496static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005497
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498/*
5499 * do_modelines() - process mode lines for the current file
5500 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005501 * "flags" can be:
5502 * OPT_WINONLY only set options local to window
5503 * OPT_NOWIN don't set options local to window
5504 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 * Returns immediately if the "ml" option isn't set.
5506 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005508do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005510 linenr_T lnum;
5511 int nmlines;
5512 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513
5514 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5515 return;
5516
Bram Moolenaarc667da52019-11-30 20:52:27 +01005517 // Disallow recursive entry here. Can happen when executing a modeline
5518 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 if (entered)
5520 return;
5521
5522 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005523 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005525 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 nmlines = 0;
5527
Hu Jialun9dcd3492021-08-28 20:42:50 +02005528 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005530 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 nmlines = 0;
5532 --entered;
5533}
5534
Bram Moolenaarc667da52019-11-30 20:52:27 +01005535#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536
5537/*
5538 * chk_modeline() - check a single line for a mode string
5539 * Return FAIL if an error encountered.
5540 */
5541 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005542chk_modeline(
5543 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005544 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545{
5546 char_u *s;
5547 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005548 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 int prev;
5550 int vers;
5551 int end;
5552 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005553 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005554
Bram Moolenaare31ee862020-01-07 20:59:34 +01005555 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556
5557 prev = -1;
5558 for (s = ml_get(lnum); *s != NUL; ++s)
5559 {
5560 if (prev == -1 || vim_isspace(prev))
5561 {
5562 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5563 || STRNCMP(s, "vi:", (size_t)3) == 0)
5564 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005565 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005566 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 {
5568 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5569 e = s + 4;
5570 else
5571 e = s + 3;
5572 vers = getdigits(&e);
5573 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005574 && (s[0] != 'V'
5575 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 && (s[3] == ':'
5577 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5578 || (VIM_VERSION_100 < vers && s[3] == '<')
5579 || (VIM_VERSION_100 > vers && s[3] == '>')
5580 || (VIM_VERSION_100 == vers && s[3] == '=')))
5581 break;
5582 }
5583 }
5584 prev = *s;
5585 }
5586
5587 if (*s)
5588 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005589 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 ++s;
5591 while (s[-1] != ':');
5592
Bram Moolenaarc667da52019-11-30 20:52:27 +01005593 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 if (linecopy == NULL)
5595 return FAIL;
5596
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005597 // prepare for emsg()
5598 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005599 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600
5601 end = FALSE;
5602 while (end == FALSE)
5603 {
5604 s = skipwhite(s);
5605 if (*s == NUL)
5606 break;
5607
5608 /*
5609 * Find end of set command: ':' or end of line.
5610 * Skip over "\:", replacing it with ":".
5611 */
5612 for (e = s; *e != ':' && *e != NUL; ++e)
5613 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005614 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 if (*e == NUL)
5616 end = TRUE;
5617
5618 /*
5619 * If there is a "set" command, require a terminating ':' and
5620 * ignore the stuff after the ':'.
5621 * "vi:set opt opt opt: foo" -- foo not interpreted
5622 * "vi:opt opt opt: foo" -- foo interpreted
5623 * Accept "se" for compatibility with Elvis.
5624 */
5625 if (STRNCMP(s, "set ", (size_t)4) == 0
5626 || STRNCMP(s, "se ", (size_t)3) == 0)
5627 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005628 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 break;
5630 end = TRUE;
5631 s = vim_strchr(s, ' ') + 1;
5632 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005633 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634
Bram Moolenaarc667da52019-11-30 20:52:27 +01005635 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005637 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005638
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005639 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005640 current_sctx.sc_version = 1;
5641#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005642 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005643 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005644 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005646
Bram Moolenaar5958f952018-11-20 04:25:21 +01005647 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005648 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005649
Bram Moolenaara3227e22006-03-08 21:32:40 +00005650 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005651
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005652 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005653 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005654 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 break;
5656 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005657 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 }
5659
Bram Moolenaare31ee862020-01-07 20:59:34 +01005660 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005661 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662 vim_free(linecopy);
5663 }
5664 return retval;
5665}
5666
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005667/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005668 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5669 */
5670 int
5671bt_normal(buf_T *buf)
5672{
5673 return buf != NULL && buf->b_p_bt[0] == NUL;
5674}
5675
Bram Moolenaar113e1072019-01-20 15:30:40 +01005676#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005677/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005678 * Return TRUE if "buf" is the quickfix buffer.
5679 */
5680 int
5681bt_quickfix(buf_T *buf)
5682{
5683 return buf != NULL && buf->b_p_bt[0] == 'q';
5684}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005685#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005686
Bram Moolenaar113e1072019-01-20 15:30:40 +01005687#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005688/*
5689 * Return TRUE if "buf" is a terminal buffer.
5690 */
5691 int
5692bt_terminal(buf_T *buf)
5693{
5694 return buf != NULL && buf->b_p_bt[0] == 't';
5695}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005696#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005697
5698/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005699 * Return TRUE if "buf" is a help buffer.
5700 */
5701 int
5702bt_help(buf_T *buf)
5703{
5704 return buf != NULL && buf->b_help;
5705}
5706
5707/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005708 * Return TRUE if "buf" is a prompt buffer.
5709 */
5710 int
5711bt_prompt(buf_T *buf)
5712{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005713 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5714}
5715
Dominique Pelle748b3082022-01-08 12:41:16 +00005716#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005717/*
5718 * Return TRUE if "buf" is a buffer for a popup window.
5719 */
5720 int
5721bt_popup(buf_T *buf)
5722{
5723 return buf != NULL && buf->b_p_bt != NULL
5724 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005725}
Dominique Pelle748b3082022-01-08 12:41:16 +00005726#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005727
5728/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005729 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5730 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005731 */
5732 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005733bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005734{
5735 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5736 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005737 || buf->b_p_bt[0] == 't'
5738 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005739}
5740
Dominique Pelle748b3082022-01-08 12:41:16 +00005741#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005742/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005743 * Return TRUE if "buf" has 'buftype' set to "nofile".
5744 */
5745 int
5746bt_nofile(buf_T *buf)
5747{
5748 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5749}
Dominique Pelle748b3082022-01-08 12:41:16 +00005750#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005751
5752/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005753 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5754 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005755 */
5756 int
5757bt_dontwrite(buf_T *buf)
5758{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005759 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005760 || buf->b_p_bt[0] == 't'
5761 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005762}
5763
Bram Moolenaar113e1072019-01-20 15:30:40 +01005764#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005765 int
5766bt_dontwrite_msg(buf_T *buf)
5767{
5768 if (bt_dontwrite(buf))
5769 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005770 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005771 return TRUE;
5772 }
5773 return FALSE;
5774}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005775#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005776
5777/*
5778 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5779 * and 'bufhidden'.
5780 */
5781 int
5782buf_hide(buf_T *buf)
5783{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005784 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005785 switch (buf->b_p_bh[0])
5786 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005787 case 'u': // "unload"
5788 case 'w': // "wipe"
5789 case 'd': return FALSE; // "delete"
5790 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005791 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005792 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005793}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794
5795/*
5796 * Return special buffer name.
5797 * Returns NULL when the buffer has a normal file name.
5798 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005799 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005800buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005802#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005804 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005805 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005806 * Differentiate between the quickfix and location list buffers using
5807 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005808 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005809 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005810 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005811 else
5812 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005815
Bram Moolenaarc667da52019-11-30 20:52:27 +01005816 // There is no _file_ when 'buftype' is "nofile", b_sfname
5817 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005818 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005820#ifdef FEAT_TERMINAL
5821 if (buf->b_term != NULL)
5822 return term_get_status_text(buf->b_term);
5823#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005824 if (buf->b_fname != NULL)
5825 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005826#ifdef FEAT_JOB_CHANNEL
5827 if (bt_prompt(buf))
5828 return (char_u *)_("[Prompt]");
5829#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005830#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005831 if (bt_popup(buf))
5832 return (char_u *)_("[Popup]");
5833#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005834 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005836
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005838 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 return NULL;
5840}
5841
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005843 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5844 */
5845 char_u *
5846buf_get_fname(buf_T *buf)
5847{
5848 if (buf->b_fname == NULL)
5849 return (char_u *)_("[No Name]");
5850 return buf->b_fname;
5851}
5852
5853/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5855 */
5856 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005857set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858{
5859 if (on != curbuf->b_p_bl)
5860 {
5861 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 if (on)
5863 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5864 else
5865 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 }
5867}
5868
5869/*
5870 * Read the file for "buf" again and check if the contents changed.
5871 * Return TRUE if it changed or this could not be checked.
5872 */
5873 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005874buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875{
5876 buf_T *newbuf;
5877 int differ = TRUE;
5878 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 exarg_T ea;
5881
Bram Moolenaarc667da52019-11-30 20:52:27 +01005882 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5884 if (newbuf == NULL)
5885 return TRUE;
5886
Bram Moolenaarc667da52019-11-30 20:52:27 +01005887 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 if (prep_exarg(&ea, buf) == FAIL)
5889 {
5890 wipe_buffer(newbuf, FALSE);
5891 return TRUE;
5892 }
5893
Bram Moolenaarc667da52019-11-30 20:52:27 +01005894 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896
Bram Moolenaar4770d092006-01-12 23:22:24 +00005897 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 && readfile(buf->b_ffname, buf->b_fname,
5899 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5900 &ea, READ_NEW | READ_DUMMY) == OK)
5901 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005902 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5904 {
5905 differ = FALSE;
5906 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5907 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5908 {
5909 differ = TRUE;
5910 break;
5911 }
5912 }
5913 }
5914 vim_free(ea.cmd);
5915
Bram Moolenaarc667da52019-11-30 20:52:27 +01005916 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
Bram Moolenaarc667da52019-11-30 20:52:27 +01005919 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 wipe_buffer(newbuf, FALSE);
5921
5922 return differ;
5923}
5924
5925/*
5926 * Wipe out a buffer and decrement the last buffer number if it was used for
5927 * this buffer. Call this to wipe out a temp buffer that does not contain any
5928 * marks.
5929 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005931wipe_buffer(
5932 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005933 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934{
5935 if (buf->b_fnum == top_file_num - 1)
5936 --top_file_num;
5937
Bram Moolenaarc667da52019-11-30 20:52:27 +01005938 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005939 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005940
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005941 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005942
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005944 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945}