blob: 8e68d94248245fea3fe87971d3889bff6ee80987 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
shadmansaleh30e3de22021-05-15 17:23:28 +020030
31#ifdef FEAT_EVAL
32// Determines how deeply nested %{} blocks will be evaluated in statusline.
33# define MAX_STL_EVAL_DEPTH 100
34#endif
35
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020036static void enter_buffer(buf_T *buf);
37static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020041static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
42static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
43static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +020047static int value_changed(char_u *str, char_u **last);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010048static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
49static void free_buffer(buf_T *);
50static void free_buffer_stuff(buf_T *buf, int free_options);
51static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar00d253e2020-04-06 22:13:01 +020059#define FOR_ALL_BUFS_FROM_LAST(buf) \
60 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
66
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020067// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020068static int buf_free_count = 0;
69
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020070static int top_file_num = 1; // highest file number
71static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
72
73/*
74 * Return the highest possible buffer number.
75 */
76 int
77get_highest_fnum(void)
78{
79 return top_file_num - 1;
80}
81
Bram Moolenaarc024b462019-06-08 18:07:21 +020082/*
83 * Read data from buffer for retrying.
84 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020085 static int
86read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010087 int read_stdin, // read file from stdin, otherwise fifo
88 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
89 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020090{
91 int retval = OK;
92 linenr_T line_count;
93
Bram Moolenaarc5935a82021-10-19 20:48:52 +010094 // Read from the buffer which the text is already filled in and append at
95 // the end. This makes it possible to retry when 'fileformat' or
96 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020097 line_count = curbuf->b_ml.ml_line_count;
98 retval = readfile(
99 read_stdin ? NULL : curbuf->b_ffname,
100 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100101 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200102 flags | READ_BUFFER);
103 if (retval == OK)
104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100105 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200106 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200107 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200108 }
109 else
110 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100111 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200112 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200113 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200114 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100115 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116 curwin->w_cursor.lnum = 1;
117 curwin->w_cursor.col = 0;
118
119 if (read_stdin)
120 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100121 // Set or reset 'modified' before executing autocommands, so that
122 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100123 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100125 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200126 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 if (retval == OK)
129 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100130#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100131 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100132 curbuf, &retval);
133#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100134 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200135#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100136 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200137 }
138 return retval;
139}
140
Dominique Pelle748b3082022-01-08 12:41:16 +0000141#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200143 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
144 */
145 void
146buffer_ensure_loaded(buf_T *buf)
147{
148 if (buf->b_ml.ml_mfp == NULL)
149 {
150 aco_save_T aco;
151
152 aucmd_prepbuf(&aco, buf);
153 swap_exists_action = SEA_NONE;
154 open_buffer(FALSE, NULL, 0);
155 aucmd_restbuf(&aco);
156 }
157}
Dominique Pelle748b3082022-01-08 12:41:16 +0000158#endif
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200159
160/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200161 * Open current buffer, that is: open the memfile and read the file into
162 * memory.
163 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 */
165 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100166open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100167 int read_stdin, // read file from stdin
168 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
169 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170{
171 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200172 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100173#ifdef FEAT_SYN_HL
174 long old_tw = curbuf->b_p_tw;
175#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200176 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100178 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
179 // When re-entering the same buffer, it should not change, because the
180 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (readonlymode && curbuf->b_ffname != NULL
182 && (curbuf->b_flags & BF_NEVERLOADED))
183 curbuf->b_p_ro = TRUE;
184
Bram Moolenaar4770d092006-01-12 23:22:24 +0000185 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100187 // There MUST be a memfile, otherwise we can't do anything
188 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100189 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200190 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 if (curbuf->b_ml.ml_mfp != NULL)
192 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100193 // If there is no memfile at all, exit.
194 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 if (curbuf == NULL)
196 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000197 emsg(_(e_cannot_allocate_any_buffer_exiting));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200198
199 // Don't try to do any saving, with "curbuf" NULL almost nothing
200 // will work.
201 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 getout(2);
203 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200204
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000205 emsg(_(e_cannot_allocate_buffer_using_other_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100207#ifdef FEAT_SYN_HL
208 if (old_tw != curbuf->b_p_tw)
209 check_colorcolumn(curwin);
210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 return FAIL;
212 }
213
Bram Moolenaarc667da52019-11-30 20:52:27 +0100214 // The autocommands in readfile() may change the buffer, but only AFTER
215 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200216 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218
Bram Moolenaarc667da52019-11-30 20:52:27 +0100219 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100220 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222 if (curbuf->b_ffname != NULL
223#ifdef FEAT_NETBEANS_INTG
224 && netbeansReadFile
225#endif
226 )
227 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100228 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200229#ifdef UNIX
230 int save_bin = curbuf->b_p_bin;
231 int perm;
232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233#ifdef FEAT_NETBEANS_INTG
234 int oldFire = netbeansFireChanges;
235
236 netbeansFireChanges = 0;
237#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200238#ifdef UNIX
239 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200240 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200241 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200242# ifdef OPEN_CHR_FILES
243 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
244# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200245 ))
246 read_fifo = TRUE;
247 if (read_fifo)
248 curbuf->b_p_bin = TRUE;
249#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100250 if (shortmess(SHM_FILEINFO))
251 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200253 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
255#ifdef UNIX
256 if (read_fifo)
257 {
258 curbuf->b_p_bin = save_bin;
259 if (retval == OK)
260 retval = read_buffer(FALSE, eap, flags);
261 }
262#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100263 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#ifdef FEAT_NETBEANS_INTG
265 netbeansFireChanges = oldFire;
266#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100267 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200268 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 fix_help_buffer();
270 }
271 else if (read_stdin)
272 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200273 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100275 // First read the text in binary mode into the buffer.
276 // Then read from that same buffer and append at the end. This makes
277 // it possible to retry when 'fileformat' or 'fileencoding' was
278 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 curbuf->b_p_bin = TRUE;
280 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200281 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
282 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 curbuf->b_p_bin = save_bin;
284 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200285 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 }
287
Bram Moolenaarc667da52019-11-30 20:52:27 +0100288 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100290 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100292#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100293 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100294#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100295 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100297 // Set/reset the Changed flag first, autocmds may change the buffer.
298 // Apply the automatic commands, before processing the modelines.
299 // So the modelines have priority over autocommands.
300 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100301 // When reading stdin, the buffer contents always needs writing, so set
302 // the changed flag. Unless in readonly mode: "ls | gview -".
303 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000304 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100305 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100306#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000309 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100311 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200312 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100313 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaarc667da52019-11-30 20:52:27 +0100315 // Set last_changedtick to avoid triggering a TextChanged autocommand right
316 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100317 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100318 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100319 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100320
Bram Moolenaarc667da52019-11-30 20:52:27 +0100321 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322#ifdef FEAT_EVAL
323 if (aborting())
324#else
325 if (got_int)
326#endif
327 curbuf->b_flags |= BF_READERR;
328
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000329#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100330 // Need to update automatic folding. Do this before the autocommands,
331 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000332 foldUpdateAll(curwin);
333#endif
334
Bram Moolenaarc667da52019-11-30 20:52:27 +0100335 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 if (!(curwin->w_valid & VALID_TOPLINE))
337 {
338 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100339#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100343#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347#endif
348
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100349 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100351 // The autocommands may have changed the current buffer. Apply the
352 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200353 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 {
355 aco_save_T aco;
356
Bram Moolenaarc667da52019-11-30 20:52:27 +0100357 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200358 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000359 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
361
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100362 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100363#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100364 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
365 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100366#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100367 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
Bram Moolenaarc667da52019-11-30 20:52:27 +0100370 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 aucmd_restbuf(&aco);
372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 }
374
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 return retval;
376}
377
378/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200379 * Store "buf" in "bufref" and set the free count.
380 */
381 void
382set_bufref(bufref_T *bufref, buf_T *buf)
383{
384 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200385 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200386 bufref->br_buf_free_count = buf_free_count;
387}
388
389/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200390 * Return TRUE if "bufref->br_buf" points to the same buffer as when
391 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200392 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200393 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
394 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200395 */
396 int
397bufref_valid(bufref_T *bufref)
398{
399 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200400 ? TRUE : buf_valid(bufref->br_buf)
401 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200402}
403
404/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200406 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 */
408 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100409buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410{
411 buf_T *bp;
412
Bram Moolenaarc667da52019-11-30 20:52:27 +0100413 // Assume that we more often have a recent buffer, start with the last
414 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200415 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 if (bp == buf)
417 return TRUE;
418 return FALSE;
419}
420
421/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200422 * A hash table used to quickly lookup a buffer by its number.
423 */
424static hashtab_T buf_hashtab;
425
426 static void
427buf_hashtab_add(buf_T *buf)
428{
429 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
430 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000431 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200432}
433
434 static void
435buf_hashtab_remove(buf_T *buf)
436{
437 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
438
439 if (!HASHITEM_EMPTY(hi))
440 hash_remove(&buf_hashtab, hi);
441}
442
Bram Moolenaar94f01952018-09-01 15:30:03 +0200443/*
444 * Return TRUE when buffer "buf" can be unloaded.
445 * Give an error message and return FALSE when the buffer is locked or the
446 * screen is being redrawn and the buffer is in a window.
447 */
448 static int
449can_unload_buffer(buf_T *buf)
450{
451 int can_unload = !buf->b_locked;
452
453 if (can_unload && updating_screen)
454 {
455 win_T *wp;
456
457 FOR_ALL_WINDOWS(wp)
458 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200459 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200460 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200461 break;
462 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200463 }
464 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000465 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200466 return can_unload;
467}
Bram Moolenaara997b452018-04-17 23:24:06 +0200468
Bram Moolenaar480778b2016-07-14 22:09:39 +0200469/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 * Close the link to a buffer.
471 * "action" is used when there is no longer a window for the buffer.
472 * It can be:
473 * 0 buffer becomes hidden
474 * DOBUF_UNLOAD buffer is unloaded
475 * DOBUF_DELETE buffer is unloaded and removed from buffer list
476 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200477 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 * When doing all but the first one on the current buffer, the caller should
479 * get a new buffer very soon!
480 *
481 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100482 *
483 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
484 * cause there to be only one window with this buffer. e.g. when ":quit" is
485 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100486 *
487 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100488 *
489 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100491 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100492close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100493 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100494 buf_T *buf,
495 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100496 int abort_if_last,
497 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100500 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200501 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100502 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200503 win_T *the_curwin = curwin;
504 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200506 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
507 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaarcee52202020-03-11 14:19:58 +0100509 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100510
511 // Force unloading or deleting when 'bufhidden' says so.
512 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
513 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100514 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200515 {
516 del_buf = TRUE;
517 unload_buf = TRUE;
518 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100519 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200520 {
521 del_buf = TRUE;
522 unload_buf = TRUE;
523 wipe_buf = TRUE;
524 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100525 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200526 unload_buf = TRUE;
527
Bram Moolenaar94053a52017-08-01 21:44:33 +0200528#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200529 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200530 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100531 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532 if (term_job_running(buf->b_term))
533 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200534 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200535 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200536 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100537 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200538
Bram Moolenaarc667da52019-11-30 20:52:27 +0100539 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200540 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200541 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542 else
543 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100544 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200545 del_buf = FALSE;
546 unload_buf = FALSE;
547 }
548 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100549 else if (buf->b_p_bh[0] == 'h' && !del_buf)
550 {
551 // Hide a terminal buffer.
552 unload_buf = FALSE;
553 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200554 else
555 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100556 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200557 del_buf = TRUE;
558 unload_buf = TRUE;
559 wipe_buf = TRUE;
560 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100561 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200562 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
Bram Moolenaarc667da52019-11-30 20:52:27 +0100565 // Disallow deleting the buffer when it is locked (already being closed or
566 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200567 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100568 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569
Bram Moolenaarc667da52019-11-30 20:52:27 +0100570 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200571 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100573 // Set b_last_cursor when closing the last window for the buffer.
574 // Remember the last cursor position and window options of the buffer.
575 // This used to be only for the current window, but then options like
576 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 if (buf->b_nwindows == 1)
578 set_last_cursor(win);
579 buflist_setfpos(buf, win,
580 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
581 win->w_cursor.col, TRUE);
582 }
583
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200584 set_bufref(&bufref, buf);
585
Bram Moolenaarc667da52019-11-30 20:52:27 +0100586 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 if (buf->b_nwindows == 1)
588 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200589 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100590 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200591 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
592 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200593 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100594 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100595 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200596aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000597 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100598 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100599 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200600 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100601 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200602 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100603 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
Bram Moolenaarc667da52019-11-30 20:52:27 +0100606 // When the buffer becomes hidden, but is not unloaded, trigger
607 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 if (!unload_buf)
609 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200610 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100611 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200612 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
613 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200614 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100615 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200616 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200617 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100618 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200619 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100620 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200621 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100623#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100624 // autocmds may abort script processing
625 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100626 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200629
Bram Moolenaarc667da52019-11-30 20:52:27 +0100630 // If the buffer was in curwin and the window has changed, go back to that
631 // window, if it still exists. This avoids that ":edit x" triggering a
632 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200633 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
634 {
635 block_autocmds();
636 goto_tabpage_win(the_curtab, the_curwin);
637 unblock_autocmds();
638 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200639
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641
Bram Moolenaarc667da52019-11-30 20:52:27 +0100642 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 if (buf->b_nwindows > 0)
644 --buf->b_nwindows;
645
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100646#ifdef FEAT_DIFF
647 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100648 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100649#endif
650
Bram Moolenaarc667da52019-11-30 20:52:27 +0100651 // Return when a window is displaying the buffer or when it's not
652 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100654 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaarc667da52019-11-30 20:52:27 +0100656 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (buf->b_ffname == NULL)
658 del_buf = TRUE;
659
Bram Moolenaarc667da52019-11-30 20:52:27 +0100660 // When closing the current buffer stop Visual mode before freeing
661 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200662 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200663#if defined(EXITFREE)
664 && !entered_free_all_mem
665#endif
666 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200667 end_visual_mode();
668
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100669 // Free all things allocated for this buffer.
670 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
671 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100672 // Remember if we are closing the current buffer. Restore the number of
673 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 is_curbuf = (buf == curbuf);
675 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100677 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100678 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100679 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaarc667da52019-11-30 20:52:27 +0100681 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200682 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100683 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100684#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100685 // autocmds may abort script processing
686 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100687 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100690 // It's possible that autocommands change curbuf to the one being deleted.
691 // This might cause the previous curbuf to be deleted unexpectedly. But
692 // in some cases it's OK to delete the curbuf, because a new one is
693 // obtained anyway. Therefore only return if curbuf changed to the
694 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100696 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200697
Bram Moolenaar4033c552017-09-16 20:54:51 +0200698 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100699 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200700
Bram Moolenaarc667da52019-11-30 20:52:27 +0100701 // Autocommands may have opened or closed windows for this buffer.
702 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200703 if (buf->b_nwindows > 0)
704 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 /*
707 * Remove the buffer from the list.
708 */
709 if (wipe_buf)
710 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200711 if (action == DOBUF_WIPE_REUSE)
712 {
713 // we can re-use this buffer number, store it
714 if (buf_reuse.ga_itemsize == 0)
715 ga_init2(&buf_reuse, sizeof(int), 50);
716 if (ga_grow(&buf_reuse, 1) == OK)
717 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
718 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200719 if (buf->b_sfname != buf->b_ffname)
720 VIM_CLEAR(buf->b_sfname);
721 else
722 buf->b_sfname = NULL;
723 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 if (buf->b_prev == NULL)
725 firstbuf = buf->b_next;
726 else
727 buf->b_prev->b_next = buf->b_next;
728 if (buf->b_next == NULL)
729 lastbuf = buf->b_prev;
730 else
731 buf->b_next->b_prev = buf->b_prev;
732 free_buffer(buf);
733 }
734 else
735 {
736 if (del_buf)
737 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100738 // Free all internal variables and reset option values, to make
739 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 free_buffer_stuff(buf, TRUE);
741
Bram Moolenaarc667da52019-11-30 20:52:27 +0100742 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
744
Bram Moolenaarc667da52019-11-30 20:52:27 +0100745 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 buf->b_p_initialized = FALSE;
747 }
748 buf_clear_file(buf);
749 if (del_buf)
750 buf->b_p_bl = FALSE;
751 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100752 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100753 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754}
755
756/*
757 * Make buffer not contain a file.
758 */
759 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100760buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761{
762 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200763 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 buf->b_p_eol = TRUE;
766 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000768 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100770 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771#ifdef FEAT_NETBEANS_INTG
772 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773#endif
774}
775
776/*
777 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200778 * the file. Careful: get here with "curwin" NULL when exiting.
779 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100780 * BFA_DEL buffer is going to be deleted
781 * BFA_WIPE buffer is going to be wiped out
782 * BFA_KEEP_UNDO do not free undo information
783 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100786buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200789 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200790 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200791 win_T *the_curwin = curwin;
792 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793
Bram Moolenaarc667da52019-11-30 20:52:27 +0100794 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200795 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100796 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200797 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200798 if (buf->b_ml.ml_mfp != NULL)
799 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200800 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
801 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200802 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100803 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200804 return;
805 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200806 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200808 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
809 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200810 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100811 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 return;
813 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200814 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200816 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
817 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200818 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100819 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 return;
821 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200822 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100823 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200824
Bram Moolenaarc667da52019-11-30 20:52:27 +0100825 // If the buffer was in curwin and the window has changed, go back to that
826 // window, if it still exists. This avoids that ":edit x" triggering a
827 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200828 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
829 {
830 block_autocmds();
831 goto_tabpage_win(the_curtab, the_curwin);
832 unblock_autocmds();
833 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200834
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100835#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100836 // autocmds may abort script processing
837 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100841 // It's possible that autocommands change curbuf to the one being deleted.
842 // This might cause curbuf to be deleted unexpectedly. But in some cases
843 // it's OK to delete the curbuf, because a new one is obtained anyway.
844 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 if (buf == curbuf && !is_curbuf)
846 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100848 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200850#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100851 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200852 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100853 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200854#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000855
856#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100857 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000858 {
859 win_T *win;
860 tabpage_T *tp;
861
862 FOR_ALL_TAB_WINDOWS(tp, win)
863 if (win->w_buffer == buf)
864 clearFolding(win);
865 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#ifdef FEAT_TCL
869 tcl_buffer_free(buf);
870#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100871 ml_close(buf, TRUE); // close and delete the memline/memfile
872 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200873 if ((flags & BFA_KEEP_UNDO) == 0)
874 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100875 u_blockfree(buf); // free the memory allocated for undo
876 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100879 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100881#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100882 clear_buf_prop_types(buf);
883#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100884 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885}
886
887/*
888 * Free a buffer structure and the things it contains related to the buffer
889 * itself (not the file, that must have been done already).
890 */
891 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100892free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200894 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200896#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100897 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200898 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200899 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200900 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200901#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200902#ifdef FEAT_LUA
903 lua_buffer_free(buf);
904#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000905#ifdef FEAT_MZSCHEME
906 mzscheme_buffer_free(buf);
907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908#ifdef FEAT_PERL
909 perl_buf_free(buf);
910#endif
911#ifdef FEAT_PYTHON
912 python_buffer_free(buf);
913#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200914#ifdef FEAT_PYTHON3
915 python3_buffer_free(buf);
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#ifdef FEAT_RUBY
918 ruby_buffer_free(buf);
919#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200920#ifdef FEAT_JOB_CHANNEL
921 channel_buffer_free(buf);
922#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200923#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200924 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200925#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200926#ifdef FEAT_JOB_CHANNEL
927 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200928 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200929 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200930#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200931
932 buf_hashtab_remove(buf);
933
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200934 aubuflocal_remove(buf);
935
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200936 if (autocmd_busy)
937 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100938 // Do not free the buffer structure while autocommands are executing,
939 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200940 buf->b_next = au_pending_free_buf;
941 au_pending_free_buf = buf;
942 }
943 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100944 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200945 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100946 if (curbuf == buf)
947 curbuf = NULL; // make clear it's not to be used
948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949}
950
951/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100952 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100953 */
954 static void
955init_changedtick(buf_T *buf)
956{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100957 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100958
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100959 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
960 di->di_tv.v_type = VAR_NUMBER;
961 di->di_tv.v_lock = VAR_FIXED;
962 di->di_tv.vval.v_number = 0;
963
Bram Moolenaar92769c32017-02-25 15:41:37 +0100964#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100965 STRCPY(buf->b_ct_di.di_key, "changedtick");
966 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100967#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100968}
969
970/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
972 */
973 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100974free_buffer_stuff(
975 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100976 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
978 if (free_options)
979 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100980 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200982#ifdef FEAT_SPELL
983 ga_clear(&buf->b_s.b_langp);
984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 }
986#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100987 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100988 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100989
Bram Moolenaarc667da52019-11-30 20:52:27 +0100990 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100991 hash_init(&buf->b_vars->dv_hashtab);
992 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100993 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100994 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200997 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200999 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001001#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001002 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001003#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001004 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1005 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001006 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007}
1008
1009/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001010 * Free one wininfo_T.
1011 */
1012 void
1013free_wininfo(wininfo_T *wip)
1014{
1015 if (wip->wi_optset)
1016 {
1017 clear_winopt(&wip->wi_opt);
1018#ifdef FEAT_FOLDING
1019 deleteFoldRecurse(&wip->wi_folds);
1020#endif
1021 }
1022 vim_free(wip);
1023}
1024
1025/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 * Free the b_wininfo list for buffer "buf".
1027 */
1028 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001029clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 wininfo_T *wip;
1032
1033 while (buf->b_wininfo != NULL)
1034 {
1035 wip = buf->b_wininfo;
1036 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001037 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 }
1039}
1040
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041/*
1042 * Go to another buffer. Handles the result of the ATTENTION dialog.
1043 */
1044 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001045goto_buffer(
1046 exarg_T *eap,
1047 int start,
1048 int dir,
1049 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001051 bufref_T old_curbuf;
1052
1053 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054
1055 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1057 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1059 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001060#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001061 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001062
Bram Moolenaarc667da52019-11-30 20:52:27 +01001063 // Reset the error/interrupt/exception state here so that
1064 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001065 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001066#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001067
Bram Moolenaarc667da52019-11-30 20:52:27 +01001068 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 win_close(curwin, TRUE);
1070 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001071 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001073#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001074 // Restore the error/interrupt/exception state if not discarded by a
1075 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001076 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 }
1079 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001080 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001081}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083/*
1084 * Handle the situation of swap_exists_action being set.
1085 * It is allowed for "old_curbuf" to be NULL or invalid.
1086 */
1087 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001088handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001090#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001092#endif
1093#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001094 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001095#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001096 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001097
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 if (swap_exists_action == SEA_QUIT)
1099 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001100#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001101 // Reset the error/interrupt/exception state here so that
1102 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001103 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001104#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001105
Bram Moolenaarc667da52019-11-30 20:52:27 +01001106 // User selected Quit at ATTENTION prompt. Go back to previous
1107 // buffer. If that buffer is gone or the same as the current one,
1108 // open a new, empty buffer.
1109 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001110 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001111 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001112 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1113 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001114 {
1115 // Block autocommands here because curwin->w_buffer is NULL.
1116 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001117 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001118 unblock_autocmds();
1119 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001120 else
1121 buf = old_curbuf->br_buf;
1122 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001123 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001124 int old_msg_silent = msg_silent;
1125
1126 if (shortmess(SHM_FILEINFO))
1127 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001128 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001129 // restore msg_silent, so that the command line will be shown
1130 msg_silent = old_msg_silent;
1131
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001132#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001133 if (old_tw != curbuf->b_p_tw)
1134 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001135#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001136 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001137 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001138
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001139#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001140 // Restore the error/interrupt/exception state if not discarded by a
1141 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001142 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 }
1145 else if (swap_exists_action == SEA_RECOVER)
1146 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001147#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001148 // Reset the error/interrupt/exception state here so that
1149 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001150 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001151#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001152
Bram Moolenaarc667da52019-11-30 20:52:27 +01001153 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001155 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001156 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001158 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001159
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001160#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001161 // Restore the error/interrupt/exception state if not discarded by a
1162 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001163 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 }
1166 swap_exists_action = SEA_NONE;
1167}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001170 * Make the current buffer empty.
1171 * Used when it is wiped out and it's the last buffer.
1172 */
1173 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001174empty_curbuf(
1175 int close_others,
1176 int forceit,
1177 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001178{
1179 int retval;
1180 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001181 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001182
1183 if (action == DOBUF_UNLOAD)
1184 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001185 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001186 return FAIL;
1187 }
1188
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001189 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001190 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001191 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001192 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193
1194 setpcmark();
1195 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1196 forceit ? ECMD_FORCEIT : 0, curwin);
1197
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001198 // do_ecmd() may create a new buffer, then we have to delete
1199 // the old one. But do_ecmd() may have done that already, check
1200 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001201 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001202 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001203 if (!close_others)
1204 need_fileinfo = FALSE;
1205 return retval;
1206}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208/*
1209 * Implementation of the commands for the buffer list.
1210 *
1211 * action == DOBUF_GOTO go to specified buffer
1212 * action == DOBUF_SPLIT split window and go to specified buffer
1213 * action == DOBUF_UNLOAD unload specified buffer(s)
1214 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1215 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001216 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 *
1218 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1219 * start == DOBUF_FIRST go to "count" buffer from first buffer
1220 * start == DOBUF_LAST go to "count" buffer from last buffer
1221 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1222 *
1223 * Return FAIL or OK.
1224 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001225 static int
1226do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001227 int action,
1228 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001229 int dir, // FORWARD or BACKWARD
1230 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001231 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232{
1233 buf_T *buf;
1234 buf_T *bp;
1235 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001236 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
1238 switch (start)
1239 {
1240 case DOBUF_FIRST: buf = firstbuf; break;
1241 case DOBUF_LAST: buf = lastbuf; break;
1242 default: buf = curbuf; break;
1243 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001244 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 {
1246 while (count-- > 0)
1247 {
1248 do
1249 {
1250 buf = buf->b_next;
1251 if (buf == NULL)
1252 buf = firstbuf;
1253 }
1254 while (buf != curbuf && !bufIsChanged(buf));
1255 }
1256 if (!bufIsChanged(buf))
1257 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001258 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 return FAIL;
1260 }
1261 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001262 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
1264 while (buf != NULL && buf->b_fnum != count)
1265 buf = buf->b_next;
1266 }
1267 else
1268 {
1269 bp = NULL;
1270 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1271 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001272 // remember the buffer where we start, we come back there when all
1273 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 if (bp == NULL)
1275 bp = buf;
1276 if (dir == FORWARD)
1277 {
1278 buf = buf->b_next;
1279 if (buf == NULL)
1280 buf = firstbuf;
1281 }
1282 else
1283 {
1284 buf = buf->b_prev;
1285 if (buf == NULL)
1286 buf = lastbuf;
1287 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001288 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (unload || buf->b_p_bl)
1290 {
1291 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001292 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 }
1294 if (bp == buf)
1295 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001296 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001297 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 return FAIL;
1299 }
1300 }
1301 }
1302
Bram Moolenaarc667da52019-11-30 20:52:27 +01001303 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 {
1305 if (start == DOBUF_FIRST)
1306 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001307 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001309 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 }
1311 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001312 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001314 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 return FAIL;
1316 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001317#ifdef FEAT_PROP_POPUP
1318 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1319# ifdef FEAT_TERMINAL
1320 && !bt_terminal(buf)
1321#endif
1322 )
1323 return OK;
1324#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
1326#ifdef FEAT_GUI
1327 need_mouse_correct = TRUE;
1328#endif
1329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001331 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 */
1333 if (unload)
1334 {
1335 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001336 bufref_T bufref;
1337
Bram Moolenaar94f01952018-09-01 15:30:03 +02001338 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001339 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001340
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001341 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342
Bram Moolenaarc667da52019-11-30 20:52:27 +01001343 // When unloading or deleting a buffer that's already unloaded and
1344 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001345 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1346 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 return FAIL;
1348
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001349 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001351#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001352 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 {
1354 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001355 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001356 // Autocommand deleted buffer, oops! It's not changed
1357 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001359 // If it's still changed fail silently, the dialog already
1360 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001361 if (bufIsChanged(buf))
1362 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001364 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001367 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 buf->b_fnum);
1369 return FAIL;
1370 }
1371 }
1372
Bram Moolenaarc667da52019-11-30 20:52:27 +01001373 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001374 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001375 end_visual_mode();
1376
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001377 // If deleting the last (listed) buffer, make it empty.
1378 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001379 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (bp->b_p_bl && bp != buf)
1381 break;
1382 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001383 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001385 // If the deleted buffer is the current one, close the current window
1386 // (unless it's the only window). Repeat this so long as we end up in
1387 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001388 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001389 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001390 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001391 {
1392 if (win_close(curwin, FALSE) == FAIL)
1393 break;
1394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001396 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (buf != curbuf)
1398 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001399 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001400 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001401 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 return OK;
1403 }
1404
1405 /*
1406 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001407 * There should be another, otherwise it would have been handled
1408 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001409 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 * Then prefer the buffer we most recently visited.
1411 * Else try to find one that is loaded, after the current buffer,
1412 * then before the current buffer.
1413 * Finally use any buffer.
1414 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001415 buf = NULL; // selected buffer
1416 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001417 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1418 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001419 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 {
1421 int jumpidx;
1422
1423 jumpidx = curwin->w_jumplistidx - 1;
1424 if (jumpidx < 0)
1425 jumpidx = curwin->w_jumplistlen - 1;
1426
1427 forward = jumpidx;
1428 while (jumpidx != curwin->w_jumplistidx)
1429 {
1430 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1431 if (buf != NULL)
1432 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001433 // Skip current and unlisted bufs. Also skip a quickfix
1434 // buffer, it might be deleted soon.
1435 if (buf == curbuf || !buf->b_p_bl
1436#if defined(FEAT_QUICKFIX)
1437 || bt_quickfix(buf)
1438#endif
1439 )
1440 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 else if (buf->b_ml.ml_mfp == NULL)
1442 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001443 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 if (bp == NULL)
1445 bp = buf;
1446 buf = NULL;
1447 }
1448 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001449 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001451 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1453 break;
1454 if (--jumpidx < 0)
1455 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001456 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 break;
1458 }
1459 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460
Bram Moolenaarc667da52019-11-30 20:52:27 +01001461 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 {
1463 forward = TRUE;
1464 buf = curbuf->b_next;
1465 for (;;)
1466 {
1467 if (buf == NULL)
1468 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001469 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 break;
1471 buf = curbuf->b_prev;
1472 forward = FALSE;
1473 continue;
1474 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001475 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001476 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1477#if defined(FEAT_QUICKFIX)
1478 && !bt_quickfix(buf)
1479#endif
1480 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001482 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001484 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 bp = buf;
1486 }
1487 if (forward)
1488 buf = buf->b_next;
1489 else
1490 buf = buf->b_prev;
1491 }
1492 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001493 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001495 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001497 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001498 if (buf->b_p_bl && buf != curbuf
1499#if defined(FEAT_QUICKFIX)
1500 && !bt_quickfix(buf)
1501#endif
1502 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 break;
1504 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001505 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 {
1507 if (curbuf->b_next != NULL)
1508 buf = curbuf->b_next;
1509 else
1510 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001511#if defined(FEAT_QUICKFIX)
1512 if (bt_quickfix(buf))
1513 buf = NULL;
1514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 }
1516 }
1517
Bram Moolenaara02471e2014-01-10 16:43:14 +01001518 if (buf == NULL)
1519 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001520 // Autocommands must have wiped out all other buffers. Only option
1521 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001522 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001523 }
1524
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001526 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001528 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001530 // If 'switchbuf' contains "useopen": jump to first window containing
1531 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001532 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001533 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001534 // If 'switchbuf' contains "usetab": jump to first window in any tab
1535 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001536 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 return OK;
1538 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 return FAIL;
1540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541
Bram Moolenaarc667da52019-11-30 20:52:27 +01001542 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 if (buf == curbuf)
1544 return OK;
1545
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001546 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001547 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 {
1549#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001550 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001552 bufref_T bufref;
1553
1554 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001556 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001557 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 }
1560 if (bufIsChanged(curbuf))
1561#endif
1562 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001563 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 return FAIL;
1565 }
1566 }
1567
Bram Moolenaarc667da52019-11-30 20:52:27 +01001568 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 set_curbuf(buf, action);
1570
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001572 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001574#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001575 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 return FAIL;
1577#endif
1578
1579 return OK;
1580}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001582 int
1583do_buffer(
1584 int action,
1585 int start,
1586 int dir, // FORWARD or BACKWARD
1587 int count, // buffer number or number of buffers
1588 int forceit) // TRUE when using !
1589{
1590 return do_buffer_ext(action, start, dir, count,
1591 forceit ? DOBUF_FORCEIT : 0);
1592}
1593
1594/*
1595 * do_bufdel() - delete or unload buffer(s)
1596 *
1597 * addr_count == 0: ":bdel" - delete current buffer
1598 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1599 * buffer "end_bnr", then any other arguments.
1600 * addr_count == 2: ":N,N bdel" - delete buffers in range
1601 *
1602 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1603 * DOBUF_DEL (":bdel")
1604 *
1605 * Returns error message or NULL
1606 */
1607 char *
1608do_bufdel(
1609 int command,
1610 char_u *arg, // pointer to extra arguments
1611 int addr_count,
1612 int start_bnr, // first buffer number in a range
1613 int end_bnr, // buffer nr or last buffer nr in a range
1614 int forceit)
1615{
1616 int do_current = 0; // delete current buffer?
1617 int deleted = 0; // number of buffers deleted
1618 char *errormsg = NULL; // return value
1619 int bnr; // buffer number
1620 char_u *p;
1621
1622 if (addr_count == 0)
1623 {
1624 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1625 }
1626 else
1627 {
1628 if (addr_count == 2)
1629 {
1630 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001631 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001632 bnr = start_bnr;
1633 }
1634 else // addr_count == 1
1635 bnr = end_bnr;
1636
1637 for ( ;!got_int; ui_breakcheck())
1638 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001639 // Delete the current buffer last, otherwise when the
1640 // current buffer is deleted, the next buffer becomes
1641 // the current one and will be loaded, which may then
1642 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001643 if (bnr == curbuf->b_fnum)
1644 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001645 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001646 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1647 ++deleted;
1648
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001649 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001650 if (addr_count == 2)
1651 {
1652 if (++bnr > end_bnr)
1653 break;
1654 }
1655 else // addr_count == 1
1656 {
1657 arg = skipwhite(arg);
1658 if (*arg == NUL)
1659 break;
1660 if (!VIM_ISDIGIT(*arg))
1661 {
1662 p = skiptowhite_esc(arg);
1663 bnr = buflist_findpat(arg, p,
1664 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1665 FALSE, FALSE);
1666 if (bnr < 0) // failed
1667 break;
1668 arg = p;
1669 }
1670 else
1671 bnr = getdigits(&arg);
1672 }
1673 }
1674 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1675 FORWARD, do_current, forceit) == OK)
1676 ++deleted;
1677
1678 if (deleted == 0)
1679 {
1680 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001681 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001682 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001683 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001684 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001685 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001686 errormsg = (char *)IObuff;
1687 }
1688 else if (deleted >= p_report)
1689 {
1690 if (command == DOBUF_UNLOAD)
1691 smsg(NGETTEXT("%d buffer unloaded",
1692 "%d buffers unloaded", deleted), deleted);
1693 else if (command == DOBUF_DEL)
1694 smsg(NGETTEXT("%d buffer deleted",
1695 "%d buffers deleted", deleted), deleted);
1696 else
1697 smsg(NGETTEXT("%d buffer wiped out",
1698 "%d buffers wiped out", deleted), deleted);
1699 }
1700 }
1701
1702
1703 return errormsg;
1704}
1705
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706/*
1707 * Set current buffer to "buf". Executes autocommands and closes current
1708 * buffer. "action" tells how to close the current buffer:
1709 * DOBUF_GOTO free or hide it
1710 * DOBUF_SPLIT nothing
1711 * DOBUF_UNLOAD unload it
1712 * DOBUF_DEL delete it
1713 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001714 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 */
1716 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001717set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718{
1719 buf_T *prevbuf;
1720 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001721 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001722#ifdef FEAT_SYN_HL
1723 long old_tw = curbuf->b_p_tw;
1724#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001725 bufref_T newbufref;
1726 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001727 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728
1729 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001730 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001731 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1732 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
Bram Moolenaarc667da52019-11-30 20:52:27 +01001734 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736
Bram Moolenaarc667da52019-11-30 20:52:27 +01001737 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001739 set_bufref(&prevbufref, prevbuf);
1740 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001742 // Autocommands may delete the current buffer and/or the buffer we want to
1743 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001744 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001745 || (bufref_valid(&prevbufref)
1746 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001747#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001748 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001750 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001752#ifdef FEAT_SYN_HL
1753 if (prevbuf == curwin->w_buffer)
1754 reset_synblock(curwin);
1755#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001757 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001758#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001759 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001761 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001763 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001764 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001765
Bram Moolenaare615db02022-01-20 21:00:54 +00001766 // Do not sync when in Insert mode and the buffer is open in
1767 // another window, might be a timer doing something in another
1768 // window.
1769 if (prevbuf == curbuf
1770 && ((State & INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001771 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1773 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001774 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001775 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1776 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001777 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001778 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001779 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001782 // An autocommand may have deleted "buf", already entered it (e.g., when
1783 // it did ":bunload") or aborted the script processing.
1784 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001785 valid = buf_valid(buf);
1786 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001787#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001788 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001790 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001791 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001792 // If the buffer is not valid but curwin->w_buffer is NULL we must
1793 // enter some buffer. Using the last one is hopefully OK.
1794 if (!valid)
1795 enter_buffer(lastbuf);
1796 else
1797 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001798#ifdef FEAT_SYN_HL
1799 if (old_tw != curbuf->b_p_tw)
1800 check_colorcolumn(curwin);
1801#endif
1802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803}
1804
1805/*
1806 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001807 * Old curbuf must have been abandoned already! This also means "curbuf" may
1808 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001810 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001811enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001813 // Get the buffer in the current window.
1814 curwin->w_buffer = buf;
1815 curbuf = buf;
1816 ++curbuf->b_nwindows;
1817
1818 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1820 if (!buf->b_help)
1821 get_winopts(buf);
1822#ifdef FEAT_FOLDING
1823 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001824 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001826 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827#endif
1828
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001830 if (curwin->w_p_diff)
1831 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832#endif
1833
Bram Moolenaara971b822011-09-14 14:43:25 +02001834#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001835 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001836#endif
1837
Bram Moolenaarc667da52019-11-30 20:52:27 +01001838 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 curwin->w_cursor.lnum = 1;
1840 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001843 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844
Bram Moolenaarc667da52019-11-30 20:52:27 +01001845 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001846 curwin->w_valid = 0;
1847
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001848 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1849 curbuf->b_last_cursor.col, TRUE);
1850
Bram Moolenaarc667da52019-11-30 20:52:27 +01001851 // Make sure the buffer is loaded.
1852 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001853 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001854 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001855 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001856 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001857 if (*curbuf->b_p_ft == NUL)
1858 did_filetype = FALSE;
1859
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001860 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001861 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 else
1863 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001864 if (!msg_silent && !shortmess(SHM_FILEINFO))
1865 need_fileinfo = TRUE; // display file info after redraw
1866
1867 // check if file changed
1868 (void)buf_check_timestamp(curbuf, FALSE);
1869
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001871#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1875 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 }
1877
Bram Moolenaarc667da52019-11-30 20:52:27 +01001878 // If autocommands did not change the cursor position, restore cursor lnum
1879 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 if (curwin->w_cursor.lnum == 1 && inindent(0))
1881 buflist_getfpos();
1882
Bram Moolenaarc667da52019-11-30 20:52:27 +01001883 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001885 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001886 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001887 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
Bram Moolenaar009b2592004-10-24 19:18:58 +00001889#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001890 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001891 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001892#endif
1893
Bram Moolenaarc667da52019-11-30 20:52:27 +01001894 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001895 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896
1897#ifdef FEAT_KEYMAP
1898 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001899 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001901#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001902 // May need to set the spell language. Can only do this after the buffer
1903 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001904 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1905 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001906#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001907#ifdef FEAT_VIMINFO
1908 curbuf->b_last_used = vim_time();
1909#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001910
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 redraw_later(NOT_VALID);
1912}
1913
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001914#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1915/*
1916 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001917 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001918 */
1919 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001920do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001921{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001922 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001923 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001924 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001925 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001926 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001927 last_chdir_reason = "autochdir";
1928 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001929}
1930#endif
1931
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001932 void
1933no_write_message(void)
1934{
1935#ifdef FEAT_TERMINAL
1936 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001937 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001938 else
1939#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001940 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001941}
1942
1943 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001944no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001945{
1946#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001947 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001948 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001949 else
1950#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001951 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001952}
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954/*
1955 * functions for dealing with the buffer list
1956 */
1957
1958/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001959 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1960 * only one window. That means it can be re-used.
1961 */
1962 int
1963curbuf_reusable(void)
1964{
1965 return (curbuf != NULL
1966 && curbuf->b_ffname == NULL
1967 && curbuf->b_nwindows <= 1
1968 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001969#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001970 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001971#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001972 && !curbufIsChanged());
1973}
1974
1975/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 * Add a file name to the buffer list. Return a pointer to the buffer.
1977 * If the same file name already exists return a pointer to that buffer.
1978 * If it does not exist, or if fname == NULL, a new entry is created.
1979 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1980 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1981 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001982 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001983 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1984 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001985 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 * This is the ONLY way to create a new buffer.
1987 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001989buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001990 char_u *ffname_arg, // full path of fname or relative
1991 char_u *sfname_arg, // short fname or NULL
1992 linenr_T lnum, // preferred cursor line
1993 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001995 char_u *ffname = ffname_arg;
1996 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 buf_T *buf;
1998#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001999 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000#endif
2001
Bram Moolenaar480778b2016-07-14 22:09:39 +02002002 if (top_file_num == 1)
2003 hash_init(&buf_hashtab);
2004
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002005 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002008 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 */
2010#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002011 // On Unix we can use inode numbers when the file exists. Works better
2012 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2014 st.st_dev = (dev_T)-1;
2015#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002016 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017#ifdef UNIX
2018 buflist_findname_stat(ffname, &st)
2019#else
2020 buflist_findname(ffname)
2021#endif
2022 ) != NULL)
2023 {
2024 vim_free(ffname);
2025 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002026 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2027 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002028
2029 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002030 // copy the options now, if 'cpo' doesn't have 's' and not done
2031 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002032 buf_copy_options(buf, 0);
2033
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2035 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002036 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002037
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002039 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002041 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002042 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002043 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002044 return NULL;
2045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 }
2047 return buf;
2048 }
2049
2050 /*
2051 * If the current buffer has no name and no contents, use the current
2052 * buffer. Otherwise: Need to allocate a new buffer structure.
2053 *
2054 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002055 * (A spell file buffer is allocated in spell.c, but that's not a normal
2056 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 */
2058 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002059 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 {
2061 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002062 // It's like this buffer is deleted. Watch out for autocommands that
2063 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 if (curbuf->b_p_bl)
2065 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2066 if (buf == curbuf)
2067 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002068#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002069 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002070 {
2071 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002077 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 clear_string_option(&buf->b_p_bh);
2079 clear_string_option(&buf->b_p_bt);
2080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 }
2082 if (buf != curbuf || curbuf == NULL)
2083 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002084 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 if (buf == NULL)
2086 {
2087 vim_free(ffname);
2088 return NULL;
2089 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002090#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002091 // init b: variables
Bram Moolenaar429fa852013-04-15 12:27:36 +02002092 buf->b_vars = dict_alloc();
2093 if (buf->b_vars == NULL)
2094 {
2095 vim_free(ffname);
2096 vim_free(buf);
2097 return NULL;
2098 }
2099 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2100#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002101 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 }
2103
2104 if (ffname != NULL)
2105 {
2106 buf->b_ffname = ffname;
2107 buf->b_sfname = vim_strsave(sfname);
2108 }
2109
2110 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002111 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112
2113 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2114 || buf->b_wininfo == NULL)
2115 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002116 if (buf->b_sfname != buf->b_ffname)
2117 VIM_CLEAR(buf->b_sfname);
2118 else
2119 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002120 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 if (buf != curbuf)
2122 free_buffer(buf);
2123 return NULL;
2124 }
2125
2126 if (buf == curbuf)
2127 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002128 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002129 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002130 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002132#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002133 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 return NULL;
2135#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002136 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002137
Bram Moolenaarc667da52019-11-30 20:52:27 +01002138 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002139 buf->b_p_initialized = FALSE;
2140 buf_copy_options(buf, BCO_ENTER);
2141
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002143 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 curbuf->b_kmap_state |= KEYMAP_INIT;
2145#endif
2146 }
2147 else
2148 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002149 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002151 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 {
2153 buf->b_prev = NULL;
2154 firstbuf = buf;
2155 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002156 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 {
2158 lastbuf->b_next = buf;
2159 buf->b_prev = lastbuf;
2160 }
2161 lastbuf = buf;
2162
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002163 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2164 {
2165 // Recycle a previously used buffer number. Used for buffers which
2166 // are normally hidden, e.g. in a popup window. Avoids that the
2167 // buffer number grows rapidly.
2168 --buf_reuse.ga_len;
2169 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002170
2171 // Move buffer to the right place in the buffer list.
2172 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2173 {
2174 buf_T *prev = buf->b_prev;
2175
2176 prev->b_next = buf->b_next;
2177 if (prev->b_next != NULL)
2178 prev->b_next->b_prev = prev;
2179 buf->b_next = prev;
2180 buf->b_prev = prev->b_prev;
2181 if (buf->b_prev != NULL)
2182 buf->b_prev->b_next = buf;
2183 prev->b_prev = buf;
2184 if (lastbuf == buf)
2185 lastbuf = prev;
2186 if (firstbuf == prev)
2187 firstbuf = buf;
2188 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002189 }
2190 else
2191 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002192 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002194 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002195 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 {
2197 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002198 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 }
2200 top_file_num = 1;
2201 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002202 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002204 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 buf_copy_options(buf, BCO_ALWAYS);
2206 }
2207
2208 buf->b_wininfo->wi_fpos.lnum = lnum;
2209 buf->b_wininfo->wi_win = curwin;
2210
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002211#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002212 hash_init(&buf->b_s.b_keywtab);
2213 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214#endif
2215
2216 buf->b_fname = buf->b_sfname;
2217#ifdef UNIX
2218 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002219 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 else
2221 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002222 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 buf->b_dev = st.st_dev;
2224 buf->b_ino = st.st_ino;
2225 }
2226#endif
2227 buf->b_u_synced = TRUE;
2228 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002229 if (flags & BLN_DUMMY)
2230 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002232 clrallmarks(buf); // clear marks
2233 fmarks_check_names(buf); // check file marks for this file
2234 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 if (!(flags & BLN_DUMMY))
2236 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002237 bufref_T bufref;
2238
Bram Moolenaarc667da52019-11-30 20:52:27 +01002239 // Tricky: these autocommands may change the buffer list. They could
2240 // also split the window with re-using the one empty buffer. This may
2241 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002242 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002243 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002244 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002245 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002247 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002248 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002249 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002250 return NULL;
2251 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002252#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002253 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
2258 return buf;
2259}
2260
2261/*
2262 * Free the memory for the options of a buffer.
2263 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2264 * 'fileencoding'.
2265 */
2266 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002267free_buf_options(
2268 buf_T *buf,
2269 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270{
2271 if (free_p_ff)
2272 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 clear_string_option(&buf->b_p_bh);
2276 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 }
2278#ifdef FEAT_FIND_ID
2279 clear_string_option(&buf->b_p_def);
2280 clear_string_option(&buf->b_p_inc);
2281# ifdef FEAT_EVAL
2282 clear_string_option(&buf->b_p_inex);
2283# endif
2284#endif
2285#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2286 clear_string_option(&buf->b_p_inde);
2287 clear_string_option(&buf->b_p_indk);
2288#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002289#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2290 clear_string_option(&buf->b_p_bexpr);
2291#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002292#if defined(FEAT_CRYPT)
2293 clear_string_option(&buf->b_p_cm);
2294#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002295 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002296#if defined(FEAT_EVAL)
2297 clear_string_option(&buf->b_p_fex);
2298#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002300# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002301 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2302 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2303 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002304# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 clear_string_option(&buf->b_p_key);
2306#endif
2307 clear_string_option(&buf->b_p_kp);
2308 clear_string_option(&buf->b_p_mps);
2309 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002310 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002312#ifdef FEAT_VARTABS
2313 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002314 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002315 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002316 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002317 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002318 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320#ifdef FEAT_KEYMAP
2321 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002322 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 ga_clear(&buf->b_kmap_ga);
2324#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#ifdef FEAT_FOLDING
2327 clear_string_option(&buf->b_p_cms);
2328#endif
2329 clear_string_option(&buf->b_p_nf);
2330#ifdef FEAT_SYN_HL
2331 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002332 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002333#endif
2334#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002335 clear_string_option(&buf->b_s.b_p_spc);
2336 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002337 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002338 buf->b_s.b_cap_prog = NULL;
2339 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002340 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341#endif
2342#ifdef FEAT_SEARCHPATH
2343 clear_string_option(&buf->b_p_sua);
2344#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346#ifdef FEAT_CINDENT
2347 clear_string_option(&buf->b_p_cink);
2348 clear_string_option(&buf->b_p_cino);
2349#endif
2350#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2351 clear_string_option(&buf->b_p_cinw);
2352#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002354#ifdef FEAT_COMPL_FUNC
2355 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002356 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002357 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002358 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002359 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002360 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362#ifdef FEAT_QUICKFIX
2363 clear_string_option(&buf->b_p_gp);
2364 clear_string_option(&buf->b_p_mp);
2365 clear_string_option(&buf->b_p_efm);
2366#endif
2367 clear_string_option(&buf->b_p_ep);
2368 clear_string_option(&buf->b_p_path);
2369 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002370 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002371#ifdef FEAT_EVAL
2372 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002373 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 clear_string_option(&buf->b_p_dict);
2376 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002377#ifdef FEAT_TEXTOBJ
2378 clear_string_option(&buf->b_p_qe);
2379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002381 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002382#ifdef FEAT_LISP
2383 clear_string_option(&buf->b_p_lw);
2384#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002385 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002386 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387}
2388
2389/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002390 * Get alternate file "n".
2391 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2392 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 * if (options & GETF_SETMARK) call setpcmark()
2394 * if (options & GETF_ALT) we are jumping to an alternate file.
2395 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2396 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002397 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 */
2399 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002400buflist_getfile(
2401 int n,
2402 linenr_T lnum,
2403 int options,
2404 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
2406 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 pos_T *fpos;
2409 colnr_T col;
2410
2411 buf = buflist_findnr(n);
2412 if (buf == NULL)
2413 {
2414 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002415 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002417 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 return FAIL;
2419 }
2420
Bram Moolenaarc667da52019-11-30 20:52:27 +01002421 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 if (buf == curbuf)
2423 return OK;
2424
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002425 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002426 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002427 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002429 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002430 if (curbuf_locked())
2431 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432
Bram Moolenaarc667da52019-11-30 20:52:27 +01002433 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 if (lnum == 0)
2435 {
2436 fpos = buflist_findfpos(buf);
2437 lnum = fpos->lnum;
2438 col = fpos->col;
2439 }
2440 else
2441 col = 0;
2442
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 if (options & GETF_SWITCH)
2444 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002445 // If 'switchbuf' contains "useopen": jump to first window containing
2446 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002447 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002449
Bram Moolenaarc667da52019-11-30 20:52:27 +01002450 // If 'switchbuf' contains "usetab": jump to first window in any tab
2451 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002452 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002453 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002454
Bram Moolenaarc667da52019-11-30 20:52:27 +01002455 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2456 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002457 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002458 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002460 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002461 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002462 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2463 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002465 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 }
2467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468
2469 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002470 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2471 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 {
2473 --RedrawingDisabled;
2474
Bram Moolenaarc667da52019-11-30 20:52:27 +01002475 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 if (!p_sol && col != 0)
2477 {
2478 curwin->w_cursor.col = col;
2479 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 curwin->w_set_curswant = TRUE;
2482 }
2483 return OK;
2484 }
2485 --RedrawingDisabled;
2486 return FAIL;
2487}
2488
2489/*
2490 * go to the last know line number for the current buffer
2491 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002492 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002493buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494{
2495 pos_T *fpos;
2496
2497 fpos = buflist_findfpos(curbuf);
2498
2499 curwin->w_cursor.lnum = fpos->lnum;
2500 check_cursor_lnum();
2501
2502 if (p_sol)
2503 curwin->w_cursor.col = 0;
2504 else
2505 {
2506 curwin->w_cursor.col = fpos->col;
2507 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 curwin->w_set_curswant = TRUE;
2510 }
2511}
2512
Bram Moolenaar81695252004-12-29 20:58:21 +00002513#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2514/*
2515 * Find file in buffer list by name (it has to be for the current window).
2516 * Returns NULL if not found.
2517 */
2518 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002519buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002520{
2521 char_u *ffname;
2522 buf_T *buf = NULL;
2523
Bram Moolenaarc667da52019-11-30 20:52:27 +01002524 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002525 ffname = FullName_save(fname,
2526#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002527 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002528#else
2529 FALSE
2530#endif
2531 );
2532 if (ffname != NULL)
2533 {
2534 buf = buflist_findname(ffname);
2535 vim_free(ffname);
2536 }
2537 return buf;
2538}
2539#endif
2540
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541/*
2542 * Find file in buffer list by name (it has to be for the current window).
2543 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002544 * Skips dummy buffers.
2545 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 */
2547 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002548buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549{
2550#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002551 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
2553 if (mch_stat((char *)ffname, &st) < 0)
2554 st.st_dev = (dev_T)-1;
2555 return buflist_findname_stat(ffname, &st);
2556}
2557
2558/*
2559 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2560 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002561 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 */
2563 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002564buflist_findname_stat(
2565 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002566 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567{
2568#endif
2569 buf_T *buf;
2570
Bram Moolenaarc667da52019-11-30 20:52:27 +01002571 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002572 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002573 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574#ifdef UNIX
2575 , stp
2576#endif
2577 ))
2578 return buf;
2579 return NULL;
2580}
2581
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582/*
2583 * Find file in buffer list by a regexp pattern.
2584 * Return fnum of the found buffer.
2585 * Return < 0 for error.
2586 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002588buflist_findpat(
2589 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002590 char_u *pattern_end, // pointer to first char after pattern
2591 int unlisted, // find unlisted buffers
2592 int diffmode UNUSED, // find diff-mode buffers only
2593 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594{
2595 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 int match = -1;
2597 int find_listed;
2598 char_u *pat;
2599 char_u *patend;
2600 int attempt;
2601 char_u *p;
2602 int toggledollar;
2603
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002604 // "%" is current file, "%%" or "#" is alternate file
2605 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2606 || (in_vim9script() && pattern_end == pattern + 2
2607 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002609 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002611 else
2612 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613#ifdef FEAT_DIFF
2614 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2615 match = -1;
2616#endif
2617 }
2618
2619 /*
2620 * Try four ways of matching a listed buffer:
2621 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002622 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 * attempt == 2: with '$' at end (only match at end)
2624 * attempt == 3: with '^' at start and '$' at end (only full match)
2625 * Repeat this for finding an unlisted buffer if there was no matching
2626 * listed buffer.
2627 */
2628 else
2629 {
2630 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2631 if (pat == NULL)
2632 return -1;
2633 patend = pat + STRLEN(pat) - 1;
2634 toggledollar = (patend > pat && *patend == '$');
2635
Bram Moolenaarc667da52019-11-30 20:52:27 +01002636 // First try finding a listed buffer. If not found and "unlisted"
2637 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 find_listed = TRUE;
2639 for (;;)
2640 {
2641 for (attempt = 0; attempt <= 3; ++attempt)
2642 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002643 regmatch_T regmatch;
2644
Bram Moolenaarc667da52019-11-30 20:52:27 +01002645 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002647 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002649 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002651 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002652 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 {
2654 vim_free(pat);
2655 return -1;
2656 }
2657
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002658 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 if (buf->b_p_bl == find_listed
2660#ifdef FEAT_DIFF
2661 && (!diffmode || diff_mode_buf(buf))
2662#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002663 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002665 if (curtab_only)
2666 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002667 // Ignore the match if the buffer is not open in
2668 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002669 win_T *wp;
2670
Bram Moolenaar29323592016-07-24 22:04:11 +02002671 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002672 if (wp->w_buffer == buf)
2673 break;
2674 if (wp == NULL)
2675 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002676 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002677 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 {
2679 match = -2;
2680 break;
2681 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002682 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 }
2684
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002685 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002686 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 break;
2688 }
2689
Bram Moolenaarc667da52019-11-30 20:52:27 +01002690 // Only search for unlisted buffers if there was no match with
2691 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 if (!unlisted || !find_listed || match != -1)
2693 break;
2694 find_listed = FALSE;
2695 }
2696
2697 vim_free(pat);
2698 }
2699
2700 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002701 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002703 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 return match;
2705}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706
Bram Moolenaar52410572019-10-27 05:12:45 +01002707#ifdef FEAT_VIMINFO
2708typedef struct {
2709 buf_T *buf;
2710 char_u *match;
2711} bufmatch_T;
2712#endif
2713
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714/*
2715 * Find all buffer names that match.
2716 * For command line expansion of ":buf" and ":sbuf".
2717 * Return OK if matches found, FAIL otherwise.
2718 */
2719 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002720ExpandBufnames(
2721 char_u *pat,
2722 int *num_file,
2723 char_u ***file,
2724 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725{
2726 int count = 0;
2727 buf_T *buf;
2728 int round;
2729 char_u *p;
2730 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002731 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002732#ifdef FEAT_VIMINFO
2733 bufmatch_T *matches = NULL;
2734#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002735 int fuzzy;
2736 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737
Bram Moolenaarc667da52019-11-30 20:52:27 +01002738 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 *file = NULL;
2740
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002741#ifdef FEAT_DIFF
2742 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2743 return FAIL;
2744#endif
2745
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002746 fuzzy = cmdline_fuzzy_complete(pat);
2747
2748 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2749 // expression matching)
2750 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002752 if (*pat == '^')
2753 {
2754 patc = alloc(STRLEN(pat) + 11);
2755 if (patc == NULL)
2756 return FAIL;
2757 STRCPY(patc, "\\(^\\|[\\/]\\)");
2758 STRCPY(patc + 11, pat + 1);
2759 }
2760 else
2761 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002762 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002763
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002764 // attempt == 0: try match with '\<', match at start of word
2765 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002766 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002767 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002768 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002769 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002770
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002771 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002772 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002773 if (attempt > 0 && patc == pat)
2774 break; // there was no anchor, no need to try again
2775 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2776 if (regmatch.regprog == NULL)
2777 {
2778 if (patc != pat)
2779 vim_free(patc);
2780 return FAIL;
2781 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002784 // round == 1: Count the matches.
2785 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 for (round = 1; round <= 2; ++round)
2787 {
2788 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002789 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002791 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002793#ifdef FEAT_DIFF
2794 if (options & BUF_DIFF_FILTER)
2795 // Skip buffers not suitable for
2796 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002797 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002798 continue;
2799#endif
2800
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002801 if (!fuzzy)
2802 p = buflist_match(&regmatch, buf, p_wic);
2803 else
2804 {
2805 p = NULL;
2806 // first try matching with the short file name
2807 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2808 p = buf->b_sfname;
2809 if (p == NULL)
2810 {
2811 // next try matching with the full path file name
2812 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2813 p = buf->b_ffname;
2814 }
2815 }
2816
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002817 if (p == NULL)
2818 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002819
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002820 if (round == 1)
2821 {
2822 ++count;
2823 continue;
2824 }
2825
2826 if (options & WILD_HOME_REPLACE)
2827 p = home_replace_save(buf, p);
2828 else
2829 p = vim_strsave(p);
2830
2831 if (!fuzzy)
2832 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002833#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002834 if (matches != NULL)
2835 {
2836 matches[count].buf = buf;
2837 matches[count].match = p;
2838 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002840 else
2841#endif
2842 (*file)[count++] = p;
2843 }
2844 else
2845 {
2846 fuzmatch[count].idx = count;
2847 fuzmatch[count].str = p;
2848 fuzmatch[count].score = score;
2849 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 }
2851 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002852 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 break;
2854 if (round == 1)
2855 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002856 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002858 *file = ALLOC_MULT(char_u *, count);
2859 if (*file == NULL)
2860 {
2861 vim_regfree(regmatch.regprog);
2862 if (patc != pat)
2863 vim_free(patc);
2864 return FAIL;
2865 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002866#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002867 if (options & WILD_BUFLASTUSED)
2868 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002869#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002870 }
2871 else
2872 {
2873 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2874 if (fuzmatch == NULL)
2875 {
2876 *num_file = 0;
2877 *file = NULL;
2878 return FAIL;
2879 }
2880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 }
2882 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002883
2884 if (!fuzzy)
2885 {
2886 vim_regfree(regmatch.regprog);
2887 if (count) // match(es) found, break here
2888 break;
2889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 }
2891
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002892 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002893 vim_free(patc);
2894
Bram Moolenaar52410572019-10-27 05:12:45 +01002895#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002896 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002897 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002898 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002899 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002900 int i;
2901 if (count > 1)
2902 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2903 // if the current buffer is first in the list, place it at the end
2904 if (matches[0].buf == curbuf)
2905 {
2906 for (i = 1; i < count; i++)
2907 (*file)[i-1] = matches[i].match;
2908 (*file)[count-1] = matches[0].match;
2909 }
2910 else
2911 {
2912 for (i = 0; i < count; i++)
2913 (*file)[i] = matches[i].match;
2914 }
2915 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002916 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002917 }
2918 else
2919 {
2920 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2921 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002922 }
2923#endif
2924
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 *num_file = count;
2926 return (count == 0 ? FAIL : OK);
2927}
2928
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929/*
2930 * Check for a match on the file name for buffer "buf" with regprog "prog".
2931 */
2932 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002933buflist_match(
2934 regmatch_T *rmp,
2935 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002936 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 char_u *match;
2939
Bram Moolenaarc667da52019-11-30 20:52:27 +01002940 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002941 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002943 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944
2945 return match;
2946}
2947
2948/*
2949 * Try matching the regexp in "prog" with file name "name".
2950 * Return "name" when there is a match, NULL when not.
2951 */
2952 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002953fname_match(
2954 regmatch_T *rmp,
2955 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002956 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957{
2958 char_u *match = NULL;
2959 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960
2961 if (name != NULL)
2962 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002963 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002964 rmp->rm_ic = p_fic || ignore_case;
2965 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 match = name;
2967 else
2968 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002969 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002971 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 match = name;
2973 vim_free(p);
2974 }
2975 }
2976
2977 return match;
2978}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979
2980/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002981 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 */
2983 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002984buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002986 char_u key[VIM_SIZEOF_INT * 2 + 1];
2987 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988
2989 if (nr == 0)
2990 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002991 sprintf((char *)key, "%x", nr);
2992 hi = hash_find(&buf_hashtab, key);
2993
2994 if (!HASHITEM_EMPTY(hi))
2995 return (buf_T *)(hi->hi_key
2996 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 return NULL;
2998}
2999
3000/*
3001 * Get name of file 'n' in the buffer list.
3002 * When the file has no name an empty string is returned.
3003 * home_replace() is used to shorten the file name (used for marks).
3004 * Returns a pointer to allocated memory, of NULL when failed.
3005 */
3006 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003007buflist_nr2name(
3008 int n,
3009 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003010 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011{
3012 buf_T *buf;
3013
3014 buf = buflist_findnr(n);
3015 if (buf == NULL)
3016 return NULL;
3017 return home_replace_save(helptail ? buf : NULL,
3018 fullname ? buf->b_ffname : buf->b_fname);
3019}
3020
3021/*
3022 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3023 * When "copy_options" is TRUE save the local window option values.
3024 * When "lnum" is 0 only do the options.
3025 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003026 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003027buflist_setfpos(
3028 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003029 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003030 linenr_T lnum,
3031 colnr_T col,
3032 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 wininfo_T *wip;
3035
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003036 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 if (wip->wi_win == win)
3038 break;
3039 if (wip == NULL)
3040 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003041 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003042 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 if (wip == NULL)
3044 return;
3045 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003046 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 lnum = 1;
3048 }
3049 else
3050 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003051 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 if (wip->wi_prev)
3053 wip->wi_prev->wi_next = wip->wi_next;
3054 else
3055 buf->b_wininfo = wip->wi_next;
3056 if (wip->wi_next)
3057 wip->wi_next->wi_prev = wip->wi_prev;
3058 if (copy_options && wip->wi_optset)
3059 {
3060 clear_winopt(&wip->wi_opt);
3061#ifdef FEAT_FOLDING
3062 deleteFoldRecurse(&wip->wi_folds);
3063#endif
3064 }
3065 }
3066 if (lnum != 0)
3067 {
3068 wip->wi_fpos.lnum = lnum;
3069 wip->wi_fpos.col = col;
3070 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003071 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003073 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3075#ifdef FEAT_FOLDING
3076 wip->wi_fold_manual = win->w_fold_manual;
3077 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3078#endif
3079 wip->wi_optset = TRUE;
3080 }
3081
Bram Moolenaarc667da52019-11-30 20:52:27 +01003082 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 wip->wi_next = buf->b_wininfo;
3084 buf->b_wininfo = wip;
3085 wip->wi_prev = NULL;
3086 if (wip->wi_next)
3087 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088}
3089
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003090#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003091/*
3092 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3093 * page. That's because a diff is local to a tab page.
3094 */
3095 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003096wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003097{
3098 win_T *wp;
3099
3100 if (wip->wi_opt.wo_diff)
3101 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003102 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003103 // return FALSE when it's a window in the current tab page, thus
3104 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003105 if (wip->wi_win == wp)
3106 return FALSE;
3107 return TRUE;
3108 }
3109 return FALSE;
3110}
3111#endif
3112
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113/*
3114 * Find info for the current window in buffer "buf".
3115 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003116 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003117 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3118 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 * Returns NULL when there isn't any info.
3120 */
3121 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003122find_wininfo(
3123 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003124 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003125 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126{
3127 wininfo_T *wip;
3128
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003129 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003130 if (wip->wi_win == curwin
3131#ifdef FEAT_DIFF
3132 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3133#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003134
3135 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003137
Bram Moolenaarc667da52019-11-30 20:52:27 +01003138 // If no wininfo for curwin, use the first in the list (that doesn't have
3139 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003140 // If "need_options" is TRUE skip entries that don't have options set,
3141 // unless the window is editing "buf", so we can copy from the window
3142 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003143 if (wip == NULL)
3144 {
3145#ifdef FEAT_DIFF
3146 if (skip_diff_buffer)
3147 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003148 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003149 if (!wininfo_other_tab_diff(wip)
3150 && (!need_options || wip->wi_optset
3151 || (wip->wi_win != NULL
3152 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003153 break;
3154 }
3155 else
3156#endif
3157 wip = buf->b_wininfo;
3158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 return wip;
3160}
3161
3162/*
3163 * Reset the local window options to the values last used in this window.
3164 * If the buffer wasn't used in this window before, use the values from
3165 * the most recently used window. If the values were never set, use the
3166 * global values for the window.
3167 */
3168 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003169get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170{
3171 wininfo_T *wip;
3172
3173 clear_winopt(&curwin->w_onebuf_opt);
3174#ifdef FEAT_FOLDING
3175 clearFolding(curwin);
3176#endif
3177
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003178 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003179 if (wip != NULL && wip->wi_win != NULL
3180 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003182 // The buffer is currently displayed in the window: use the actual
3183 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003184 win_T *wp = wip->wi_win;
3185
3186 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3187#ifdef FEAT_FOLDING
3188 curwin->w_fold_manual = wp->w_fold_manual;
3189 curwin->w_foldinvalid = TRUE;
3190 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3191#endif
3192 }
3193 else if (wip != NULL && wip->wi_optset)
3194 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003195 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3197#ifdef FEAT_FOLDING
3198 curwin->w_fold_manual = wip->wi_fold_manual;
3199 curwin->w_foldinvalid = TRUE;
3200 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3201#endif
3202 }
3203 else
3204 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3205
3206#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003207 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 if (p_fdls >= 0)
3209 curwin->w_p_fdl = p_fdls;
3210#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003211 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212}
3213
3214/*
3215 * Find the position (lnum and col) for the buffer 'buf' for the current
3216 * window.
3217 * Returns a pointer to no_position if no position is found.
3218 */
3219 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003220buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221{
3222 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003223 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003225 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 if (wip != NULL)
3227 return &(wip->wi_fpos);
3228 else
3229 return &no_position;
3230}
3231
3232/*
3233 * Find the lnum for the buffer 'buf' for the current window.
3234 */
3235 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003236buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237{
3238 return buflist_findfpos(buf)->lnum;
3239}
3240
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003242 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003245buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246{
Bram Moolenaar52410572019-10-27 05:12:45 +01003247 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 int len;
3249 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003250 int ro_char;
3251 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003252#ifdef FEAT_TERMINAL
3253 int job_running;
3254 int job_none_open;
3255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256
Bram Moolenaar52410572019-10-27 05:12:45 +01003257#ifdef FEAT_VIMINFO
3258 garray_T buflist;
3259 buf_T **buflist_data = NULL, **p;
3260
3261 if (vim_strchr(eap->arg, 't'))
3262 {
3263 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003264 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003265 {
3266 if (ga_grow(&buflist, 1) == OK)
3267 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3268 }
3269
3270 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3271 sizeof(buf_T *), buf_compare);
3272
Bram Moolenaar3b991522019-11-06 23:26:20 +01003273 buflist_data = (buf_T **)buflist.ga_data;
3274 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003275 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003276 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003277
Bram Moolenaar3b991522019-11-06 23:26:20 +01003278 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003279 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3280 : buf->b_next)
3281#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003285#ifdef FEAT_TERMINAL
3286 job_running = term_job_running(buf->b_term);
3287 job_none_open = job_running && term_none_open(buf->b_term);
3288#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003289 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003290 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3291 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3292 || (vim_strchr(eap->arg, '+')
3293 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3294 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003295 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003296 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003297 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3298#ifdef FEAT_TERMINAL
3299 || (vim_strchr(eap->arg, 'R')
3300 && (!job_running || (job_running && job_none_open)))
3301 || (vim_strchr(eap->arg, '?')
3302 && (!job_running || (job_running && !job_none_open)))
3303 || (vim_strchr(eap->arg, 'F')
3304 && (job_running || buf->b_term == NULL))
3305#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003306 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3307 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3308 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3309 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3310 || (vim_strchr(eap->arg, '#')
3311 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003314 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 else
3316 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003317 if (message_filtered(NameBuff))
3318 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003320 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3321 : (bufIsChanged(buf) ? '+' : ' ');
3322#ifdef FEAT_TERMINAL
3323 if (term_job_running(buf->b_term))
3324 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003325 if (term_none_open(buf->b_term))
3326 ro_char = '?';
3327 else
3328 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003329 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3330 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003331 }
3332 else if (buf->b_term != NULL)
3333 ro_char = 'F';
3334 else
3335#endif
3336 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3337
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003338 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003339 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 buf->b_fnum,
3341 buf->b_p_bl ? ' ' : 'u',
3342 buf == curbuf ? '%' :
3343 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3344 buf->b_ml.ml_mfp == NULL ? ' ' :
3345 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003346 ro_char,
3347 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003348 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003349 if (len > IOSIZE - 20)
3350 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351
Bram Moolenaarc667da52019-11-30 20:52:27 +01003352 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 i = 40 - vim_strsize(IObuff);
3354 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003356 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003357#ifdef FEAT_VIMINFO
3358 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3359 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3360 else
3361#endif
3362 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3363 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003364 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003366 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 ui_breakcheck();
3368 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003369
3370#ifdef FEAT_VIMINFO
3371 if (buflist_data)
3372 ga_clear(&buflist);
3373#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375
3376/*
3377 * Get file name and line number for file 'fnum'.
3378 * Used by DoOneCmd() for translating '%' and '#'.
3379 * Used by insert_reg() and cmdline_paste() for '#' register.
3380 * Return FAIL if not found, OK for success.
3381 */
3382 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003383buflist_name_nr(
3384 int fnum,
3385 char_u **fname,
3386 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387{
3388 buf_T *buf;
3389
3390 buf = buflist_findnr(fnum);
3391 if (buf == NULL || buf->b_fname == NULL)
3392 return FAIL;
3393
3394 *fname = buf->b_fname;
3395 *lnum = buflist_findlnum(buf);
3396
3397 return OK;
3398}
3399
3400/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003401 * Set the file name for "buf"' to "ffname_arg", short file name to
3402 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 * The file name with the full path is also remembered, for when :cd is used.
3404 * Returns FAIL for failure (file name already in use by other buffer)
3405 * OK otherwise.
3406 */
3407 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003408setfname(
3409 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003410 char_u *ffname_arg,
3411 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003412 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003414 char_u *ffname = ffname_arg;
3415 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003416 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003418 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419#endif
3420
3421 if (ffname == NULL || *ffname == NUL)
3422 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003423 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003424 if (buf->b_sfname != buf->b_ffname)
3425 VIM_CLEAR(buf->b_sfname);
3426 else
3427 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003428 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429#ifdef UNIX
3430 st.st_dev = (dev_T)-1;
3431#endif
3432 }
3433 else
3434 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003435 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3436 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 return FAIL;
3438
3439 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003440 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 * - if the buffer is loaded, fail
3442 * - if the buffer is not loaded, delete it from the list
3443 */
3444#ifdef UNIX
3445 if (mch_stat((char *)ffname, &st) < 0)
3446 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003447#endif
3448 if (!(buf->b_flags & BF_DUMMY))
3449#ifdef UNIX
3450 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003452 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453#endif
3454 if (obuf != NULL && obuf != buf)
3455 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003456 win_T *win;
3457 tabpage_T *tab;
3458 int in_use = FALSE;
3459
3460 // during startup a window may use a buffer that is not loaded yet
3461 FOR_ALL_TAB_WINDOWS(tab, win)
3462 if (win->w_buffer == obuf)
3463 in_use = TRUE;
3464
3465 // it's loaded or used in a window, fail
3466 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 {
3468 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003469 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 vim_free(ffname);
3471 return FAIL;
3472 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003473 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003474 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 }
3476 sfname = vim_strsave(sfname);
3477 if (ffname == NULL || sfname == NULL)
3478 {
3479 vim_free(sfname);
3480 vim_free(ffname);
3481 return FAIL;
3482 }
3483#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003484 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003486 if (buf->b_sfname != buf->b_ffname)
3487 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 buf->b_ffname = ffname;
3490 buf->b_sfname = sfname;
3491 }
3492 buf->b_fname = buf->b_sfname;
3493#ifdef UNIX
3494 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003495 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 else
3497 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003498 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 buf->b_dev = st.st_dev;
3500 buf->b_ino = st.st_ino;
3501 }
3502#endif
3503
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505
3506 buf_name_changed(buf);
3507 return OK;
3508}
3509
3510/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003511 * Crude way of changing the name of a buffer. Use with care!
3512 * The name should be relative to the current directory.
3513 */
3514 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003515buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003516{
3517 buf_T *buf;
3518
3519 buf = buflist_findnr(fnum);
3520 if (buf != NULL)
3521 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003522 if (buf->b_sfname != buf->b_ffname)
3523 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003524 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003525 buf->b_ffname = vim_strsave(name);
3526 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003527 // Allocate ffname and expand into full path. Also resolves .lnk
3528 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003529 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003530 buf->b_fname = buf->b_sfname;
3531 }
3532}
3533
3534/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 * Take care of what needs to be done when the name of buffer "buf" has
3536 * changed.
3537 */
3538 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003539buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540{
3541 /*
3542 * If the file name changed, also change the name of the swapfile
3543 */
3544 if (buf->b_ml.ml_mfp != NULL)
3545 ml_setname(buf);
3546
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003547#ifdef FEAT_TERMINAL
3548 if (buf->b_term != NULL)
3549 term_clear_status_text(buf->b_term);
3550#endif
3551
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003553 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003554 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003555 status_redraw_all(); // status lines need to be redrawn
3556 fmarks_check_names(buf); // check named file marks
3557 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558}
3559
3560/*
3561 * set alternate file name for current window
3562 *
3563 * Used by do_one_cmd(), do_write() and do_ecmd().
3564 * Return the buffer.
3565 */
3566 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003567setaltfname(
3568 char_u *ffname,
3569 char_u *sfname,
3570 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571{
3572 buf_T *buf;
3573
Bram Moolenaarc667da52019-11-30 20:52:27 +01003574 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003576 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 curwin->w_alt_fnum = buf->b_fnum;
3578 return buf;
3579}
3580
3581/*
3582 * Get alternate file name for current window.
3583 * Return NULL if there isn't any, and give error message if requested.
3584 */
3585 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003586getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003587 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588{
3589 char_u *fname;
3590 linenr_T dummy;
3591
3592 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3593 {
3594 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003595 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 return NULL;
3597 }
3598 return fname;
3599}
3600
3601/*
3602 * Add a file name to the buflist and return its number.
3603 * Uses same flags as buflist_new(), except BLN_DUMMY.
3604 *
3605 * used by qf_init(), main() and doarglist()
3606 */
3607 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003608buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609{
3610 buf_T *buf;
3611
3612 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3613 if (buf != NULL)
3614 return buf->b_fnum;
3615 return 0;
3616}
3617
3618#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3619/*
3620 * Adjust slashes in file names. Called after 'shellslash' was set.
3621 */
3622 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003623buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624{
3625 buf_T *bp;
3626
Bram Moolenaar29323592016-07-24 22:04:11 +02003627 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 {
3629 if (bp->b_ffname != NULL)
3630 slash_adjust(bp->b_ffname);
3631 if (bp->b_sfname != NULL)
3632 slash_adjust(bp->b_sfname);
3633 }
3634}
3635#endif
3636
3637/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003638 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 * Also save the local window option values.
3640 */
3641 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003642buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003644 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645}
3646
3647/*
3648 * Return TRUE if 'ffname' is not the same file as current file.
3649 * Fname must have a full path (expanded by mch_FullName()).
3650 */
3651 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003652otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653{
3654 return otherfile_buf(curbuf, ffname
3655#ifdef UNIX
3656 , NULL
3657#endif
3658 );
3659}
3660
3661 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003662otherfile_buf(
3663 buf_T *buf,
3664 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003666 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003668 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003670 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3672 return TRUE;
3673 if (fnamecmp(ffname, buf->b_ffname) == 0)
3674 return FALSE;
3675#ifdef UNIX
3676 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003677 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678
Bram Moolenaarc667da52019-11-30 20:52:27 +01003679 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 if (stp == NULL)
3681 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003682 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 st.st_dev = (dev_T)-1;
3684 stp = &st;
3685 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003686 // Use dev/ino to check if the files are the same, even when the names
3687 // are different (possible with links). Still need to compare the
3688 // name above, for when the file doesn't exist yet.
3689 // Problem: The dev/ino changes when a file is deleted (and created
3690 // again) and remains the same when renamed/moved. We don't want to
3691 // mch_stat() each buffer each time, that would be too slow. Get the
3692 // dev/ino again when they appear to match, but not when they appear
3693 // to be different: Could skip a buffer when it's actually the same
3694 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 if (buf_same_ino(buf, stp))
3696 {
3697 buf_setino(buf);
3698 if (buf_same_ino(buf, stp))
3699 return FALSE;
3700 }
3701 }
3702#endif
3703 return TRUE;
3704}
3705
3706#if defined(UNIX) || defined(PROTO)
3707/*
3708 * Set inode and device number for a buffer.
3709 * Must always be called when b_fname is changed!.
3710 */
3711 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003712buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003714 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715
3716 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3717 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003718 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 buf->b_dev = st.st_dev;
3720 buf->b_ino = st.st_ino;
3721 }
3722 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003723 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724}
3725
3726/*
3727 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3728 */
3729 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003730buf_same_ino(
3731 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003732 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003734 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 && stp->st_dev == buf->b_dev
3736 && stp->st_ino == buf->b_ino);
3737}
3738#endif
3739
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003740/*
3741 * Print info about the current buffer.
3742 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003744fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003745 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003746 int shorthelp,
3747 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748{
3749 char_u *name;
3750 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003751 char *p;
3752 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003753 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003755 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 if (buffer == NULL)
3757 return;
3758
Bram Moolenaarc667da52019-11-30 20:52:27 +01003759 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003761 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 p = buffer + STRLEN(buffer);
3763 }
3764 else
3765 p = buffer;
3766
3767 *p++ = '"';
3768 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003769 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 else
3771 {
3772 if (!fullname && curbuf->b_fname != NULL)
3773 name = curbuf->b_fname;
3774 else
3775 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003776 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 (int)(IOSIZE - (p - buffer)), TRUE);
3778 }
3779
Bram Moolenaar32526b32019-01-19 17:43:09 +01003780 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 curbufIsChanged() ? (shortmess(SHM_MOD)
3782 ? " [+]" : _(" [Modified]")) : " ",
3783 (curbuf->b_flags & BF_NOTEDITED)
3784#ifdef FEAT_QUICKFIX
3785 && !bt_dontwrite(curbuf)
3786#endif
3787 ? _("[Not edited]") : "",
3788 (curbuf->b_flags & BF_NEW)
3789#ifdef FEAT_QUICKFIX
3790 && !bt_dontwrite(curbuf)
3791#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003792 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003794 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 : _("[readonly]")) : "",
3796 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3797 || curbuf->b_p_ro) ?
3798 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003799 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3800 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 if (curwin->w_cursor.lnum > 1000000L)
3802 n = (int)(((long)curwin->w_cursor.lnum) /
3803 ((long)curbuf->b_ml.ml_line_count / 100L));
3804 else
3805 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3806 (long)curbuf->b_ml.ml_line_count);
3807 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003808 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809#ifdef FEAT_CMDL_INFO
3810 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003811 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003812 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003813 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3814 curbuf->b_ml.ml_line_count),
3815 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816#endif
3817 else
3818 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003819 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 _("line %ld of %ld --%d%%-- col "),
3821 (long)curwin->w_cursor.lnum,
3822 (long)curbuf->b_ml.ml_line_count,
3823 n);
3824 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003825 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003826 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3828 }
3829
Bram Moolenaar32526b32019-01-19 17:43:09 +01003830 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3831 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832
3833 if (dont_truncate)
3834 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003835 // Temporarily set msg_scroll to avoid the message being truncated.
3836 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 msg_start();
3838 n = msg_scroll;
3839 msg_scroll = TRUE;
3840 msg(buffer);
3841 msg_scroll = n;
3842 }
3843 else
3844 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003845 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003847 // Need to repeat the message after redrawing when:
3848 // - When restart_edit is set (otherwise there will be a delay
3849 // before redrawing).
3850 // - When the screen was scrolled but there is no wait-return
3851 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003852 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 }
3854
3855 vim_free(buffer);
3856}
3857
3858 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003859col_print(
3860 char_u *buf,
3861 size_t buflen,
3862 int col,
3863 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864{
3865 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003866 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003868 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869}
3870
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871static char_u *lasttitle = NULL;
3872static char_u *lasticon = NULL;
3873
Bram Moolenaar84a93082018-06-16 22:58:15 +02003874/*
3875 * Put the file name in the title bar and icon of the window.
3876 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003878maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879{
3880 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003881 char_u *title_str = NULL;
3882 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 int maxlen = 0;
3884 int len;
3885 int mustset;
3886 char_u buf[IOSIZE];
3887 int off;
3888
3889 if (!redrawing())
3890 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003891 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 need_maketitle = TRUE;
3893 return;
3894 }
3895
3896 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003897 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003898 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899
3900 if (p_title)
3901 {
3902 if (p_titlelen > 0)
3903 {
3904 maxlen = p_titlelen * Columns / 100;
3905 if (maxlen < 10)
3906 maxlen = 10;
3907 }
3908
Bram Moolenaar84a93082018-06-16 22:58:15 +02003909 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 if (*p_titlestring != NUL)
3911 {
3912#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003913 if (stl_syntax & STL_IN_TITLE)
3914 {
3915 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003916 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003917
3918# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003919 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003920# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003921 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003922 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003923 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003924 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003925 set_string_option_direct((char_u *)"titlestring", -1,
3926 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 else
3929#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003930 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 }
3932 else
3933 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003934 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935
Bram Moolenaar2c666692012-09-05 13:30:40 +02003936#define SPACE_FOR_FNAME (IOSIZE - 100)
3937#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003938#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003940 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003941#ifdef FEAT_TERMINAL
3942 else if (curbuf->b_term != NULL)
3943 {
3944 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3945 SPACE_FOR_FNAME);
3946 }
3947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 else
3949 {
3950 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003951 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 }
3954
Bram Moolenaar21554412017-07-24 21:44:43 +02003955#ifdef FEAT_TERMINAL
3956 if (curbuf->b_term == NULL)
3957#endif
3958 switch (bufIsChanged(curbuf)
3959 + (curbuf->b_p_ro * 2)
3960 + (!curbuf->b_p_ma * 4))
3961 {
3962 case 1: STRCAT(buf, " +"); break;
3963 case 2: STRCAT(buf, " ="); break;
3964 case 3: STRCAT(buf, " =+"); break;
3965 case 4:
3966 case 6: STRCAT(buf, " -"); break;
3967 case 5:
3968 case 7: STRCAT(buf, " -+"); break;
3969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970
Bram Moolenaar21554412017-07-24 21:44:43 +02003971 if (curbuf->b_fname != NULL
3972#ifdef FEAT_TERMINAL
3973 && curbuf->b_term == NULL
3974#endif
3975 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003977 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 off = (int)STRLEN(buf);
3979 buf[off++] = ' ';
3980 buf[off++] = '(';
3981 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003982 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003984 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 if (isalpha(buf[off]) && buf[off + 1] == ':')
3986 off += 2;
3987#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003988 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003989 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003991 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003992 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003993 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003994 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003998
Bram Moolenaarc667da52019-11-30 20:52:27 +01003999 // Translate unprintable chars and concatenate. Keep some
4000 // room for the server name. When there is no room (very long
4001 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02004002 if (off < SPACE_FOR_DIR)
4003 {
4004 p = transstr(buf + off);
4005 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4006 vim_free(p);
4007 }
4008 else
4009 {
4010 vim_strncpy(buf + off, (char_u *)"...",
4011 (size_t)(SPACE_FOR_ARGNR - off));
4012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 STRCAT(buf, ")");
4014 }
4015
Bram Moolenaar2c666692012-09-05 13:30:40 +02004016 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017
4018#if defined(FEAT_CLIENTSERVER)
4019 if (serverName != NULL)
4020 {
4021 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004022 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 }
4024 else
4025#endif
4026 STRCAT(buf, " - VIM");
4027
4028 if (maxlen > 0)
4029 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004030 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004031 if (vim_strsize(buf) > maxlen)
4032 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 }
4034 }
4035 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004036 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037
4038 if (p_icon)
4039 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004040 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 if (*p_iconstring != NUL)
4042 {
4043#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004044 if (stl_syntax & STL_IN_ICON)
4045 {
4046 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004047 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004048
4049# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004050 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004051# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004052 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004053 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004054 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004055 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004056 set_string_option_direct((char_u *)"iconstring", -1,
4057 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 else
4060#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004061 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 }
4063 else
4064 {
4065 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004066 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004067 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004068 p = gettail(curbuf->b_ffname);
4069 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004070 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004071 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 if (len > 100)
4073 {
4074 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004076 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004077 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004079 STRCPY(icon_str, p);
4080 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 }
4082 }
4083
Bram Moolenaar84a93082018-06-16 22:58:15 +02004084 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085
4086 if (mustset)
4087 resettitle();
4088}
4089
4090/*
4091 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4092 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004093 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 */
4095 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004096value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097{
4098 if ((str == NULL) != (*last == NULL)
4099 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4100 {
4101 vim_free(*last);
4102 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004103 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004105 mch_restore_title(
4106 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004107 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004111 return TRUE;
4112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 }
4114 return FALSE;
4115}
4116
4117/*
4118 * Put current window title back (used after calling a shell)
4119 */
4120 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004121resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122{
4123 mch_settitle(lasttitle, lasticon);
4124}
Bram Moolenaarea408852005-06-25 22:49:46 +00004125
4126# if defined(EXITFREE) || defined(PROTO)
4127 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004128free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004129{
4130 vim_free(lasttitle);
4131 vim_free(lasticon);
4132}
4133# endif
4134
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004136#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004137
4138/*
4139 * Used for building in the status line.
4140 */
4141typedef struct
4142{
4143 char_u *stl_start;
4144 int stl_minwid;
4145 int stl_maxwid;
4146 enum {
4147 Normal,
4148 Empty,
4149 Group,
4150 Middle,
4151 Highlight,
4152 TabPage,
4153 Trunc
4154 } stl_type;
4155} stl_item_T;
4156
4157static size_t stl_items_len = 20; // Initial value, grows as needed.
4158static stl_item_T *stl_items = NULL;
4159static int *stl_groupitem = NULL;
4160static stl_hlrec_T *stl_hltab = NULL;
4161static stl_hlrec_T *stl_tabtab = NULL;
4162
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004164 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 * Return length of string in screen cells.
4166 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004167 * Normally works for window "wp", except when working for 'tabline' then it
4168 * is "curwin".
4169 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 * Items are drawn interspersed with the text that surrounds it
4171 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4172 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4173 *
4174 * If maxwidth is not zero, the string will be filled at any middle marker
4175 * or truncated if too long, fillchar is used for all whitespace.
4176 */
4177 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004178build_stl_str_hl(
4179 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004180 char_u *out, // buffer to write into != NameBuff
4181 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004182 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004183 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004184 int fillchar,
4185 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004186 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4187 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188{
Bram Moolenaar10772302019-01-20 18:25:54 +01004189 linenr_T lnum;
4190 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 char_u *p;
4192 char_u *s;
4193 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004194 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004196 win_T *save_curwin;
4197 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004198 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199#endif
4200 int empty_line;
4201 colnr_T virtcol;
4202 long l;
4203 long n;
4204 int prevchar_isflag;
4205 int prevchar_isitem;
4206 int itemisflag;
4207 int fillable;
4208 char_u *str;
4209 long num;
4210 int width;
4211 int itemcnt;
4212 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004213 int group_end_userhl;
4214 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004216#ifdef FEAT_EVAL
4217 int evaldepth;
4218#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 int minwid;
4220 int maxwid;
4221 int zeropad;
4222 char_u base;
4223 char_u opt;
4224#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004225 char_u buf_tmp[TMPLEN];
4226 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004227 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004228 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004229 int save_must_redraw = must_redraw;
4230 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004231 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004232
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004233 if (stl_items == NULL)
4234 {
4235 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4236 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004237
4238 // Allocate one more, because the last element is used to indicate the
4239 // end of the list.
4240 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4241 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004242 }
4243
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004244#ifdef FEAT_EVAL
4245 /*
4246 * When the format starts with "%!" then evaluate it as an expression and
4247 * use the result as the actual format string.
4248 */
4249 if (fmt[0] == '%' && fmt[1] == '!')
4250 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004251 typval_T tv;
4252
4253 tv.v_type = VAR_NUMBER;
4254 tv.vval.v_number = wp->w_id;
4255 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4256
Bram Moolenaar9530b582022-01-22 13:39:08 +00004257 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004258 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004259 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004260
4261 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004262 }
4263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264
4265 if (fillchar == 0)
4266 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004267
Bram Moolenaar10772302019-01-20 18:25:54 +01004268 // The cursor in windows other than the current one isn't always
4269 // up-to-date, esp. because of autocommands and timers.
4270 lnum = wp->w_cursor.lnum;
4271 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4272 {
4273 lnum = wp->w_buffer->b_ml.ml_line_count;
4274 wp->w_cursor.lnum = lnum;
4275 }
4276
4277 // Get line & check if empty (cursorpos will show "0-1"). Note that
4278 // p will become invalid when getting another buffer line.
4279 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004280 empty_line = (*p == NUL);
4281
Bram Moolenaar10772302019-01-20 18:25:54 +01004282 // Get the byte value now, in case we need it below. This is more efficient
4283 // than making a copy of the line.
4284 len = STRLEN(p);
4285 if (wp->w_cursor.col > (colnr_T)len)
4286 {
4287 // Line may have changed since checking the cursor column, or the lnum
4288 // was adjusted above.
4289 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004290 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004291 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004292 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004293 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004294 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295
4296 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004297#ifdef FEAT_EVAL
4298 evaldepth = 0;
4299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 p = out;
4301 curitem = 0;
4302 prevchar_isflag = TRUE;
4303 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004304 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004306 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004307 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004308 size_t new_len = stl_items_len * 3 / 2;
4309 stl_item_T *new_items;
4310 int *new_groupitem;
4311 stl_hlrec_T *new_hlrec;
4312
4313 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4314 if (new_items == NULL)
4315 break;
4316 stl_items = new_items;
4317 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4318 if (new_groupitem == NULL)
4319 break;
4320 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004321 new_hlrec = vim_realloc(stl_hltab,
4322 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004323 if (new_hlrec == NULL)
4324 break;
4325 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004326 new_hlrec = vim_realloc(stl_tabtab,
4327 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004328 if (new_hlrec == NULL)
4329 break;
4330 stl_tabtab = new_hlrec;
4331 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004332 }
4333
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 if (*s != NUL && *s != '%')
4335 prevchar_isflag = prevchar_isitem = FALSE;
4336
4337 /*
4338 * Handle up to the next '%' or the end.
4339 */
4340 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4341 *p++ = *s++;
4342 if (*s == NUL || p + 1 >= out + outlen)
4343 break;
4344
4345 /*
4346 * Handle one '%' item.
4347 */
4348 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004349 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004350 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 if (*s == '%')
4352 {
4353 if (p + 1 >= out + outlen)
4354 break;
4355 *p++ = *s++;
4356 prevchar_isflag = prevchar_isitem = FALSE;
4357 continue;
4358 }
4359 if (*s == STL_MIDDLEMARK)
4360 {
4361 s++;
4362 if (groupdepth > 0)
4363 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004364 stl_items[curitem].stl_type = Middle;
4365 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 continue;
4367 }
4368 if (*s == STL_TRUNCMARK)
4369 {
4370 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004371 stl_items[curitem].stl_type = Trunc;
4372 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 continue;
4374 }
4375 if (*s == ')')
4376 {
4377 s++;
4378 if (groupdepth < 1)
4379 continue;
4380 groupdepth--;
4381
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004382 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 *p = NUL;
4384 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004385 if (curitem > stl_groupitem[groupdepth] + 1
4386 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004388 // remove group if all items are empty and highlight group
4389 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004390 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004391 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004392 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004393 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004394 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004395 group_start_userhl = group_end_userhl =
4396 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004397 break;
4398 }
4399 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004400 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004401 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004402 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004404 if (stl_items[n].stl_type == Highlight)
4405 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004406 }
4407 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004409 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 p = t;
4411 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004412 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004413 {
4414 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004415 if (stl_items[n].stl_type == Highlight)
4416 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004417 // adjust the start position of TabPage to the next
4418 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004419 if (stl_items[n].stl_type == TabPage)
4420 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 }
4423 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004424 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004426 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 if (has_mbyte)
4428 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004429 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004431 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 {
4433 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004434 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 }
4436 }
4437 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004438 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4439 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440
4441 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004442 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004444
4445 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004446 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004447 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448
Bram Moolenaarc667da52019-11-30 20:52:27 +01004449 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004450 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004452 stl_items[l].stl_start -= n;
4453 if (stl_items[l].stl_start < t)
4454 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 }
4456 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004457 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004459 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004460 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 if (n < 0)
4462 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004463 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 n = 0 - n;
4465 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004466 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 else
4469 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004470 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004471 l = (n - l) * MB_CHAR2LEN(fillchar);
4472 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004474 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004476 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4477 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004479 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 }
4481 }
4482 continue;
4483 }
4484 minwid = 0;
4485 maxwid = 9999;
4486 zeropad = FALSE;
4487 l = 1;
4488 if (*s == '0')
4489 {
4490 s++;
4491 zeropad = TRUE;
4492 }
4493 if (*s == '-')
4494 {
4495 s++;
4496 l = -1;
4497 }
4498 if (VIM_ISDIGIT(*s))
4499 {
4500 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004501 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 minwid = 0;
4503 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004504 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004506 stl_items[curitem].stl_type = Highlight;
4507 stl_items[curitem].stl_start = p;
4508 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 s++;
4510 curitem++;
4511 continue;
4512 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004513 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4514 {
4515 if (*s == STL_TABCLOSENR)
4516 {
4517 if (minwid == 0)
4518 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004519 // %X ends the close label, go back to the previously
4520 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004521 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004522 if (stl_items[n].stl_type == TabPage
4523 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004524 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004525 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004526 break;
4527 }
4528 }
4529 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004530 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004531 minwid = - minwid;
4532 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004533 stl_items[curitem].stl_type = TabPage;
4534 stl_items[curitem].stl_start = p;
4535 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004536 s++;
4537 curitem++;
4538 continue;
4539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 if (*s == '.')
4541 {
4542 s++;
4543 if (VIM_ISDIGIT(*s))
4544 {
4545 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004546 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 maxwid = 50;
4548 }
4549 }
4550 minwid = (minwid > 50 ? 50 : minwid) * l;
4551 if (*s == '(')
4552 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004553 stl_groupitem[groupdepth++] = curitem;
4554 stl_items[curitem].stl_type = Group;
4555 stl_items[curitem].stl_start = p;
4556 stl_items[curitem].stl_minwid = minwid;
4557 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 s++;
4559 curitem++;
4560 continue;
4561 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004562#ifdef FEAT_EVAL
4563 // Denotes end of expanded %{} block
4564 if (*s == '}' && evaldepth > 0)
4565 {
4566 s++;
4567 evaldepth--;
4568 continue;
4569 }
4570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 if (vim_strchr(STL_ALL, *s) == NULL)
4572 {
4573 s++;
4574 continue;
4575 }
4576 opt = *s++;
4577
Bram Moolenaarc667da52019-11-30 20:52:27 +01004578 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 base = 'D';
4580 itemisflag = FALSE;
4581 fillable = TRUE;
4582 num = -1;
4583 str = NULL;
4584 switch (opt)
4585 {
4586 case STL_FILEPATH:
4587 case STL_FULLPATH:
4588 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004589 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004591 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 else
4593 {
4594 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004595 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4597 }
4598 trans_characters(NameBuff, MAXPATHL);
4599 if (opt != STL_FILENAME)
4600 str = NameBuff;
4601 else
4602 str = gettail(NameBuff);
4603 break;
4604
Bram Moolenaarc667da52019-11-30 20:52:27 +01004605 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004606 {
4607#ifdef FEAT_EVAL
4608 char_u *block_start = s - 1;
4609#endif
4610 int reevaluate = (*s == '%');
4611
4612 if (reevaluate)
4613 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 itemisflag = TRUE;
4615 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004616 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4617 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004619 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 break;
4621 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004622 if (reevaluate)
4623 p[-1] = 0; // remove the % at the end of %{% expr %}
4624 else
4625 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004628 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4629 "%d", curbuf->b_fnum);
4630 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4631 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4632 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004634 save_curbuf = curbuf;
4635 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004636 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 curwin = wp;
4638 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004639 // Visual mode is only valid in the current window.
4640 if (curwin != save_curwin)
4641 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642
Bram Moolenaar9530b582022-01-22 13:39:08 +00004643 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004645 curwin = save_curwin;
4646 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004647 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004648 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004649 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650
4651 if (str != NULL && *str != 0)
4652 {
4653 if (*skipdigits(str) == NUL)
4654 {
4655 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004656 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 itemisflag = FALSE;
4658 }
4659 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004660
4661 // If the output of the expression needs to be evaluated
4662 // replace the %{} block with the result of evaluation
4663 if (reevaluate && str != NULL && *str != 0
4664 && strchr((const char *)str, '%') != NULL
4665 && evaldepth < MAX_STL_EVAL_DEPTH)
4666 {
4667 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4668 size_t str_length = strlen((const char *)str);
4669 size_t fmt_length = strlen((const char *)s);
4670 size_t new_fmt_len = parsed_usefmt
4671 + str_length + fmt_length + 3;
4672 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4673 char_u *new_fmt_p = new_fmt;
4674
4675 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4676 + parsed_usefmt;
4677 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4678 + str_length;
4679 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4680 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4681 + fmt_length;
4682 *new_fmt_p = 0;
4683 new_fmt_p = NULL;
4684
4685 if (usefmt != fmt)
4686 vim_free(usefmt);
4687 VIM_CLEAR(str);
4688 usefmt = new_fmt;
4689 s = usefmt + parsed_usefmt;
4690 evaldepth++;
4691 continue;
4692 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693#endif
4694 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 case STL_LINE:
4697 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4698 ? 0L : (long)(wp->w_cursor.lnum);
4699 break;
4700
4701 case STL_NUMLINES:
4702 num = wp->w_buffer->b_ml.ml_line_count;
4703 break;
4704
4705 case STL_COLUMN:
4706 num = !(State & INSERT) && empty_line
4707 ? 0 : (int)wp->w_cursor.col + 1;
4708 break;
4709
4710 case STL_VIRTCOL:
4711 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004712 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004713 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 if (opt == STL_VIRTCOL_ALT
4715 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4716 ? 0 : (int)wp->w_cursor.col + 1)))
4717 break;
4718 num = (long)virtcol;
4719 break;
4720
4721 case STL_PERCENTAGE:
4722 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4723 (long)wp->w_buffer->b_ml.ml_line_count);
4724 break;
4725
4726 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004727 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004728 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 break;
4730
4731 case STL_ARGLISTSTAT:
4732 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004733 buf_tmp[0] = 0;
4734 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4735 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 break;
4737
4738 case STL_KEYMAP:
4739 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004740 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4741 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 break;
4743 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004744#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004745 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746#else
4747 num = 0;
4748#endif
4749 break;
4750
4751 case STL_BUFNO:
4752 num = wp->w_buffer->b_fnum;
4753 break;
4754
4755 case STL_OFFSET_X:
4756 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004757 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 case STL_OFFSET:
4759#ifdef FEAT_BYTEOFF
4760 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4761 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4762 0L : l + 1 + (!(State & INSERT) && empty_line ?
4763 0 : (int)wp->w_cursor.col);
4764#endif
4765 break;
4766
4767 case STL_BYTEVAL_X:
4768 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004769 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004771 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 if (num == NL)
4773 num = 0;
4774 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4775 num = NL;
4776 break;
4777
4778 case STL_ROFLAG:
4779 case STL_ROFLAG_ALT:
4780 itemisflag = TRUE;
4781 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004782 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 break;
4784
4785 case STL_HELPFLAG:
4786 case STL_HELPFLAG_ALT:
4787 itemisflag = TRUE;
4788 if (wp->w_buffer->b_help)
4789 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004790 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 break;
4792
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 case STL_FILETYPE:
4794 if (*wp->w_buffer->b_p_ft != NUL
4795 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4796 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004797 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004798 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004799 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 }
4801 break;
4802
4803 case STL_FILETYPE_ALT:
4804 itemisflag = TRUE;
4805 if (*wp->w_buffer->b_p_ft != NUL
4806 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4807 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004808 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004809 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004810 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004812 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 }
4814 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815
Bram Moolenaar4033c552017-09-16 20:54:51 +02004816#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 case STL_PREVIEWFLAG:
4818 case STL_PREVIEWFLAG_ALT:
4819 itemisflag = TRUE;
4820 if (wp->w_p_pvw)
4821 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4822 : _("[Preview]"));
4823 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004824
4825 case STL_QUICKFIX:
4826 if (bt_quickfix(wp->w_buffer))
4827 str = (char_u *)(wp->w_llist_ref
4828 ? _(msg_loclist)
4829 : _(msg_qflist));
4830 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831#endif
4832
4833 case STL_MODIFIED:
4834 case STL_MODIFIED_ALT:
4835 itemisflag = TRUE;
4836 switch ((opt == STL_MODIFIED_ALT)
4837 + bufIsChanged(wp->w_buffer) * 2
4838 + (!wp->w_buffer->b_p_ma) * 4)
4839 {
4840 case 2: str = (char_u *)"[+]"; break;
4841 case 3: str = (char_u *)",+"; break;
4842 case 4: str = (char_u *)"[-]"; break;
4843 case 5: str = (char_u *)",-"; break;
4844 case 6: str = (char_u *)"[+-]"; break;
4845 case 7: str = (char_u *)",+-"; break;
4846 }
4847 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004848
4849 case STL_HIGHLIGHT:
4850 t = s;
4851 while (*s != '#' && *s != NUL)
4852 ++s;
4853 if (*s == '#')
4854 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004855 stl_items[curitem].stl_type = Highlight;
4856 stl_items[curitem].stl_start = p;
4857 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004858 curitem++;
4859 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004860 if (*s != NUL)
4861 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004862 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 }
4864
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004865 stl_items[curitem].stl_start = p;
4866 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 if (str != NULL && *str)
4868 {
4869 t = str;
4870 if (itemisflag)
4871 {
4872 if ((t[0] && t[1])
4873 && ((!prevchar_isitem && *t == ',')
4874 || (prevchar_isflag && *t == ' ')))
4875 t++;
4876 prevchar_isflag = TRUE;
4877 }
4878 l = vim_strsize(t);
4879 if (l > 0)
4880 prevchar_isitem = TRUE;
4881 if (l > maxwid)
4882 {
4883 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 if (has_mbyte)
4885 {
4886 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004887 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 }
4889 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 l -= byte2cells(*t++);
4891 if (p + 1 >= out + outlen)
4892 break;
4893 *p++ = '<';
4894 }
4895 if (minwid > 0)
4896 {
4897 for (; l < minwid && p + 1 < out + outlen; l++)
4898 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004899 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4901 *p++ = ' ';
4902 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004903 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 }
4905 minwid = 0;
4906 }
4907 else
4908 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004909 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004911 // Change a space by fillchar, unless fillchar is '-' and a
4912 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004913 if (fillable && *t == ' '
4914 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4915 MB_CHAR2BYTES(fillchar, p);
4916 else
4917 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 }
4919 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004920 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 }
4922 else if (num >= 0)
4923 {
4924 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4925 char_u nstr[20];
4926
4927 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004928 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 prevchar_isitem = TRUE;
4930 t = nstr;
4931 if (opt == STL_VIRTCOL_ALT)
4932 {
4933 *t++ = '-';
4934 minwid--;
4935 }
4936 *t++ = '%';
4937 if (zeropad)
4938 *t++ = '0';
4939 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004940 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 *t = 0;
4942
4943 for (n = num, l = 1; n >= nbase; n /= nbase)
4944 l++;
4945 if (opt == STL_VIRTCOL_ALT)
4946 l++;
4947 if (l > maxwid)
4948 {
4949 l += 2;
4950 n = l - maxwid;
4951 while (l-- > maxwid)
4952 num /= nbase;
4953 *t++ = '>';
4954 *t++ = '%';
4955 *t = t[-3];
4956 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004957 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4958 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 }
4960 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004961 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4962 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 p += STRLEN(p);
4964 }
4965 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004966 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967
4968 if (opt == STL_VIM_EXPR)
4969 vim_free(str);
4970
4971 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004972 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 curitem++;
4974 }
4975 *p = NUL;
4976 itemcnt = curitem;
4977
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004978#ifdef FEAT_EVAL
4979 if (usefmt != fmt)
4980 vim_free(usefmt);
4981#endif
4982
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 width = vim_strsize(out);
4984 if (maxwidth > 0 && width > maxwidth)
4985 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004986 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 l = 0;
4988 if (itemcnt == 0)
4989 s = out;
4990 else
4991 {
4992 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004993 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004995 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004996 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 break;
4998 }
4999 if (l == itemcnt)
5000 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005001 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005002 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 l = 0;
5004 }
5005 }
5006
5007 if (width - vim_strsize(s) >= maxwidth)
5008 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005009 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 if (has_mbyte)
5011 {
5012 s = out;
5013 width = 0;
5014 for (;;)
5015 {
5016 width += ptr2cells(s);
5017 if (width >= maxwidth)
5018 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005019 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005021 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005023 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 }
5025 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 s = out + maxwidth - 1;
5027 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005028 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 break;
5030 itemcnt = l;
5031 *s++ = '>';
5032 *s = 0;
5033 }
5034 else
5035 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 if (has_mbyte)
5037 {
5038 n = 0;
5039 while (width >= maxwidth)
5040 {
5041 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005042 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 }
5044 }
5045 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 n = width - maxwidth + 1;
5047 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005048 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 *s = '<';
5050
Bram Moolenaarc667da52019-11-30 20:52:27 +01005051 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 while (++width < maxwidth)
5053 {
5054 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005055 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 *s = NUL;
5057 }
5058
Bram Moolenaarc667da52019-11-30 20:52:27 +01005059 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 for (; l < itemcnt; l++)
5061 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005062 if (stl_items[l].stl_start - n >= s)
5063 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005065 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 }
5067 }
5068 width = maxwidth;
5069 }
5070 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5071 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005072 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005074 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 break;
5076 if (l < itemcnt)
5077 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005078 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5079 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005080 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005081 for (s = stl_items[l].stl_start; s < p;)
5082 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005084 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 width = maxwidth;
5086 }
5087 }
5088
Bram Moolenaarc667da52019-11-30 20:52:27 +01005089 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005090 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005092 *hltab = stl_hltab;
5093 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 for (l = 0; l < itemcnt; l++)
5095 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005096 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005098 sp->start = stl_items[l].stl_start;
5099 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005100 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 }
5102 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005103 sp->start = NULL;
5104 sp->userhl = 0;
5105 }
5106
Bram Moolenaarc667da52019-11-30 20:52:27 +01005107 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005108 if (tabtab != NULL)
5109 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005110 *tabtab = stl_tabtab;
5111 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005112 for (l = 0; l < itemcnt; l++)
5113 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005114 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005115 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005116 sp->start = stl_items[l].stl_start;
5117 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005118 sp++;
5119 }
5120 }
5121 sp->start = NULL;
5122 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 }
5124
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005125 // When inside update_screen we do not want redrawing a statusline, ruler,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005126 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005127 if (updating_screen)
5128 {
5129 must_redraw = save_must_redraw;
5130 curwin->w_redr_type = save_redr_type;
5131 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005132
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005133 // A user function may reset KeyTyped, restore it.
5134 KeyTyped = save_KeyTyped;
5135
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 return width;
5137}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005138#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005140#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5141 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005143 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5144 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 */
5146 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005147get_rel_pos(
5148 win_T *wp,
5149 char_u *buf,
5150 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005152 long above; // number of lines above window
5153 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154
Bram Moolenaarc667da52019-11-30 20:52:27 +01005155 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005156 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 above = wp->w_topline - 1;
5158#ifdef FEAT_DIFF
5159 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005160 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005161 above = 0; // All buffer lines are displayed and there is an
5162 // indication of filler lines, that can be considered
5163 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164#endif
5165 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5166 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005167 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5168 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005170 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005172 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 ? (int)(above / ((above + below) / 100L))
5174 : (int)(above * 100L / (above + below)));
5175}
5176#endif
5177
5178/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005179 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 * Return TRUE if it was appended.
5181 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005182 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005183append_arg_number(
5184 win_T *wp,
5185 char_u *buf,
5186 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005187 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188{
5189 char_u *p;
5190
Bram Moolenaarc667da52019-11-30 20:52:27 +01005191 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 return FALSE;
5193
Bram Moolenaarc667da52019-11-30 20:52:27 +01005194 p = buf + STRLEN(buf); // go to the end of the buffer
5195 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 return FALSE;
5197 *p++ = ' ';
5198 *p++ = '(';
5199 if (add_file)
5200 {
5201 STRCPY(p, "file ");
5202 p += 5;
5203 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005204 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5205 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5207 return TRUE;
5208}
5209
5210/*
5211 * If fname is not a full path, make it a full path.
5212 * Returns pointer to allocated memory (NULL for failure).
5213 */
5214 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005215fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216{
5217 /*
5218 * Force expanding the path always for Unix, because symbolic links may
5219 * mess up the full path name, even though it starts with a '/'.
5220 * Also expand when there is ".." in the file name, try to remove it,
5221 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005222 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 * For MS-Windows also expand names like "longna~1" to "longname".
5224 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005225#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 return FullName_save(fname, TRUE);
5227#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005228 if (!vim_isAbsName(fname)
5229 || strstr((char *)fname, "..") != NULL
5230 || strstr((char *)fname, "//") != NULL
5231# ifdef BACKSLASH_IN_FILENAME
5232 || strstr((char *)fname, "\\\\") != NULL
5233# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005234# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005236# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 )
5238 return FullName_save(fname, FALSE);
5239
5240 fname = vim_strsave(fname);
5241
Bram Moolenaar9b942202007-10-03 12:31:33 +00005242# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005243 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005244 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005245# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246
5247 return fname;
5248#endif
5249}
5250
5251/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005252 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5253 * "*ffname" becomes a pointer to allocated memory (or NULL).
5254 * When resolving a link both "*sfname" and "*ffname" will point to the same
5255 * allocated memory.
5256 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005257 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005260fname_expand(
5261 buf_T *buf UNUSED,
5262 char_u **ffname,
5263 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005265 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005267 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005269 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270
5271#ifdef FEAT_SHORTCUT
5272 if (!buf->b_p_bin)
5273 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005274 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005276 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005277 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005278 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 {
5280 vim_free(*ffname);
5281 *ffname = rfname;
5282 *sfname = rfname;
5283 }
5284 }
5285#endif
5286}
5287
5288/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 * Open a window for a number of buffers.
5290 */
5291 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005292ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293{
5294 buf_T *buf;
5295 win_T *wp, *wpnext;
5296 int split_ret = OK;
5297 int p_ea_save;
5298 int open_wins = 0;
5299 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005300 int count; // Maximum number of windows to open.
5301 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005302 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005303 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304
Bram Moolenaarc667da52019-11-30 20:52:27 +01005305 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 count = 9999;
5307 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005308 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5310 all = FALSE;
5311 else
5312 all = TRUE;
5313
5314 setpcmark();
5315
5316#ifdef FEAT_GUI
5317 need_mouse_correct = TRUE;
5318#endif
5319
5320 /*
5321 * Close superfluous windows (two windows for the same buffer).
5322 * Also close windows that are not full-width.
5323 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005324 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005325 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005326 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005328 tpnext = curtab->tp_next;
5329 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005331 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005332 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1004402020-10-24 20:49:43 +02005333 || ((cmdmod.cmod_split & WSP_VERT)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005334 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005335 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005336 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005337 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005338 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005339 {
5340 win_close(wp, FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01005341 wpnext = firstwin; // just in case an autocommand does
5342 // something strange with windows
5343 tpnext = first_tabpage; // start all over...
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005344 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005345 }
5346 else
5347 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005349
Bram Moolenaarc667da52019-11-30 20:52:27 +01005350 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005351 if (had_tab == 0 || tpnext == NULL)
5352 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005353 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 }
5355
5356 /*
5357 * Go through the buffer list. When a buffer doesn't have a window yet,
5358 * open one. Otherwise move the window to the right position.
5359 * Watch out for autocommands that delete buffers or windows!
5360 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005361 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5366 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005367 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5369 continue;
5370
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005371 if (had_tab != 0)
5372 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005373 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005374 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005375 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005376 else
5377 wp = NULL;
5378 }
5379 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005380 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005381 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005382 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005383 if (wp->w_buffer == buf)
5384 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005385 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005386 if (wp != NULL)
5387 win_move_after(wp, curwin);
5388 }
5389
5390 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005392 bufref_T bufref;
5393
5394 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005395
Bram Moolenaarc667da52019-11-30 20:52:27 +01005396 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005398 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5400 ++open_wins;
5401 p_ea = p_ea_save;
5402 if (split_ret == FAIL)
5403 continue;
5404
Bram Moolenaarc667da52019-11-30 20:52:27 +01005405 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005408 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005410 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 break;
5413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 if (swap_exists_action == SEA_QUIT)
5415 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005416#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005417 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005418
Bram Moolenaarc667da52019-11-30 20:52:27 +01005419 // Reset the error/interrupt/exception state here so that
5420 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005421 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005422#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005423
Bram Moolenaarc667da52019-11-30 20:52:27 +01005424 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 win_close(curwin, TRUE);
5426 --open_wins;
5427 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005428 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005429
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005430#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005431 // Restore the error/interrupt/exception state if not
5432 // discarded by a new aborting error, interrupt, or uncaught
5433 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005434 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005435#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 }
5437 else
5438 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 }
5440
5441 ui_breakcheck();
5442 if (got_int)
5443 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005444 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 break;
5446 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005447#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005448 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005449 if (aborting())
5450 break;
5451#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005452 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005453 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005454 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005457 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459
5460 /*
5461 * Close superfluous windows.
5462 */
5463 for (wp = lastwin; open_wins > count; )
5464 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005465 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 if (!win_valid(wp))
5468 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005469 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 wp = lastwin;
5471 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005472 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005474 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 --open_wins;
5476 wp = lastwin;
5477 }
5478 else
5479 {
5480 wp = wp->w_prev;
5481 if (wp == NULL)
5482 break;
5483 }
5484 }
5485}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005488static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005489
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490/*
5491 * do_modelines() - process mode lines for the current file
5492 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005493 * "flags" can be:
5494 * OPT_WINONLY only set options local to window
5495 * OPT_NOWIN don't set options local to window
5496 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 * Returns immediately if the "ml" option isn't set.
5498 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005500do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005502 linenr_T lnum;
5503 int nmlines;
5504 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505
5506 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5507 return;
5508
Bram Moolenaarc667da52019-11-30 20:52:27 +01005509 // Disallow recursive entry here. Can happen when executing a modeline
5510 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 if (entered)
5512 return;
5513
5514 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005515 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005517 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 nmlines = 0;
5519
Hu Jialun9dcd3492021-08-28 20:42:50 +02005520 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005522 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 nmlines = 0;
5524 --entered;
5525}
5526
Bram Moolenaarc667da52019-11-30 20:52:27 +01005527#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528
5529/*
5530 * chk_modeline() - check a single line for a mode string
5531 * Return FAIL if an error encountered.
5532 */
5533 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005534chk_modeline(
5535 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005536 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537{
5538 char_u *s;
5539 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005540 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 int prev;
5542 int vers;
5543 int end;
5544 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005545 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005546
Bram Moolenaare31ee862020-01-07 20:59:34 +01005547 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548
5549 prev = -1;
5550 for (s = ml_get(lnum); *s != NUL; ++s)
5551 {
5552 if (prev == -1 || vim_isspace(prev))
5553 {
5554 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5555 || STRNCMP(s, "vi:", (size_t)3) == 0)
5556 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005557 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005558 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 {
5560 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5561 e = s + 4;
5562 else
5563 e = s + 3;
5564 vers = getdigits(&e);
5565 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005566 && (s[0] != 'V'
5567 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 && (s[3] == ':'
5569 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5570 || (VIM_VERSION_100 < vers && s[3] == '<')
5571 || (VIM_VERSION_100 > vers && s[3] == '>')
5572 || (VIM_VERSION_100 == vers && s[3] == '=')))
5573 break;
5574 }
5575 }
5576 prev = *s;
5577 }
5578
5579 if (*s)
5580 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005581 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 ++s;
5583 while (s[-1] != ':');
5584
Bram Moolenaarc667da52019-11-30 20:52:27 +01005585 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 if (linecopy == NULL)
5587 return FAIL;
5588
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005589 // prepare for emsg()
5590 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005591 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592
5593 end = FALSE;
5594 while (end == FALSE)
5595 {
5596 s = skipwhite(s);
5597 if (*s == NUL)
5598 break;
5599
5600 /*
5601 * Find end of set command: ':' or end of line.
5602 * Skip over "\:", replacing it with ":".
5603 */
5604 for (e = s; *e != ':' && *e != NUL; ++e)
5605 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005606 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 if (*e == NUL)
5608 end = TRUE;
5609
5610 /*
5611 * If there is a "set" command, require a terminating ':' and
5612 * ignore the stuff after the ':'.
5613 * "vi:set opt opt opt: foo" -- foo not interpreted
5614 * "vi:opt opt opt: foo" -- foo interpreted
5615 * Accept "se" for compatibility with Elvis.
5616 */
5617 if (STRNCMP(s, "set ", (size_t)4) == 0
5618 || STRNCMP(s, "se ", (size_t)3) == 0)
5619 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005620 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 break;
5622 end = TRUE;
5623 s = vim_strchr(s, ' ') + 1;
5624 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005625 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626
Bram Moolenaarc667da52019-11-30 20:52:27 +01005627 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005629 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005630
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005631 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005632 current_sctx.sc_version = 1;
5633#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005634 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005635 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005636 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005638
Bram Moolenaar5958f952018-11-20 04:25:21 +01005639 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005640 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005641
Bram Moolenaara3227e22006-03-08 21:32:40 +00005642 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005643
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005644 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005645 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005646 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647 break;
5648 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005649 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 }
5651
Bram Moolenaare31ee862020-01-07 20:59:34 +01005652 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005653 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 vim_free(linecopy);
5655 }
5656 return retval;
5657}
5658
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005659/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005660 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5661 */
5662 int
5663bt_normal(buf_T *buf)
5664{
5665 return buf != NULL && buf->b_p_bt[0] == NUL;
5666}
5667
Bram Moolenaar113e1072019-01-20 15:30:40 +01005668#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005669/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005670 * Return TRUE if "buf" is the quickfix buffer.
5671 */
5672 int
5673bt_quickfix(buf_T *buf)
5674{
5675 return buf != NULL && buf->b_p_bt[0] == 'q';
5676}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005677#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005678
Bram Moolenaar113e1072019-01-20 15:30:40 +01005679#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005680/*
5681 * Return TRUE if "buf" is a terminal buffer.
5682 */
5683 int
5684bt_terminal(buf_T *buf)
5685{
5686 return buf != NULL && buf->b_p_bt[0] == 't';
5687}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005688#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005689
5690/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005691 * Return TRUE if "buf" is a help buffer.
5692 */
5693 int
5694bt_help(buf_T *buf)
5695{
5696 return buf != NULL && buf->b_help;
5697}
5698
5699/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005700 * Return TRUE if "buf" is a prompt buffer.
5701 */
5702 int
5703bt_prompt(buf_T *buf)
5704{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005705 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5706}
5707
Dominique Pelle748b3082022-01-08 12:41:16 +00005708#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005709/*
5710 * Return TRUE if "buf" is a buffer for a popup window.
5711 */
5712 int
5713bt_popup(buf_T *buf)
5714{
5715 return buf != NULL && buf->b_p_bt != NULL
5716 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005717}
Dominique Pelle748b3082022-01-08 12:41:16 +00005718#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005719
5720/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005721 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5722 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005723 */
5724 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005725bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005726{
5727 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5728 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005729 || buf->b_p_bt[0] == 't'
5730 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005731}
5732
Dominique Pelle748b3082022-01-08 12:41:16 +00005733#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005734/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005735 * Return TRUE if "buf" has 'buftype' set to "nofile".
5736 */
5737 int
5738bt_nofile(buf_T *buf)
5739{
5740 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5741}
Dominique Pelle748b3082022-01-08 12:41:16 +00005742#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005743
5744/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005745 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5746 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005747 */
5748 int
5749bt_dontwrite(buf_T *buf)
5750{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005751 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005752 || buf->b_p_bt[0] == 't'
5753 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005754}
5755
Bram Moolenaar113e1072019-01-20 15:30:40 +01005756#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005757 int
5758bt_dontwrite_msg(buf_T *buf)
5759{
5760 if (bt_dontwrite(buf))
5761 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005762 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005763 return TRUE;
5764 }
5765 return FALSE;
5766}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005767#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005768
5769/*
5770 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5771 * and 'bufhidden'.
5772 */
5773 int
5774buf_hide(buf_T *buf)
5775{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005776 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005777 switch (buf->b_p_bh[0])
5778 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005779 case 'u': // "unload"
5780 case 'w': // "wipe"
5781 case 'd': return FALSE; // "delete"
5782 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005783 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005784 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005785}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786
5787/*
5788 * Return special buffer name.
5789 * Returns NULL when the buffer has a normal file name.
5790 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005791 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005792buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005794#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005796 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005797 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005798 * Differentiate between the quickfix and location list buffers using
5799 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005800 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005801 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005802 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005803 else
5804 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005807
Bram Moolenaarc667da52019-11-30 20:52:27 +01005808 // There is no _file_ when 'buftype' is "nofile", b_sfname
5809 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005810 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005812#ifdef FEAT_TERMINAL
5813 if (buf->b_term != NULL)
5814 return term_get_status_text(buf->b_term);
5815#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005816 if (buf->b_fname != NULL)
5817 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005818#ifdef FEAT_JOB_CHANNEL
5819 if (bt_prompt(buf))
5820 return (char_u *)_("[Prompt]");
5821#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005822#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005823 if (bt_popup(buf))
5824 return (char_u *)_("[Popup]");
5825#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005826 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005828
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005830 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 return NULL;
5832}
5833
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005835 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5836 */
5837 char_u *
5838buf_get_fname(buf_T *buf)
5839{
5840 if (buf->b_fname == NULL)
5841 return (char_u *)_("[No Name]");
5842 return buf->b_fname;
5843}
5844
5845/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5847 */
5848 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005849set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850{
5851 if (on != curbuf->b_p_bl)
5852 {
5853 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 if (on)
5855 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5856 else
5857 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 }
5859}
5860
5861/*
5862 * Read the file for "buf" again and check if the contents changed.
5863 * Return TRUE if it changed or this could not be checked.
5864 */
5865 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005866buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867{
5868 buf_T *newbuf;
5869 int differ = TRUE;
5870 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 exarg_T ea;
5873
Bram Moolenaarc667da52019-11-30 20:52:27 +01005874 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5876 if (newbuf == NULL)
5877 return TRUE;
5878
Bram Moolenaarc667da52019-11-30 20:52:27 +01005879 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 if (prep_exarg(&ea, buf) == FAIL)
5881 {
5882 wipe_buffer(newbuf, FALSE);
5883 return TRUE;
5884 }
5885
Bram Moolenaarc667da52019-11-30 20:52:27 +01005886 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888
Bram Moolenaar4770d092006-01-12 23:22:24 +00005889 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 && readfile(buf->b_ffname, buf->b_fname,
5891 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5892 &ea, READ_NEW | READ_DUMMY) == OK)
5893 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005894 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5896 {
5897 differ = FALSE;
5898 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5899 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5900 {
5901 differ = TRUE;
5902 break;
5903 }
5904 }
5905 }
5906 vim_free(ea.cmd);
5907
Bram Moolenaarc667da52019-11-30 20:52:27 +01005908 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910
Bram Moolenaarc667da52019-11-30 20:52:27 +01005911 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 wipe_buffer(newbuf, FALSE);
5913
5914 return differ;
5915}
5916
5917/*
5918 * Wipe out a buffer and decrement the last buffer number if it was used for
5919 * this buffer. Call this to wipe out a temp buffer that does not contain any
5920 * marks.
5921 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005923wipe_buffer(
5924 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005925 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926{
5927 if (buf->b_fnum == top_file_num - 1)
5928 --top_file_num;
5929
Bram Moolenaarc667da52019-11-30 20:52:27 +01005930 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005931 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005932
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005933 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005934
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005936 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937}