blob: 2c8169478cbfa926732f8610ec16e8d5e97dfbd6 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
shadmansaleh30e3de22021-05-15 17:23:28 +020030
31#ifdef FEAT_EVAL
32// Determines how deeply nested %{} blocks will be evaluated in statusline.
33# define MAX_STL_EVAL_DEPTH 100
34#endif
35
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020036static void enter_buffer(buf_T *buf);
37static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020041static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
42static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
43static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +020047static int value_changed(char_u *str, char_u **last);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010048static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
49static void free_buffer(buf_T *);
50static void free_buffer_stuff(buf_T *buf, int free_options);
51static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar00d253e2020-04-06 22:13:01 +020059#define FOR_ALL_BUFS_FROM_LAST(buf) \
60 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
66
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020067// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020068static int buf_free_count = 0;
69
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020070static int top_file_num = 1; // highest file number
71static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
72
73/*
74 * Return the highest possible buffer number.
75 */
76 int
77get_highest_fnum(void)
78{
79 return top_file_num - 1;
80}
81
Bram Moolenaarc024b462019-06-08 18:07:21 +020082/*
83 * Read data from buffer for retrying.
84 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020085 static int
86read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010087 int read_stdin, // read file from stdin, otherwise fifo
88 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
89 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020090{
91 int retval = OK;
92 linenr_T line_count;
93
Bram Moolenaarc5935a82021-10-19 20:48:52 +010094 // Read from the buffer which the text is already filled in and append at
95 // the end. This makes it possible to retry when 'fileformat' or
96 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020097 line_count = curbuf->b_ml.ml_line_count;
98 retval = readfile(
99 read_stdin ? NULL : curbuf->b_ffname,
100 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100101 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200102 flags | READ_BUFFER);
103 if (retval == OK)
104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100105 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200106 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200107 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200108 }
109 else
110 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100111 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200112 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200113 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200114 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100115 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116 curwin->w_cursor.lnum = 1;
117 curwin->w_cursor.col = 0;
118
119 if (read_stdin)
120 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100121 // Set or reset 'modified' before executing autocommands, so that
122 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100123 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100125 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200126 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 if (retval == OK)
129 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100130#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100131 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100132 curbuf, &retval);
133#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100134 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200135#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100136 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200137 }
138 return retval;
139}
140
Dominique Pelle748b3082022-01-08 12:41:16 +0000141#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200143 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
144 */
145 void
146buffer_ensure_loaded(buf_T *buf)
147{
148 if (buf->b_ml.ml_mfp == NULL)
149 {
150 aco_save_T aco;
151
152 aucmd_prepbuf(&aco, buf);
Bram Moolenaar188639d2022-04-04 16:57:21 +0100153 if (swap_exists_action != SEA_READONLY)
154 swap_exists_action = SEA_NONE;
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200155 open_buffer(FALSE, NULL, 0);
156 aucmd_restbuf(&aco);
157 }
158}
Dominique Pelle748b3082022-01-08 12:41:16 +0000159#endif
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200160
161/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200162 * Open current buffer, that is: open the memfile and read the file into
163 * memory.
164 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 */
166 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100167open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100168 int read_stdin, // read file from stdin
169 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
Bram Moolenaarb1d2c812022-08-26 11:55:01 +0100170 int flags_arg) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171{
Bram Moolenaarb1d2c812022-08-26 11:55:01 +0100172 int flags = flags_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200174 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100175#ifdef FEAT_SYN_HL
176 long old_tw = curbuf->b_p_tw;
177#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200178 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100180 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
181 // When re-entering the same buffer, it should not change, because the
182 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 if (readonlymode && curbuf->b_ffname != NULL
184 && (curbuf->b_flags & BF_NEVERLOADED))
185 curbuf->b_p_ro = TRUE;
186
Bram Moolenaar4770d092006-01-12 23:22:24 +0000187 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100189 // There MUST be a memfile, otherwise we can't do anything
190 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100191 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200192 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 if (curbuf->b_ml.ml_mfp != NULL)
194 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100195 // If there is no memfile at all, exit.
196 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 if (curbuf == NULL)
198 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000199 emsg(_(e_cannot_allocate_any_buffer_exiting));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200200
201 // Don't try to do any saving, with "curbuf" NULL almost nothing
202 // will work.
203 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 getout(2);
205 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200206
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000207 emsg(_(e_cannot_allocate_buffer_using_other_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100209#ifdef FEAT_SYN_HL
210 if (old_tw != curbuf->b_p_tw)
211 check_colorcolumn(curwin);
212#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 return FAIL;
214 }
215
Bram Moolenaarc667da52019-11-30 20:52:27 +0100216 // The autocommands in readfile() may change the buffer, but only AFTER
217 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200218 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
Bram Moolenaarc667da52019-11-30 20:52:27 +0100221 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100222 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223
Bram Moolenaarb1d2c812022-08-26 11:55:01 +0100224 // A buffer without an actual file should not use the buffer name to read a
225 // file.
226 if (bt_quickfix(curbuf) || bt_nofilename(curbuf))
227 flags |= READ_NOFILE;
228
Bram Moolenaar2eddbac2022-08-25 12:45:21 +0100229 // Read the file if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 if (curbuf->b_ffname != NULL
231#ifdef FEAT_NETBEANS_INTG
232 && netbeansReadFile
233#endif
234 )
235 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100236 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200237#ifdef UNIX
238 int save_bin = curbuf->b_p_bin;
239 int perm;
240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241#ifdef FEAT_NETBEANS_INTG
242 int oldFire = netbeansFireChanges;
243
244 netbeansFireChanges = 0;
245#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200246#ifdef UNIX
247 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200248 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200249 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200250# ifdef OPEN_CHR_FILES
251 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
252# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200253 ))
254 read_fifo = TRUE;
255 if (read_fifo)
256 curbuf->b_p_bin = TRUE;
257#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100258 if (shortmess(SHM_FILEINFO))
259 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200261 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200262 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
263#ifdef UNIX
264 if (read_fifo)
265 {
266 curbuf->b_p_bin = save_bin;
267 if (retval == OK)
268 retval = read_buffer(FALSE, eap, flags);
269 }
270#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100271 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272#ifdef FEAT_NETBEANS_INTG
273 netbeansFireChanges = oldFire;
274#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100275 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200276 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 fix_help_buffer();
278 }
279 else if (read_stdin)
280 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200281 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100283 // First read the text in binary mode into the buffer.
284 // Then read from that same buffer and append at the end. This makes
285 // it possible to retry when 'fileformat' or 'fileencoding' was
286 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 curbuf->b_p_bin = TRUE;
288 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200289 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
290 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 curbuf->b_p_bin = save_bin;
292 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200293 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 }
295
Bram Moolenaarc667da52019-11-30 20:52:27 +0100296 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100298 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100300 parse_cino(curbuf);
301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100303 // Set/reset the Changed flag first, autocmds may change the buffer.
304 // Apply the automatic commands, before processing the modelines.
305 // So the modelines have priority over autocommands.
306 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100307 // When reading stdin, the buffer contents always needs writing, so set
308 // the changed flag. Unless in readonly mode: "ls | gview -".
309 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000310 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100311 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100312#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000315 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100317 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200318 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100319 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320
Bram Moolenaarc667da52019-11-30 20:52:27 +0100321 // Set last_changedtick to avoid triggering a TextChanged autocommand right
322 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100323 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100324 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100325 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100326
Bram Moolenaarc667da52019-11-30 20:52:27 +0100327 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328#ifdef FEAT_EVAL
329 if (aborting())
330#else
331 if (got_int)
332#endif
333 curbuf->b_flags |= BF_READERR;
334
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000335#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100336 // Need to update automatic folding. Do this before the autocommands,
337 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000338 foldUpdateAll(curwin);
339#endif
340
Bram Moolenaarc667da52019-11-30 20:52:27 +0100341 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 if (!(curwin->w_valid & VALID_TOPLINE))
343 {
344 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100347#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100349#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100351#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353#endif
354
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100355 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100357 // The autocommands may have changed the current buffer. Apply the
358 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200359 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 {
361 aco_save_T aco;
362
Bram Moolenaarc667da52019-11-30 20:52:27 +0100363 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200364 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000365 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
367
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100368 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100369#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100370 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
371 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100372#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100373 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375
Bram Moolenaarc667da52019-11-30 20:52:27 +0100376 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 aucmd_restbuf(&aco);
378 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 }
380
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 return retval;
382}
383
384/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200385 * Store "buf" in "bufref" and set the free count.
386 */
387 void
388set_bufref(bufref_T *bufref, buf_T *buf)
389{
390 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200391 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200392 bufref->br_buf_free_count = buf_free_count;
393}
394
395/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200396 * Return TRUE if "bufref->br_buf" points to the same buffer as when
397 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200398 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200399 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
400 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200401 */
402 int
403bufref_valid(bufref_T *bufref)
404{
405 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200406 ? TRUE : buf_valid(bufref->br_buf)
407 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200408}
409
410/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200412 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 */
414 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100415buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416{
417 buf_T *bp;
418
Bram Moolenaarc667da52019-11-30 20:52:27 +0100419 // Assume that we more often have a recent buffer, start with the last
420 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200421 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 if (bp == buf)
423 return TRUE;
424 return FALSE;
425}
426
427/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200428 * A hash table used to quickly lookup a buffer by its number.
429 */
430static hashtab_T buf_hashtab;
431
432 static void
433buf_hashtab_add(buf_T *buf)
434{
435 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
436 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000437 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200438}
439
440 static void
441buf_hashtab_remove(buf_T *buf)
442{
443 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
444
445 if (!HASHITEM_EMPTY(hi))
446 hash_remove(&buf_hashtab, hi);
447}
448
Bram Moolenaar94f01952018-09-01 15:30:03 +0200449/*
450 * Return TRUE when buffer "buf" can be unloaded.
451 * Give an error message and return FALSE when the buffer is locked or the
452 * screen is being redrawn and the buffer is in a window.
453 */
454 static int
455can_unload_buffer(buf_T *buf)
456{
457 int can_unload = !buf->b_locked;
458
459 if (can_unload && updating_screen)
460 {
461 win_T *wp;
462
463 FOR_ALL_WINDOWS(wp)
464 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200465 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200466 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200467 break;
468 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200469 }
470 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000471 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200472 return can_unload;
473}
Bram Moolenaara997b452018-04-17 23:24:06 +0200474
Bram Moolenaar480778b2016-07-14 22:09:39 +0200475/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 * Close the link to a buffer.
477 * "action" is used when there is no longer a window for the buffer.
478 * It can be:
479 * 0 buffer becomes hidden
480 * DOBUF_UNLOAD buffer is unloaded
481 * DOBUF_DELETE buffer is unloaded and removed from buffer list
482 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200483 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 * When doing all but the first one on the current buffer, the caller should
485 * get a new buffer very soon!
486 *
487 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100488 *
489 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
490 * cause there to be only one window with this buffer. e.g. when ":quit" is
491 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100492 *
493 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100494 *
495 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100497 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100498close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100499 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100500 buf_T *buf,
501 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100502 int abort_if_last,
503 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100506 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200507 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100508 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200509 win_T *the_curwin = curwin;
510 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200512 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
513 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514
Bram Moolenaarcee52202020-03-11 14:19:58 +0100515 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100516
517 // Force unloading or deleting when 'bufhidden' says so.
518 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
519 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100520 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200521 {
522 del_buf = TRUE;
523 unload_buf = TRUE;
524 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100525 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200526 {
527 del_buf = TRUE;
528 unload_buf = TRUE;
529 wipe_buf = TRUE;
530 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100531 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200532 unload_buf = TRUE;
533
Bram Moolenaar94053a52017-08-01 21:44:33 +0200534#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200535 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200536 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100537 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200538 if (term_job_running(buf->b_term))
539 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200540 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200541 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200542 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100543 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200544
Bram Moolenaarc667da52019-11-30 20:52:27 +0100545 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200546 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200547 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200548 else
549 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100550 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200551 del_buf = FALSE;
552 unload_buf = FALSE;
553 }
554 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100555 else if (buf->b_p_bh[0] == 'h' && !del_buf)
556 {
557 // Hide a terminal buffer.
558 unload_buf = FALSE;
559 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200560 else
561 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100562 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200563 del_buf = TRUE;
564 unload_buf = TRUE;
565 wipe_buf = TRUE;
566 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100567 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200568 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570
Bram Moolenaarc667da52019-11-30 20:52:27 +0100571 // Disallow deleting the buffer when it is locked (already being closed or
572 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200573 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100574 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200575
Bram Moolenaarc667da52019-11-30 20:52:27 +0100576 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200577 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100579 // Set b_last_cursor when closing the last window for the buffer.
580 // Remember the last cursor position and window options of the buffer.
581 // This used to be only for the current window, but then options like
582 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 if (buf->b_nwindows == 1)
584 set_last_cursor(win);
585 buflist_setfpos(buf, win,
586 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
587 win->w_cursor.col, TRUE);
588 }
589
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200590 set_bufref(&bufref, buf);
591
Bram Moolenaarc667da52019-11-30 20:52:27 +0100592 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 if (buf->b_nwindows == 1)
594 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200595 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100596 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200597 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
598 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200599 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100600 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100601 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200602aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000603 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100604 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100605 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200606 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100607 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200608 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100609 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200610 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611
Bram Moolenaarc667da52019-11-30 20:52:27 +0100612 // When the buffer becomes hidden, but is not unloaded, trigger
613 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 if (!unload_buf)
615 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200616 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100617 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200618 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
619 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200620 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100621 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200622 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200623 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100624 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200625 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100626 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200627 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100629#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100630 // autocmds may abort script processing
631 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100632 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100633#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200635
Bram Moolenaarc667da52019-11-30 20:52:27 +0100636 // If the buffer was in curwin and the window has changed, go back to that
637 // window, if it still exists. This avoids that ":edit x" triggering a
638 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200639 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
640 {
641 block_autocmds();
642 goto_tabpage_win(the_curtab, the_curwin);
643 unblock_autocmds();
644 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200645
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647
Bram Moolenaarc667da52019-11-30 20:52:27 +0100648 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 if (buf->b_nwindows > 0)
650 --buf->b_nwindows;
651
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100652#ifdef FEAT_DIFF
653 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100654 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100655#endif
656
Bram Moolenaarc667da52019-11-30 20:52:27 +0100657 // Return when a window is displaying the buffer or when it's not
658 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100660 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661
Bram Moolenaarc667da52019-11-30 20:52:27 +0100662 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 if (buf->b_ffname == NULL)
664 del_buf = TRUE;
665
Bram Moolenaarc667da52019-11-30 20:52:27 +0100666 // When closing the current buffer stop Visual mode before freeing
667 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200668 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200669#if defined(EXITFREE)
670 && !entered_free_all_mem
671#endif
672 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200673 end_visual_mode();
674
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100675 // Free all things allocated for this buffer.
676 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
677 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100678 // Remember if we are closing the current buffer. Restore the number of
679 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 is_curbuf = (buf == curbuf);
681 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100683 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100684 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100685 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686
Bram Moolenaarc667da52019-11-30 20:52:27 +0100687 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200688 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100689 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100690#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100691 // autocmds may abort script processing
692 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100693 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100696 // It's possible that autocommands change curbuf to the one being deleted.
697 // This might cause the previous curbuf to be deleted unexpectedly. But
698 // in some cases it's OK to delete the curbuf, because a new one is
699 // obtained anyway. Therefore only return if curbuf changed to the
700 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100702 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200703
Bram Moolenaar4033c552017-09-16 20:54:51 +0200704 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100705 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200706
Bram Moolenaarc667da52019-11-30 20:52:27 +0100707 // Autocommands may have opened or closed windows for this buffer.
708 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200709 if (buf->b_nwindows > 0)
710 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 /*
713 * Remove the buffer from the list.
714 */
715 if (wipe_buf)
716 {
Bram Moolenaar347538f2022-03-26 16:28:06 +0000717 // Do not wipe out the buffer if it is used in a window.
718 if (buf->b_nwindows > 0)
719 return FALSE;
720
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200721 if (action == DOBUF_WIPE_REUSE)
722 {
723 // we can re-use this buffer number, store it
724 if (buf_reuse.ga_itemsize == 0)
725 ga_init2(&buf_reuse, sizeof(int), 50);
726 if (ga_grow(&buf_reuse, 1) == OK)
727 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
728 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200729 if (buf->b_sfname != buf->b_ffname)
730 VIM_CLEAR(buf->b_sfname);
731 else
732 buf->b_sfname = NULL;
733 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 if (buf->b_prev == NULL)
735 firstbuf = buf->b_next;
736 else
737 buf->b_prev->b_next = buf->b_next;
738 if (buf->b_next == NULL)
739 lastbuf = buf->b_prev;
740 else
741 buf->b_next->b_prev = buf->b_prev;
742 free_buffer(buf);
743 }
744 else
745 {
746 if (del_buf)
747 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100748 // Free all internal variables and reset option values, to make
749 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 free_buffer_stuff(buf, TRUE);
751
Bram Moolenaarc667da52019-11-30 20:52:27 +0100752 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
754
Bram Moolenaarc667da52019-11-30 20:52:27 +0100755 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 buf->b_p_initialized = FALSE;
757 }
758 buf_clear_file(buf);
759 if (del_buf)
760 buf->b_p_bl = FALSE;
761 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100762 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100763 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764}
765
766/*
767 * Make buffer not contain a file.
768 */
769 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100770buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771{
772 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200773 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 buf->b_p_eol = TRUE;
776 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000778 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100780 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781#ifdef FEAT_NETBEANS_INTG
782 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783#endif
784}
785
786/*
787 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200788 * the file. Careful: get here with "curwin" NULL when exiting.
789 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100790 * BFA_DEL buffer is going to be deleted
791 * BFA_WIPE buffer is going to be wiped out
792 * BFA_KEEP_UNDO do not free undo information
793 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100796buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200799 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200800 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200801 win_T *the_curwin = curwin;
802 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803
Bram Moolenaarc667da52019-11-30 20:52:27 +0100804 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200805 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100806 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200807 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200808 if (buf->b_ml.ml_mfp != NULL)
809 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200810 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
811 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200812 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100813 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200814 return;
815 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200816 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200818 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
819 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200820 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100821 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 return;
823 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200824 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200826 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
827 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200828 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100829 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 return;
831 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200832 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100833 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200834
Bram Moolenaarc667da52019-11-30 20:52:27 +0100835 // If the buffer was in curwin and the window has changed, go back to that
836 // window, if it still exists. This avoids that ":edit x" triggering a
837 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200838 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
839 {
840 block_autocmds();
841 goto_tabpage_win(the_curtab, the_curwin);
842 unblock_autocmds();
843 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200844
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100845#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100846 // autocmds may abort script processing
847 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100851 // It's possible that autocommands change curbuf to the one being deleted.
852 // This might cause curbuf to be deleted unexpectedly. But in some cases
853 // it's OK to delete the curbuf, because a new one is obtained anyway.
854 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 if (buf == curbuf && !is_curbuf)
856 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100858 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200860#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100861 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200862 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100863 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200864#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000865
866#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100867 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000868 {
869 win_T *win;
870 tabpage_T *tp;
871
872 FOR_ALL_TAB_WINDOWS(tp, win)
873 if (win->w_buffer == buf)
874 clearFolding(win);
875 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000876#endif
877
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#ifdef FEAT_TCL
879 tcl_buffer_free(buf);
880#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100881 ml_close(buf, TRUE); // close and delete the memline/memfile
882 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200883 if ((flags & BFA_KEEP_UNDO) == 0)
884 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100885 u_blockfree(buf); // free the memory allocated for undo
886 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100889 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100891#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100892 clear_buf_prop_types(buf);
893#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100894 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895}
896
897/*
898 * Free a buffer structure and the things it contains related to the buffer
899 * itself (not the file, that must have been done already).
900 */
901 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100902free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200904 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200906#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100907 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200908 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200909 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200910 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200911#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200912#ifdef FEAT_LUA
913 lua_buffer_free(buf);
914#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000915#ifdef FEAT_MZSCHEME
916 mzscheme_buffer_free(buf);
917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918#ifdef FEAT_PERL
919 perl_buf_free(buf);
920#endif
921#ifdef FEAT_PYTHON
922 python_buffer_free(buf);
923#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200924#ifdef FEAT_PYTHON3
925 python3_buffer_free(buf);
926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927#ifdef FEAT_RUBY
928 ruby_buffer_free(buf);
929#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200930#ifdef FEAT_JOB_CHANNEL
931 channel_buffer_free(buf);
932#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200933#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200934 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200935#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200936#ifdef FEAT_JOB_CHANNEL
937 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200938 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200939 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200940#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200941
942 buf_hashtab_remove(buf);
943
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200944 aubuflocal_remove(buf);
945
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200946 if (autocmd_busy)
947 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100948 // Do not free the buffer structure while autocommands are executing,
949 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200950 buf->b_next = au_pending_free_buf;
951 au_pending_free_buf = buf;
952 }
953 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100954 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200955 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100956 if (curbuf == buf)
957 curbuf = NULL; // make clear it's not to be used
958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959}
960
961/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100962 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100963 */
964 static void
965init_changedtick(buf_T *buf)
966{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100967 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100968
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100969 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
970 di->di_tv.v_type = VAR_NUMBER;
971 di->di_tv.v_lock = VAR_FIXED;
972 di->di_tv.vval.v_number = 0;
973
Bram Moolenaar92769c32017-02-25 15:41:37 +0100974#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100975 STRCPY(buf->b_ct_di.di_key, "changedtick");
976 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100977#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100978}
979
980/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
982 */
983 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100984free_buffer_stuff(
985 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100986 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987{
988 if (free_options)
989 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100990 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200992#ifdef FEAT_SPELL
993 ga_clear(&buf->b_s.b_langp);
994#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 }
996#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100997 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100998 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100999
Bram Moolenaarc667da52019-11-30 20:52:27 +01001000 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +01001001 hash_init(&buf->b_vars->dv_hashtab);
1002 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001003 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +01001004 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001005 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001007 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001009 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001011#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001012 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001013#endif
Bram Moolenaar0c740e72022-07-25 19:07:04 +01001014#ifdef FEAT_PROP_POPUP
1015 ga_clear_strings(&buf->b_textprop_text);
1016#endif
zeertzjqc207fd22022-06-29 10:37:40 +01001017 map_clear_mode(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1018 map_clear_mode(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001019 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020}
1021
1022/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001023 * Free one wininfo_T.
1024 */
1025 void
1026free_wininfo(wininfo_T *wip)
1027{
1028 if (wip->wi_optset)
1029 {
1030 clear_winopt(&wip->wi_opt);
1031#ifdef FEAT_FOLDING
1032 deleteFoldRecurse(&wip->wi_folds);
1033#endif
1034 }
1035 vim_free(wip);
1036}
1037
1038/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 * Free the b_wininfo list for buffer "buf".
1040 */
1041 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001042clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043{
1044 wininfo_T *wip;
1045
1046 while (buf->b_wininfo != NULL)
1047 {
1048 wip = buf->b_wininfo;
1049 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001050 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 }
1052}
1053
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054/*
1055 * Go to another buffer. Handles the result of the ATTENTION dialog.
1056 */
1057 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001058goto_buffer(
1059 exarg_T *eap,
1060 int start,
1061 int dir,
1062 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001064 bufref_T old_curbuf;
Bram Moolenaar188639d2022-04-04 16:57:21 +01001065 int save_sea = swap_exists_action;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001066
1067 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068
Bram Moolenaar188639d2022-04-04 16:57:21 +01001069 if (swap_exists_action == SEA_NONE)
1070 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1072 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1074 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001075#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001076 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001077
Bram Moolenaarc667da52019-11-30 20:52:27 +01001078 // Reset the error/interrupt/exception state here so that
1079 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001080 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001081#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001082
Bram Moolenaarc667da52019-11-30 20:52:27 +01001083 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 win_close(curwin, TRUE);
Bram Moolenaar188639d2022-04-04 16:57:21 +01001085 swap_exists_action = save_sea;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001086 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001087
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001088#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001089 // Restore the error/interrupt/exception state if not discarded by a
1090 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001092#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 }
1094 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001095 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001096}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098/*
1099 * Handle the situation of swap_exists_action being set.
1100 * It is allowed for "old_curbuf" to be NULL or invalid.
1101 */
1102 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001103handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001105#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001106 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001107#endif
1108#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001109 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001110#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001111 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001112
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 if (swap_exists_action == SEA_QUIT)
1114 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001115#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001116 // Reset the error/interrupt/exception state here so that
1117 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001118 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001119#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001120
Bram Moolenaarc667da52019-11-30 20:52:27 +01001121 // User selected Quit at ATTENTION prompt. Go back to previous
1122 // buffer. If that buffer is gone or the same as the current one,
1123 // open a new, empty buffer.
1124 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001125 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001126 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001127 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1128 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001129 {
1130 // Block autocommands here because curwin->w_buffer is NULL.
1131 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001132 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001133 unblock_autocmds();
1134 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001135 else
1136 buf = old_curbuf->br_buf;
1137 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001138 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001139 int old_msg_silent = msg_silent;
1140
1141 if (shortmess(SHM_FILEINFO))
1142 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001143 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001144 // restore msg_silent, so that the command line will be shown
1145 msg_silent = old_msg_silent;
1146
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001147#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001148 if (old_tw != curbuf->b_p_tw)
1149 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001150#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001151 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001152 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001153
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001154#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001155 // Restore the error/interrupt/exception state if not discarded by a
1156 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001157 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 }
1160 else if (swap_exists_action == SEA_RECOVER)
1161 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001162#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001163 // Reset the error/interrupt/exception state here so that
1164 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001165 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001166#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001167
Bram Moolenaarc667da52019-11-30 20:52:27 +01001168 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001170 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001171 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001173 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001174
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001175#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001176 // Restore the error/interrupt/exception state if not discarded by a
1177 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001178 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 }
1181 swap_exists_action = SEA_NONE;
1182}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001185 * Make the current buffer empty.
1186 * Used when it is wiped out and it's the last buffer.
1187 */
1188 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001189empty_curbuf(
1190 int close_others,
1191 int forceit,
1192 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193{
1194 int retval;
1195 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001196 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001197
1198 if (action == DOBUF_UNLOAD)
1199 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001200 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001201 return FAIL;
1202 }
1203
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001204 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001205 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001206 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001207 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001208
1209 setpcmark();
1210 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1211 forceit ? ECMD_FORCEIT : 0, curwin);
1212
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001213 // do_ecmd() may create a new buffer, then we have to delete
1214 // the old one. But do_ecmd() may have done that already, check
1215 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001216 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001217 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001218 if (!close_others)
1219 need_fileinfo = FALSE;
1220 return retval;
1221}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001222
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223/*
1224 * Implementation of the commands for the buffer list.
1225 *
1226 * action == DOBUF_GOTO go to specified buffer
1227 * action == DOBUF_SPLIT split window and go to specified buffer
1228 * action == DOBUF_UNLOAD unload specified buffer(s)
1229 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1230 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001231 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 *
1233 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1234 * start == DOBUF_FIRST go to "count" buffer from first buffer
1235 * start == DOBUF_LAST go to "count" buffer from last buffer
1236 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1237 *
1238 * Return FAIL or OK.
1239 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001240 static int
1241do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001242 int action,
1243 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001244 int dir, // FORWARD or BACKWARD
1245 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001246 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247{
1248 buf_T *buf;
1249 buf_T *bp;
1250 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001251 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252
1253 switch (start)
1254 {
1255 case DOBUF_FIRST: buf = firstbuf; break;
1256 case DOBUF_LAST: buf = lastbuf; break;
1257 default: buf = curbuf; break;
1258 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001259 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
1261 while (count-- > 0)
1262 {
1263 do
1264 {
1265 buf = buf->b_next;
1266 if (buf == NULL)
1267 buf = firstbuf;
1268 }
1269 while (buf != curbuf && !bufIsChanged(buf));
1270 }
1271 if (!bufIsChanged(buf))
1272 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001273 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 return FAIL;
1275 }
1276 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001277 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 {
1279 while (buf != NULL && buf->b_fnum != count)
1280 buf = buf->b_next;
1281 }
1282 else
1283 {
1284 bp = NULL;
1285 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1286 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001287 // remember the buffer where we start, we come back there when all
1288 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (bp == NULL)
1290 bp = buf;
1291 if (dir == FORWARD)
1292 {
1293 buf = buf->b_next;
1294 if (buf == NULL)
1295 buf = firstbuf;
1296 }
1297 else
1298 {
1299 buf = buf->b_prev;
1300 if (buf == NULL)
1301 buf = lastbuf;
1302 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001303 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 if (unload || buf->b_p_bl)
1305 {
1306 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001307 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 }
1309 if (bp == buf)
1310 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001311 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001312 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 return FAIL;
1314 }
1315 }
1316 }
1317
Bram Moolenaarc667da52019-11-30 20:52:27 +01001318 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 {
1320 if (start == DOBUF_FIRST)
1321 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001322 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001324 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 }
1326 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001327 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001329 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 return FAIL;
1331 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001332#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001333 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf) && !bt_terminal(buf))
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001334 return OK;
1335#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336
1337#ifdef FEAT_GUI
1338 need_mouse_correct = TRUE;
1339#endif
1340
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001342 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 */
1344 if (unload)
1345 {
1346 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001347 bufref_T bufref;
1348
Bram Moolenaar94f01952018-09-01 15:30:03 +02001349 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001350 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001351
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001352 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353
Bram Moolenaarc667da52019-11-30 20:52:27 +01001354 // When unloading or deleting a buffer that's already unloaded and
1355 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001356 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1357 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return FAIL;
1359
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001360 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001362#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001363 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
1365 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001366 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001367 // Autocommand deleted buffer, oops! It's not changed
1368 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001370 // If it's still changed fail silently, the dialog already
1371 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001372 if (bufIsChanged(buf))
1373 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001375 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001376#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001378 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 buf->b_fnum);
1380 return FAIL;
1381 }
1382 }
1383
Bram Moolenaarc667da52019-11-30 20:52:27 +01001384 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001385 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001386 end_visual_mode();
1387
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001388 // If deleting the last (listed) buffer, make it empty.
1389 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001390 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 if (bp->b_p_bl && bp != buf)
1392 break;
1393 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001394 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001396 // If the deleted buffer is the current one, close the current window
1397 // (unless it's the only window). Repeat this so long as we end up in
1398 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001399 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001400 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001401 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001402 {
1403 if (win_close(curwin, FALSE) == FAIL)
1404 break;
1405 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001407 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 if (buf != curbuf)
1409 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001410 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001411 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001412 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 return OK;
1414 }
1415
1416 /*
1417 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001418 * There should be another, otherwise it would have been handled
1419 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001420 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 * Then prefer the buffer we most recently visited.
1422 * Else try to find one that is loaded, after the current buffer,
1423 * then before the current buffer.
1424 * Finally use any buffer.
1425 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001426 buf = NULL; // selected buffer
1427 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001428 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1429 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001430 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 {
1432 int jumpidx;
1433
1434 jumpidx = curwin->w_jumplistidx - 1;
1435 if (jumpidx < 0)
1436 jumpidx = curwin->w_jumplistlen - 1;
1437
1438 forward = jumpidx;
1439 while (jumpidx != curwin->w_jumplistidx)
1440 {
1441 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1442 if (buf != NULL)
1443 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001444 // Skip current and unlisted bufs. Also skip a quickfix
1445 // buffer, it might be deleted soon.
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001446 if (buf == curbuf || !buf->b_p_bl || bt_quickfix(buf))
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001447 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 else if (buf->b_ml.ml_mfp == NULL)
1449 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001450 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 if (bp == NULL)
1452 bp = buf;
1453 buf = NULL;
1454 }
1455 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001456 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001458 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1460 break;
1461 if (--jumpidx < 0)
1462 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001463 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 break;
1465 }
1466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467
Bram Moolenaarc667da52019-11-30 20:52:27 +01001468 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 {
1470 forward = TRUE;
1471 buf = curbuf->b_next;
1472 for (;;)
1473 {
1474 if (buf == NULL)
1475 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001476 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 break;
1478 buf = curbuf->b_prev;
1479 forward = FALSE;
1480 continue;
1481 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001482 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001483 if (buf->b_help == curbuf->b_help && buf->b_p_bl
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001484 && !bt_quickfix(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001486 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001488 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 bp = buf;
1490 }
1491 if (forward)
1492 buf = buf->b_next;
1493 else
1494 buf = buf->b_prev;
1495 }
1496 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001497 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001499 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001501 FOR_ALL_BUFFERS(buf)
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001502 if (buf->b_p_bl && buf != curbuf && !bt_quickfix(buf))
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 (bt_quickfix(buf))
1512 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 }
1514 }
1515
Bram Moolenaara02471e2014-01-10 16:43:14 +01001516 if (buf == NULL)
1517 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001518 // Autocommands must have wiped out all other buffers. Only option
1519 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001520 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001521 }
1522
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001524 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001526 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001528 // If 'switchbuf' contains "useopen": jump to first window containing
1529 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001530 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001531 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001532 // If 'switchbuf' contains "usetab": jump to first window in any tab
1533 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001534 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 return OK;
1536 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 return FAIL;
1538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539
Bram Moolenaarc667da52019-11-30 20:52:27 +01001540 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (buf == curbuf)
1542 return OK;
1543
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001544 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001545 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 {
1547#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001548 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001550 bufref_T bufref;
1551
1552 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001554 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001555 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 }
1558 if (bufIsChanged(curbuf))
1559#endif
1560 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001561 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 return FAIL;
1563 }
1564 }
1565
Bram Moolenaarc667da52019-11-30 20:52:27 +01001566 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 set_curbuf(buf, action);
1568
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001570 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001572#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001573 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 return FAIL;
1575#endif
1576
1577 return OK;
1578}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001580 int
1581do_buffer(
1582 int action,
1583 int start,
1584 int dir, // FORWARD or BACKWARD
1585 int count, // buffer number or number of buffers
1586 int forceit) // TRUE when using !
1587{
1588 return do_buffer_ext(action, start, dir, count,
1589 forceit ? DOBUF_FORCEIT : 0);
1590}
1591
1592/*
1593 * do_bufdel() - delete or unload buffer(s)
1594 *
1595 * addr_count == 0: ":bdel" - delete current buffer
1596 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1597 * buffer "end_bnr", then any other arguments.
1598 * addr_count == 2: ":N,N bdel" - delete buffers in range
1599 *
1600 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1601 * DOBUF_DEL (":bdel")
1602 *
1603 * Returns error message or NULL
1604 */
1605 char *
1606do_bufdel(
1607 int command,
1608 char_u *arg, // pointer to extra arguments
1609 int addr_count,
1610 int start_bnr, // first buffer number in a range
1611 int end_bnr, // buffer nr or last buffer nr in a range
1612 int forceit)
1613{
1614 int do_current = 0; // delete current buffer?
1615 int deleted = 0; // number of buffers deleted
1616 char *errormsg = NULL; // return value
1617 int bnr; // buffer number
1618 char_u *p;
1619
1620 if (addr_count == 0)
1621 {
1622 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1623 }
1624 else
1625 {
1626 if (addr_count == 2)
1627 {
1628 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001629 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001630 bnr = start_bnr;
1631 }
1632 else // addr_count == 1
1633 bnr = end_bnr;
1634
1635 for ( ;!got_int; ui_breakcheck())
1636 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001637 // Delete the current buffer last, otherwise when the
1638 // current buffer is deleted, the next buffer becomes
1639 // the current one and will be loaded, which may then
1640 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001641 if (bnr == curbuf->b_fnum)
1642 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001643 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001644 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1645 ++deleted;
1646
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001647 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001648 if (addr_count == 2)
1649 {
1650 if (++bnr > end_bnr)
1651 break;
1652 }
1653 else // addr_count == 1
1654 {
1655 arg = skipwhite(arg);
1656 if (*arg == NUL)
1657 break;
1658 if (!VIM_ISDIGIT(*arg))
1659 {
1660 p = skiptowhite_esc(arg);
1661 bnr = buflist_findpat(arg, p,
1662 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1663 FALSE, FALSE);
1664 if (bnr < 0) // failed
1665 break;
1666 arg = p;
1667 }
1668 else
1669 bnr = getdigits(&arg);
1670 }
1671 }
1672 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1673 FORWARD, do_current, forceit) == OK)
1674 ++deleted;
1675
1676 if (deleted == 0)
1677 {
1678 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001679 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001680 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001681 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001682 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001683 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001684 errormsg = (char *)IObuff;
1685 }
1686 else if (deleted >= p_report)
1687 {
1688 if (command == DOBUF_UNLOAD)
1689 smsg(NGETTEXT("%d buffer unloaded",
1690 "%d buffers unloaded", deleted), deleted);
1691 else if (command == DOBUF_DEL)
1692 smsg(NGETTEXT("%d buffer deleted",
1693 "%d buffers deleted", deleted), deleted);
1694 else
1695 smsg(NGETTEXT("%d buffer wiped out",
1696 "%d buffers wiped out", deleted), deleted);
1697 }
1698 }
1699
1700
1701 return errormsg;
1702}
1703
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704/*
1705 * Set current buffer to "buf". Executes autocommands and closes current
1706 * buffer. "action" tells how to close the current buffer:
1707 * DOBUF_GOTO free or hide it
1708 * DOBUF_SPLIT nothing
1709 * DOBUF_UNLOAD unload it
1710 * DOBUF_DEL delete it
1711 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001712 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 */
1714 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001715set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716{
1717 buf_T *prevbuf;
1718 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001719 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001720#ifdef FEAT_SYN_HL
1721 long old_tw = curbuf->b_p_tw;
1722#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001723 bufref_T newbufref;
1724 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001725 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
1727 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001728 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001729 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1730 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731
Bram Moolenaarc667da52019-11-30 20:52:27 +01001732 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734
Bram Moolenaarc667da52019-11-30 20:52:27 +01001735 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001737 set_bufref(&prevbufref, prevbuf);
1738 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001740 // Autocommands may delete the current buffer and/or the buffer we want to
1741 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001742 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001743 || (bufref_valid(&prevbufref)
1744 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001745#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001746 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001748 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001750#ifdef FEAT_SYN_HL
1751 if (prevbuf == curwin->w_buffer)
1752 reset_synblock(curwin);
1753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001755 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001756#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001757 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001759 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001761 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001762 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001763
Bram Moolenaare615db02022-01-20 21:00:54 +00001764 // Do not sync when in Insert mode and the buffer is open in
1765 // another window, might be a timer doing something in another
1766 // window.
1767 if (prevbuf == curbuf
Bram Moolenaar24959102022-05-07 20:01:16 +01001768 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001769 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1771 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001772 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001773 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1774 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001775 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001776 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001777 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001780 // An autocommand may have deleted "buf", already entered it (e.g., when
1781 // it did ":bunload") or aborted the script processing.
1782 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001783 valid = buf_valid(buf);
1784 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001785#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001786 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001788 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001789 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001790 // If the buffer is not valid but curwin->w_buffer is NULL we must
1791 // enter some buffer. Using the last one is hopefully OK.
1792 if (!valid)
1793 enter_buffer(lastbuf);
1794 else
1795 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001796#ifdef FEAT_SYN_HL
1797 if (old_tw != curbuf->b_p_tw)
1798 check_colorcolumn(curwin);
1799#endif
1800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801}
1802
1803/*
1804 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001805 * Old curbuf must have been abandoned already! This also means "curbuf" may
1806 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001808 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001809enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810{
Bram Moolenaarcfeb8a52022-08-13 14:09:44 +01001811 // when closing the current buffer stop Visual mode
1812 if (VIsual_active
1813#if defined(EXITFREE)
1814 && !entered_free_all_mem
1815#endif
1816 )
1817 end_visual_mode();
1818
Bram Moolenaar010ee962019-09-25 20:37:36 +02001819 // Get the buffer in the current window.
1820 curwin->w_buffer = buf;
1821 curbuf = buf;
1822 ++curbuf->b_nwindows;
1823
1824 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1826 if (!buf->b_help)
1827 get_winopts(buf);
1828#ifdef FEAT_FOLDING
1829 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001830 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001832 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833#endif
1834
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001836 if (curwin->w_p_diff)
1837 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838#endif
1839
Bram Moolenaara971b822011-09-14 14:43:25 +02001840#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001841 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001842#endif
1843
Bram Moolenaarc667da52019-11-30 20:52:27 +01001844 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 curwin->w_cursor.lnum = 1;
1846 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001849 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850
Bram Moolenaarc667da52019-11-30 20:52:27 +01001851 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001852 curwin->w_valid = 0;
1853
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001854 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1855 curbuf->b_last_cursor.col, TRUE);
1856
Bram Moolenaarc667da52019-11-30 20:52:27 +01001857 // Make sure the buffer is loaded.
1858 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001859 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001860 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001861 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001862 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001863 if (*curbuf->b_p_ft == NUL)
1864 did_filetype = FALSE;
1865
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001866 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 else
1869 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001870 if (!msg_silent && !shortmess(SHM_FILEINFO))
1871 need_fileinfo = TRUE; // display file info after redraw
1872
1873 // check if file changed
1874 (void)buf_check_timestamp(curbuf, FALSE);
1875
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001877#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1881 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 }
1883
Bram Moolenaarc667da52019-11-30 20:52:27 +01001884 // If autocommands did not change the cursor position, restore cursor lnum
1885 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 if (curwin->w_cursor.lnum == 1 && inindent(0))
1887 buflist_getfpos();
1888
Bram Moolenaarc667da52019-11-30 20:52:27 +01001889 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001891 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001892 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001893 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894
Bram Moolenaar009b2592004-10-24 19:18:58 +00001895#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001896 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001897 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001898#endif
1899
Bram Moolenaarc667da52019-11-30 20:52:27 +01001900 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001901 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902
1903#ifdef FEAT_KEYMAP
1904 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001905 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001907#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001908 // May need to set the spell language. Can only do this after the buffer
1909 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001910 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1911 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001912#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001913#ifdef FEAT_VIMINFO
1914 curbuf->b_last_used = vim_time();
1915#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001916
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001917 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918}
1919
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001920#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1921/*
1922 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001923 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001924 */
1925 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001926do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001927{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001928 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001929 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001930 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001931 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001932 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001933 last_chdir_reason = "autochdir";
1934 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001935}
1936#endif
1937
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001938 void
1939no_write_message(void)
1940{
1941#ifdef FEAT_TERMINAL
1942 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001943 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001944 else
1945#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001946 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001947}
1948
1949 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001950no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001951{
1952#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001953 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001954 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001955 else
1956#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001957 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001958}
1959
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960/*
1961 * functions for dealing with the buffer list
1962 */
1963
1964/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001965 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1966 * only one window. That means it can be re-used.
1967 */
1968 int
1969curbuf_reusable(void)
1970{
1971 return (curbuf != NULL
1972 && curbuf->b_ffname == NULL
1973 && curbuf->b_nwindows <= 1
1974 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaar39803d82019-04-07 12:04:51 +02001975 && !bt_quickfix(curbuf)
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001976 && !curbufIsChanged());
1977}
1978
1979/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 * Add a file name to the buffer list. Return a pointer to the buffer.
1981 * If the same file name already exists return a pointer to that buffer.
1982 * If it does not exist, or if fname == NULL, a new entry is created.
1983 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1984 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1985 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001986 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001987 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1988 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001989 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 * This is the ONLY way to create a new buffer.
1991 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001993buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001994 char_u *ffname_arg, // full path of fname or relative
1995 char_u *sfname_arg, // short fname or NULL
1996 linenr_T lnum, // preferred cursor line
1997 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001999 char_u *ffname = ffname_arg;
2000 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 buf_T *buf;
2002#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002003 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004#endif
2005
Bram Moolenaar480778b2016-07-14 22:09:39 +02002006 if (top_file_num == 1)
2007 hash_init(&buf_hashtab);
2008
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002009 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010
2011 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002012 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 */
2014#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002015 // On Unix we can use inode numbers when the file exists. Works better
2016 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2018 st.st_dev = (dev_T)-1;
2019#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002020 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021#ifdef UNIX
2022 buflist_findname_stat(ffname, &st)
2023#else
2024 buflist_findname(ffname)
2025#endif
2026 ) != NULL)
2027 {
2028 vim_free(ffname);
2029 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002030 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2031 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002032
2033 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002034 // copy the options now, if 'cpo' doesn't have 's' and not done
2035 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002036 buf_copy_options(buf, 0);
2037
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2039 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002040 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002041
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002043 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002045 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002046 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002047 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002048 return NULL;
2049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 }
2051 return buf;
2052 }
2053
2054 /*
2055 * If the current buffer has no name and no contents, use the current
2056 * buffer. Otherwise: Need to allocate a new buffer structure.
2057 *
2058 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002059 * (A spell file buffer is allocated in spell.c, but that's not a normal
2060 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 */
2062 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002063 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 {
2065 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002066 // It's like this buffer is deleted. Watch out for autocommands that
2067 // change curbuf! If that happens, allocate a new buffer anyway.
Charlie Grovesfef44852022-04-19 16:24:12 +01002068 buf_freeall(buf, BFA_WIPE | BFA_DEL);
2069 if (buf != curbuf) // autocommands deleted the buffer!
2070 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002071#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002072 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002073 {
2074 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 }
2079 if (buf != curbuf || curbuf == NULL)
2080 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002081 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 if (buf == NULL)
2083 {
2084 vim_free(ffname);
2085 return NULL;
2086 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002087#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002088 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002089 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002090 if (buf->b_vars == NULL)
2091 {
2092 vim_free(ffname);
2093 vim_free(buf);
2094 return NULL;
2095 }
2096 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2097#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002098 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 }
2100
2101 if (ffname != NULL)
2102 {
2103 buf->b_ffname = ffname;
2104 buf->b_sfname = vim_strsave(sfname);
2105 }
2106
2107 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002108 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109
2110 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2111 || buf->b_wininfo == NULL)
2112 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002113 if (buf->b_sfname != buf->b_ffname)
2114 VIM_CLEAR(buf->b_sfname);
2115 else
2116 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002117 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 if (buf != curbuf)
2119 free_buffer(buf);
2120 return NULL;
2121 }
2122
2123 if (buf == curbuf)
2124 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002125 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002126
Bram Moolenaarc667da52019-11-30 20:52:27 +01002127 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002128 buf->b_p_initialized = FALSE;
2129 buf_copy_options(buf, BCO_ENTER);
2130
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002132 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 curbuf->b_kmap_state |= KEYMAP_INIT;
2134#endif
2135 }
2136 else
2137 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002138 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002140 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 {
2142 buf->b_prev = NULL;
2143 firstbuf = buf;
2144 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002145 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 {
2147 lastbuf->b_next = buf;
2148 buf->b_prev = lastbuf;
2149 }
2150 lastbuf = buf;
2151
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002152 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2153 {
2154 // Recycle a previously used buffer number. Used for buffers which
2155 // are normally hidden, e.g. in a popup window. Avoids that the
2156 // buffer number grows rapidly.
2157 --buf_reuse.ga_len;
2158 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002159
2160 // Move buffer to the right place in the buffer list.
2161 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2162 {
2163 buf_T *prev = buf->b_prev;
2164
2165 prev->b_next = buf->b_next;
2166 if (prev->b_next != NULL)
2167 prev->b_next->b_prev = prev;
2168 buf->b_next = prev;
2169 buf->b_prev = prev->b_prev;
2170 if (buf->b_prev != NULL)
2171 buf->b_prev->b_next = buf;
2172 prev->b_prev = buf;
2173 if (lastbuf == buf)
2174 lastbuf = prev;
2175 if (firstbuf == prev)
2176 firstbuf = buf;
2177 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002178 }
2179 else
2180 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002181 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002183 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002184 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 {
2186 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002187 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 }
2189 top_file_num = 1;
2190 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002191 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002193 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 buf_copy_options(buf, BCO_ALWAYS);
2195 }
2196
2197 buf->b_wininfo->wi_fpos.lnum = lnum;
2198 buf->b_wininfo->wi_win = curwin;
2199
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002200#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002201 hash_init(&buf->b_s.b_keywtab);
2202 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203#endif
2204
2205 buf->b_fname = buf->b_sfname;
2206#ifdef UNIX
2207 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002208 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 else
2210 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002211 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 buf->b_dev = st.st_dev;
2213 buf->b_ino = st.st_ino;
2214 }
2215#endif
2216 buf->b_u_synced = TRUE;
2217 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002218 if (flags & BLN_DUMMY)
2219 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002221 clrallmarks(buf); // clear marks
2222 fmarks_check_names(buf); // check file marks for this file
2223 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 if (!(flags & BLN_DUMMY))
2225 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002226 bufref_T bufref;
2227
Bram Moolenaarc667da52019-11-30 20:52:27 +01002228 // Tricky: these autocommands may change the buffer list. They could
2229 // also split the window with re-using the one empty buffer. This may
2230 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002231 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002232 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002233 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002234 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002236 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002237 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002238 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002239 return NULL;
2240 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002241#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002242 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002245 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246
2247 return buf;
2248}
2249
2250/*
2251 * Free the memory for the options of a buffer.
2252 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2253 * 'fileencoding'.
2254 */
2255 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002256free_buf_options(
2257 buf_T *buf,
2258 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259{
2260 if (free_p_ff)
2261 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 clear_string_option(&buf->b_p_bh);
2265 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 }
2267#ifdef FEAT_FIND_ID
2268 clear_string_option(&buf->b_p_def);
2269 clear_string_option(&buf->b_p_inc);
2270# ifdef FEAT_EVAL
2271 clear_string_option(&buf->b_p_inex);
2272# endif
2273#endif
Bram Moolenaar8e145b82022-05-21 20:17:31 +01002274#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 clear_string_option(&buf->b_p_inde);
2276 clear_string_option(&buf->b_p_indk);
2277#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002278#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2279 clear_string_option(&buf->b_p_bexpr);
2280#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002281#if defined(FEAT_CRYPT)
2282 clear_string_option(&buf->b_p_cm);
2283#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002284 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002285#if defined(FEAT_EVAL)
2286 clear_string_option(&buf->b_p_fex);
2287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002289# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002290 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2291 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2292 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002293# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 clear_string_option(&buf->b_p_key);
2295#endif
2296 clear_string_option(&buf->b_p_kp);
2297 clear_string_option(&buf->b_p_mps);
2298 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002299 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002301#ifdef FEAT_VARTABS
2302 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002303 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002304 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002305 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002306 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002307 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002308#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309#ifdef FEAT_KEYMAP
2310 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002311 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 ga_clear(&buf->b_kmap_ga);
2313#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315#ifdef FEAT_FOLDING
2316 clear_string_option(&buf->b_p_cms);
2317#endif
2318 clear_string_option(&buf->b_p_nf);
2319#ifdef FEAT_SYN_HL
2320 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002321 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002322#endif
2323#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002324 clear_string_option(&buf->b_s.b_p_spc);
2325 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002326 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002327 buf->b_s.b_cap_prog = NULL;
2328 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002329 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 clear_string_option(&buf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 clear_string_option(&buf->b_p_cink);
2334 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002335 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 clear_string_option(&buf->b_p_cinw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002338#ifdef FEAT_COMPL_FUNC
2339 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002340 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002341 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002342 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002343 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002344 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346#ifdef FEAT_QUICKFIX
2347 clear_string_option(&buf->b_p_gp);
2348 clear_string_option(&buf->b_p_mp);
2349 clear_string_option(&buf->b_p_efm);
2350#endif
2351 clear_string_option(&buf->b_p_ep);
2352 clear_string_option(&buf->b_p_path);
2353 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002354 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002355#ifdef FEAT_EVAL
2356 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002357 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 clear_string_option(&buf->b_p_dict);
2360 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002361 clear_string_option(&buf->b_p_qe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002363 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002364 clear_string_option(&buf->b_p_lw);
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002365 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002366 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367}
2368
2369/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002370 * Get alternate file "n".
2371 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2372 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 * if (options & GETF_SETMARK) call setpcmark()
2374 * if (options & GETF_ALT) we are jumping to an alternate file.
2375 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2376 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002377 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 */
2379 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002380buflist_getfile(
2381 int n,
2382 linenr_T lnum,
2383 int options,
2384 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385{
2386 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 pos_T *fpos;
2389 colnr_T col;
2390
2391 buf = buflist_findnr(n);
2392 if (buf == NULL)
2393 {
2394 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002395 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002397 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 return FAIL;
2399 }
2400
Bram Moolenaarc667da52019-11-30 20:52:27 +01002401 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 if (buf == curbuf)
2403 return OK;
2404
Bram Moolenaar71223e22022-05-30 15:23:09 +01002405 if (text_or_buf_locked())
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002406 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407
Bram Moolenaarc667da52019-11-30 20:52:27 +01002408 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 if (lnum == 0)
2410 {
2411 fpos = buflist_findfpos(buf);
2412 lnum = fpos->lnum;
2413 col = fpos->col;
2414 }
2415 else
2416 col = 0;
2417
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 if (options & GETF_SWITCH)
2419 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002420 // If 'switchbuf' contains "useopen": jump to first window containing
2421 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002422 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002424
Bram Moolenaarc667da52019-11-30 20:52:27 +01002425 // If 'switchbuf' contains "usetab": jump to first window in any tab
2426 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002427 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002428 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002429
Bram Moolenaarc667da52019-11-30 20:52:27 +01002430 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2431 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002432 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002433 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002435 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002436 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002437 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2438 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002440 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 }
2442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443
2444 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002445 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2446 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 {
2448 --RedrawingDisabled;
2449
Bram Moolenaarc667da52019-11-30 20:52:27 +01002450 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 if (!p_sol && col != 0)
2452 {
2453 curwin->w_cursor.col = col;
2454 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 curwin->w_set_curswant = TRUE;
2457 }
2458 return OK;
2459 }
2460 --RedrawingDisabled;
2461 return FAIL;
2462}
2463
2464/*
2465 * go to the last know line number for the current buffer
2466 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002467 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002468buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469{
2470 pos_T *fpos;
2471
2472 fpos = buflist_findfpos(curbuf);
2473
2474 curwin->w_cursor.lnum = fpos->lnum;
2475 check_cursor_lnum();
2476
2477 if (p_sol)
2478 curwin->w_cursor.col = 0;
2479 else
2480 {
2481 curwin->w_cursor.col = fpos->col;
2482 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 curwin->w_set_curswant = TRUE;
2485 }
2486}
2487
Bram Moolenaar81695252004-12-29 20:58:21 +00002488#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2489/*
2490 * Find file in buffer list by name (it has to be for the current window).
2491 * Returns NULL if not found.
2492 */
2493 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002494buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002495{
2496 char_u *ffname;
2497 buf_T *buf = NULL;
2498
Bram Moolenaarc667da52019-11-30 20:52:27 +01002499 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002500 ffname = FullName_save(fname,
2501#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002502 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002503#else
2504 FALSE
2505#endif
2506 );
2507 if (ffname != NULL)
2508 {
2509 buf = buflist_findname(ffname);
2510 vim_free(ffname);
2511 }
2512 return buf;
2513}
2514#endif
2515
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516/*
2517 * Find file in buffer list by name (it has to be for the current window).
2518 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002519 * Skips dummy buffers.
2520 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 */
2522 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002523buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524{
2525#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002526 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527
2528 if (mch_stat((char *)ffname, &st) < 0)
2529 st.st_dev = (dev_T)-1;
2530 return buflist_findname_stat(ffname, &st);
2531}
2532
2533/*
2534 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2535 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002536 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 */
2538 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002539buflist_findname_stat(
2540 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002541 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542{
2543#endif
2544 buf_T *buf;
2545
Bram Moolenaarc667da52019-11-30 20:52:27 +01002546 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002547 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002548 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549#ifdef UNIX
2550 , stp
2551#endif
2552 ))
2553 return buf;
2554 return NULL;
2555}
2556
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557/*
2558 * Find file in buffer list by a regexp pattern.
2559 * Return fnum of the found buffer.
2560 * Return < 0 for error.
2561 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002563buflist_findpat(
2564 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002565 char_u *pattern_end, // pointer to first char after pattern
2566 int unlisted, // find unlisted buffers
2567 int diffmode UNUSED, // find diff-mode buffers only
2568 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569{
2570 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 int match = -1;
2572 int find_listed;
2573 char_u *pat;
2574 char_u *patend;
2575 int attempt;
2576 char_u *p;
2577 int toggledollar;
2578
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002579 // "%" is current file, "%%" or "#" is alternate file
2580 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2581 || (in_vim9script() && pattern_end == pattern + 2
2582 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002584 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002586 else
2587 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588#ifdef FEAT_DIFF
2589 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2590 match = -1;
2591#endif
2592 }
2593
2594 /*
2595 * Try four ways of matching a listed buffer:
2596 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002597 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 * attempt == 2: with '$' at end (only match at end)
2599 * attempt == 3: with '^' at start and '$' at end (only full match)
2600 * Repeat this for finding an unlisted buffer if there was no matching
2601 * listed buffer.
2602 */
2603 else
2604 {
2605 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2606 if (pat == NULL)
2607 return -1;
2608 patend = pat + STRLEN(pat) - 1;
2609 toggledollar = (patend > pat && *patend == '$');
2610
Bram Moolenaarc667da52019-11-30 20:52:27 +01002611 // First try finding a listed buffer. If not found and "unlisted"
2612 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 find_listed = TRUE;
2614 for (;;)
2615 {
2616 for (attempt = 0; attempt <= 3; ++attempt)
2617 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002618 regmatch_T regmatch;
2619
Bram Moolenaarc667da52019-11-30 20:52:27 +01002620 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002622 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002624 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002626 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002628 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002629 {
2630 if (regmatch.regprog == NULL)
2631 {
2632 // invalid pattern, possibly after switching engine
2633 vim_free(pat);
2634 return -1;
2635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 if (buf->b_p_bl == find_listed
2637#ifdef FEAT_DIFF
2638 && (!diffmode || diff_mode_buf(buf))
2639#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002640 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002642 if (curtab_only)
2643 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002644 // Ignore the match if the buffer is not open in
2645 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002646 win_T *wp;
2647
Bram Moolenaar29323592016-07-24 22:04:11 +02002648 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002649 if (wp->w_buffer == buf)
2650 break;
2651 if (wp == NULL)
2652 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002653 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002654 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 {
2656 match = -2;
2657 break;
2658 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002659 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 }
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002663 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002664 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 break;
2666 }
2667
Bram Moolenaarc667da52019-11-30 20:52:27 +01002668 // Only search for unlisted buffers if there was no match with
2669 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 if (!unlisted || !find_listed || match != -1)
2671 break;
2672 find_listed = FALSE;
2673 }
2674
2675 vim_free(pat);
2676 }
2677
2678 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002679 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002681 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 return match;
2683}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684
Bram Moolenaar52410572019-10-27 05:12:45 +01002685#ifdef FEAT_VIMINFO
2686typedef struct {
2687 buf_T *buf;
2688 char_u *match;
2689} bufmatch_T;
2690#endif
2691
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692/*
2693 * Find all buffer names that match.
2694 * For command line expansion of ":buf" and ":sbuf".
2695 * Return OK if matches found, FAIL otherwise.
2696 */
2697 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002698ExpandBufnames(
2699 char_u *pat,
2700 int *num_file,
2701 char_u ***file,
2702 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703{
2704 int count = 0;
2705 buf_T *buf;
2706 int round;
2707 char_u *p;
2708 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002709 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002710#ifdef FEAT_VIMINFO
2711 bufmatch_T *matches = NULL;
2712#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002713 int fuzzy;
2714 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715
Bram Moolenaarc667da52019-11-30 20:52:27 +01002716 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 *file = NULL;
2718
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002719#ifdef FEAT_DIFF
2720 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2721 return FAIL;
2722#endif
2723
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002724 fuzzy = cmdline_fuzzy_complete(pat);
2725
2726 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2727 // expression matching)
2728 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002730 if (*pat == '^')
2731 {
2732 patc = alloc(STRLEN(pat) + 11);
2733 if (patc == NULL)
2734 return FAIL;
2735 STRCPY(patc, "\\(^\\|[\\/]\\)");
2736 STRCPY(patc + 11, pat + 1);
2737 }
2738 else
2739 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002740 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002741
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002742 // attempt == 0: try match with '\<', match at start of word
2743 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002744 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002745 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002746 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002747 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002748
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002749 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002750 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002751 if (attempt > 0 && patc == pat)
2752 break; // there was no anchor, no need to try again
2753 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002754 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002756 // round == 1: Count the matches.
2757 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 for (round = 1; round <= 2; ++round)
2759 {
2760 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002761 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002763 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002765#ifdef FEAT_DIFF
2766 if (options & BUF_DIFF_FILTER)
2767 // Skip buffers not suitable for
2768 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002769 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002770 continue;
2771#endif
2772
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002773 if (!fuzzy)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002774 {
2775 if (regmatch.regprog == NULL)
2776 {
2777 // invalid pattern, possibly after recompiling
2778 if (patc != pat)
2779 vim_free(patc);
2780 return FAIL;
2781 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002782 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002783 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002784 else
2785 {
2786 p = NULL;
2787 // first try matching with the short file name
2788 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2789 p = buf->b_sfname;
2790 if (p == NULL)
2791 {
2792 // next try matching with the full path file name
2793 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2794 p = buf->b_ffname;
2795 }
2796 }
2797
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002798 if (p == NULL)
2799 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002800
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002801 if (round == 1)
2802 {
2803 ++count;
2804 continue;
2805 }
2806
2807 if (options & WILD_HOME_REPLACE)
2808 p = home_replace_save(buf, p);
2809 else
2810 p = vim_strsave(p);
2811
2812 if (!fuzzy)
2813 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002814#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002815 if (matches != NULL)
2816 {
2817 matches[count].buf = buf;
2818 matches[count].match = p;
2819 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002821 else
2822#endif
2823 (*file)[count++] = p;
2824 }
2825 else
2826 {
2827 fuzmatch[count].idx = count;
2828 fuzmatch[count].str = p;
2829 fuzmatch[count].score = score;
2830 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 }
2832 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002833 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 break;
2835 if (round == 1)
2836 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002837 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002839 *file = ALLOC_MULT(char_u *, count);
2840 if (*file == NULL)
2841 {
2842 vim_regfree(regmatch.regprog);
2843 if (patc != pat)
2844 vim_free(patc);
2845 return FAIL;
2846 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002847#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002848 if (options & WILD_BUFLASTUSED)
2849 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002850#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002851 }
2852 else
2853 {
2854 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2855 if (fuzmatch == NULL)
2856 {
2857 *num_file = 0;
2858 *file = NULL;
2859 return FAIL;
2860 }
2861 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 }
2863 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002864
2865 if (!fuzzy)
2866 {
2867 vim_regfree(regmatch.regprog);
2868 if (count) // match(es) found, break here
2869 break;
2870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 }
2872
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002873 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002874 vim_free(patc);
2875
Bram Moolenaar52410572019-10-27 05:12:45 +01002876#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002877 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002878 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002879 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002880 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002881 int i;
2882 if (count > 1)
2883 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2884 // if the current buffer is first in the list, place it at the end
2885 if (matches[0].buf == curbuf)
2886 {
2887 for (i = 1; i < count; i++)
2888 (*file)[i-1] = matches[i].match;
2889 (*file)[count-1] = matches[0].match;
2890 }
2891 else
2892 {
2893 for (i = 0; i < count; i++)
2894 (*file)[i] = matches[i].match;
2895 }
2896 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002897 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002898 }
2899 else
2900 {
2901 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2902 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002903 }
2904#endif
2905
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 *num_file = count;
2907 return (count == 0 ? FAIL : OK);
2908}
2909
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910/*
2911 * Check for a match on the file name for buffer "buf" with regprog "prog".
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002912 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 */
2914 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002915buflist_match(
2916 regmatch_T *rmp,
2917 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002918 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919{
2920 char_u *match;
2921
Bram Moolenaarc667da52019-11-30 20:52:27 +01002922 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002923 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaara59f2df2022-05-11 11:42:28 +01002924 if (match == NULL && rmp->regprog != NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002925 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926
2927 return match;
2928}
2929
2930/*
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002931 * Try matching the regexp in "rmp->regprog" with file name "name".
2932 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 * Return "name" when there is a match, NULL when not.
2934 */
2935 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002936fname_match(
2937 regmatch_T *rmp,
2938 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002939 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940{
2941 char_u *match = NULL;
2942 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002944 // extra check for valid arguments
2945 if (name != NULL && rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002947 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002948 rmp->rm_ic = p_fic || ignore_case;
2949 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 match = name;
Bram Moolenaar8e4b76d2022-05-07 11:28:06 +01002951 else if (rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002953 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002955 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 match = name;
2957 vim_free(p);
2958 }
2959 }
2960
2961 return match;
2962}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963
2964/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002965 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 */
2967 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002968buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002970 char_u key[VIM_SIZEOF_INT * 2 + 1];
2971 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972
2973 if (nr == 0)
2974 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002975 sprintf((char *)key, "%x", nr);
2976 hi = hash_find(&buf_hashtab, key);
2977
2978 if (!HASHITEM_EMPTY(hi))
2979 return (buf_T *)(hi->hi_key
2980 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 return NULL;
2982}
2983
2984/*
2985 * Get name of file 'n' in the buffer list.
2986 * When the file has no name an empty string is returned.
2987 * home_replace() is used to shorten the file name (used for marks).
2988 * Returns a pointer to allocated memory, of NULL when failed.
2989 */
2990 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002991buflist_nr2name(
2992 int n,
2993 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002994 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995{
2996 buf_T *buf;
2997
2998 buf = buflist_findnr(n);
2999 if (buf == NULL)
3000 return NULL;
3001 return home_replace_save(helptail ? buf : NULL,
3002 fullname ? buf->b_ffname : buf->b_fname);
3003}
3004
3005/*
3006 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3007 * When "copy_options" is TRUE save the local window option values.
3008 * When "lnum" is 0 only do the options.
3009 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003010 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003011buflist_setfpos(
3012 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003013 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003014 linenr_T lnum,
3015 colnr_T col,
3016 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 wininfo_T *wip;
3019
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003020 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 if (wip->wi_win == win)
3022 break;
3023 if (wip == NULL)
3024 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003025 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003026 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 if (wip == NULL)
3028 return;
3029 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003030 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 lnum = 1;
3032 }
3033 else
3034 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003035 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 if (wip->wi_prev)
3037 wip->wi_prev->wi_next = wip->wi_next;
3038 else
3039 buf->b_wininfo = wip->wi_next;
3040 if (wip->wi_next)
3041 wip->wi_next->wi_prev = wip->wi_prev;
3042 if (copy_options && wip->wi_optset)
3043 {
3044 clear_winopt(&wip->wi_opt);
3045#ifdef FEAT_FOLDING
3046 deleteFoldRecurse(&wip->wi_folds);
3047#endif
3048 }
3049 }
3050 if (lnum != 0)
3051 {
3052 wip->wi_fpos.lnum = lnum;
3053 wip->wi_fpos.col = col;
3054 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003055 if (win != NULL)
3056 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003057 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003059 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3061#ifdef FEAT_FOLDING
3062 wip->wi_fold_manual = win->w_fold_manual;
3063 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3064#endif
3065 wip->wi_optset = TRUE;
3066 }
3067
Bram Moolenaarc667da52019-11-30 20:52:27 +01003068 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 wip->wi_next = buf->b_wininfo;
3070 buf->b_wininfo = wip;
3071 wip->wi_prev = NULL;
3072 if (wip->wi_next)
3073 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074}
3075
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003076#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003077/*
3078 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3079 * page. That's because a diff is local to a tab page.
3080 */
3081 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003082wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003083{
3084 win_T *wp;
3085
3086 if (wip->wi_opt.wo_diff)
3087 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003088 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003089 // return FALSE when it's a window in the current tab page, thus
3090 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003091 if (wip->wi_win == wp)
3092 return FALSE;
3093 return TRUE;
3094 }
3095 return FALSE;
3096}
3097#endif
3098
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099/*
3100 * Find info for the current window in buffer "buf".
3101 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003102 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003103 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3104 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 * Returns NULL when there isn't any info.
3106 */
3107 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003108find_wininfo(
3109 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003110 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003111 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112{
3113 wininfo_T *wip;
3114
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003115 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003116 if (wip->wi_win == curwin
3117#ifdef FEAT_DIFF
3118 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3119#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003120
3121 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003123
Bram Moolenaarc667da52019-11-30 20:52:27 +01003124 // If no wininfo for curwin, use the first in the list (that doesn't have
3125 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003126 // If "need_options" is TRUE skip entries that don't have options set,
3127 // unless the window is editing "buf", so we can copy from the window
3128 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003129 if (wip == NULL)
3130 {
3131#ifdef FEAT_DIFF
3132 if (skip_diff_buffer)
3133 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003134 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003135 if (!wininfo_other_tab_diff(wip)
3136 && (!need_options || wip->wi_optset
3137 || (wip->wi_win != NULL
3138 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003139 break;
3140 }
3141 else
3142#endif
3143 wip = buf->b_wininfo;
3144 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 return wip;
3146}
3147
3148/*
3149 * Reset the local window options to the values last used in this window.
3150 * If the buffer wasn't used in this window before, use the values from
3151 * the most recently used window. If the values were never set, use the
3152 * global values for the window.
3153 */
3154 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003155get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156{
3157 wininfo_T *wip;
3158
3159 clear_winopt(&curwin->w_onebuf_opt);
3160#ifdef FEAT_FOLDING
3161 clearFolding(curwin);
3162#endif
3163
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003164 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003165 if (wip != NULL && wip->wi_win != NULL
3166 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003168 // The buffer is currently displayed in the window: use the actual
3169 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003170 win_T *wp = wip->wi_win;
3171
3172 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3173#ifdef FEAT_FOLDING
3174 curwin->w_fold_manual = wp->w_fold_manual;
3175 curwin->w_foldinvalid = TRUE;
3176 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3177#endif
3178 }
3179 else if (wip != NULL && wip->wi_optset)
3180 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003181 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3183#ifdef FEAT_FOLDING
3184 curwin->w_fold_manual = wip->wi_fold_manual;
3185 curwin->w_foldinvalid = TRUE;
3186 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3187#endif
3188 }
3189 else
3190 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003191 if (wip != NULL)
3192 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193
3194#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003195 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 if (p_fdls >= 0)
3197 curwin->w_p_fdl = p_fdls;
3198#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003199 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200}
3201
3202/*
3203 * Find the position (lnum and col) for the buffer 'buf' for the current
3204 * window.
3205 * Returns a pointer to no_position if no position is found.
3206 */
3207 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003208buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209{
3210 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003211 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003213 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 if (wip != NULL)
3215 return &(wip->wi_fpos);
3216 else
3217 return &no_position;
3218}
3219
3220/*
3221 * Find the lnum for the buffer 'buf' for the current window.
3222 */
3223 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003224buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225{
3226 return buflist_findfpos(buf)->lnum;
3227}
3228
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003230 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003233buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234{
Bram Moolenaar52410572019-10-27 05:12:45 +01003235 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 int len;
3237 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003238 int ro_char;
3239 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003240#ifdef FEAT_TERMINAL
3241 int job_running;
3242 int job_none_open;
3243#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244
Bram Moolenaar52410572019-10-27 05:12:45 +01003245#ifdef FEAT_VIMINFO
3246 garray_T buflist;
3247 buf_T **buflist_data = NULL, **p;
3248
3249 if (vim_strchr(eap->arg, 't'))
3250 {
3251 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003252 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003253 {
3254 if (ga_grow(&buflist, 1) == OK)
3255 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3256 }
3257
3258 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3259 sizeof(buf_T *), buf_compare);
3260
Bram Moolenaar3b991522019-11-06 23:26:20 +01003261 buflist_data = (buf_T **)buflist.ga_data;
3262 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003263 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003264 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003265
Bram Moolenaar3b991522019-11-06 23:26:20 +01003266 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003267 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3268 : buf->b_next)
3269#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003273#ifdef FEAT_TERMINAL
3274 job_running = term_job_running(buf->b_term);
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003275 job_none_open = term_none_open(buf->b_term);
Bram Moolenaar0751f512018-03-29 16:37:16 +02003276#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003277 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003278 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3279 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3280 || (vim_strchr(eap->arg, '+')
3281 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3282 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003283 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003284 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003285 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3286#ifdef FEAT_TERMINAL
3287 || (vim_strchr(eap->arg, 'R')
3288 && (!job_running || (job_running && job_none_open)))
3289 || (vim_strchr(eap->arg, '?')
3290 && (!job_running || (job_running && !job_none_open)))
3291 || (vim_strchr(eap->arg, 'F')
3292 && (job_running || buf->b_term == NULL))
3293#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003294 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3295 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3296 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3297 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3298 || (vim_strchr(eap->arg, '#')
3299 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003302 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303 else
3304 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003305 if (message_filtered(NameBuff))
3306 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003308 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3309 : (bufIsChanged(buf) ? '+' : ' ');
3310#ifdef FEAT_TERMINAL
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003311 if (job_running)
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003312 {
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003313 if (job_none_open)
Bram Moolenaar4033c552017-09-16 20:54:51 +02003314 ro_char = '?';
3315 else
3316 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003317 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3318 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003319 }
3320 else if (buf->b_term != NULL)
3321 ro_char = 'F';
3322 else
3323#endif
3324 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3325
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003326 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003327 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 buf->b_fnum,
3329 buf->b_p_bl ? ' ' : 'u',
3330 buf == curbuf ? '%' :
3331 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3332 buf->b_ml.ml_mfp == NULL ? ' ' :
3333 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003334 ro_char,
3335 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003336 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003337 if (len > IOSIZE - 20)
3338 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339
Bram Moolenaarc667da52019-11-30 20:52:27 +01003340 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 i = 40 - vim_strsize(IObuff);
3342 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003344 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003345#ifdef FEAT_VIMINFO
3346 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3347 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3348 else
3349#endif
3350 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3351 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003352 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003354 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 ui_breakcheck();
3356 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003357
3358#ifdef FEAT_VIMINFO
3359 if (buflist_data)
3360 ga_clear(&buflist);
3361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363
3364/*
3365 * Get file name and line number for file 'fnum'.
3366 * Used by DoOneCmd() for translating '%' and '#'.
3367 * Used by insert_reg() and cmdline_paste() for '#' register.
3368 * Return FAIL if not found, OK for success.
3369 */
3370 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003371buflist_name_nr(
3372 int fnum,
3373 char_u **fname,
3374 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375{
3376 buf_T *buf;
3377
3378 buf = buflist_findnr(fnum);
3379 if (buf == NULL || buf->b_fname == NULL)
3380 return FAIL;
3381
3382 *fname = buf->b_fname;
3383 *lnum = buflist_findlnum(buf);
3384
3385 return OK;
3386}
3387
3388/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003389 * Set the file name for "buf"' to "ffname_arg", short file name to
3390 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 * The file name with the full path is also remembered, for when :cd is used.
3392 * Returns FAIL for failure (file name already in use by other buffer)
3393 * OK otherwise.
3394 */
3395 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003396setfname(
3397 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003398 char_u *ffname_arg,
3399 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003400 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003402 char_u *ffname = ffname_arg;
3403 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003404 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003406 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407#endif
3408
3409 if (ffname == NULL || *ffname == NUL)
3410 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003411 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003412 if (buf->b_sfname != buf->b_ffname)
3413 VIM_CLEAR(buf->b_sfname);
3414 else
3415 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003416 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417#ifdef UNIX
3418 st.st_dev = (dev_T)-1;
3419#endif
3420 }
3421 else
3422 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003423 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3424 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 return FAIL;
3426
3427 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003428 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 * - if the buffer is loaded, fail
3430 * - if the buffer is not loaded, delete it from the list
3431 */
3432#ifdef UNIX
3433 if (mch_stat((char *)ffname, &st) < 0)
3434 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003435#endif
3436 if (!(buf->b_flags & BF_DUMMY))
3437#ifdef UNIX
3438 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003440 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441#endif
3442 if (obuf != NULL && obuf != buf)
3443 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003444 win_T *win;
3445 tabpage_T *tab;
3446 int in_use = FALSE;
3447
3448 // during startup a window may use a buffer that is not loaded yet
3449 FOR_ALL_TAB_WINDOWS(tab, win)
3450 if (win->w_buffer == obuf)
3451 in_use = TRUE;
3452
3453 // it's loaded or used in a window, fail
3454 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 {
3456 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003457 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 vim_free(ffname);
3459 return FAIL;
3460 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003461 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003462 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 }
3464 sfname = vim_strsave(sfname);
3465 if (ffname == NULL || sfname == NULL)
3466 {
3467 vim_free(sfname);
3468 vim_free(ffname);
3469 return FAIL;
3470 }
3471#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003472 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003474 if (buf->b_sfname != buf->b_ffname)
3475 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 buf->b_ffname = ffname;
3478 buf->b_sfname = sfname;
3479 }
3480 buf->b_fname = buf->b_sfname;
3481#ifdef UNIX
3482 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003483 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 else
3485 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003486 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 buf->b_dev = st.st_dev;
3488 buf->b_ino = st.st_ino;
3489 }
3490#endif
3491
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493
3494 buf_name_changed(buf);
3495 return OK;
3496}
3497
3498/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003499 * Crude way of changing the name of a buffer. Use with care!
3500 * The name should be relative to the current directory.
3501 */
3502 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003503buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003504{
3505 buf_T *buf;
3506
3507 buf = buflist_findnr(fnum);
3508 if (buf != NULL)
3509 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003510 if (buf->b_sfname != buf->b_ffname)
3511 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003512 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003513 buf->b_ffname = vim_strsave(name);
3514 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003515 // Allocate ffname and expand into full path. Also resolves .lnk
3516 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003517 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003518 buf->b_fname = buf->b_sfname;
3519 }
3520}
3521
3522/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 * Take care of what needs to be done when the name of buffer "buf" has
3524 * changed.
3525 */
3526 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003527buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528{
3529 /*
3530 * If the file name changed, also change the name of the swapfile
3531 */
3532 if (buf->b_ml.ml_mfp != NULL)
3533 ml_setname(buf);
3534
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003535#ifdef FEAT_TERMINAL
3536 if (buf->b_term != NULL)
3537 term_clear_status_text(buf->b_term);
3538#endif
3539
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003541 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003542 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003543 status_redraw_all(); // status lines need to be redrawn
3544 fmarks_check_names(buf); // check named file marks
3545 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546}
3547
3548/*
3549 * set alternate file name for current window
3550 *
3551 * Used by do_one_cmd(), do_write() and do_ecmd().
3552 * Return the buffer.
3553 */
3554 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003555setaltfname(
3556 char_u *ffname,
3557 char_u *sfname,
3558 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559{
3560 buf_T *buf;
3561
Bram Moolenaarc667da52019-11-30 20:52:27 +01003562 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003564 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 curwin->w_alt_fnum = buf->b_fnum;
3566 return buf;
3567}
3568
3569/*
3570 * Get alternate file name for current window.
3571 * Return NULL if there isn't any, and give error message if requested.
3572 */
3573 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003574getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003575 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576{
3577 char_u *fname;
3578 linenr_T dummy;
3579
3580 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3581 {
3582 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003583 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 return NULL;
3585 }
3586 return fname;
3587}
3588
3589/*
3590 * Add a file name to the buflist and return its number.
3591 * Uses same flags as buflist_new(), except BLN_DUMMY.
3592 *
3593 * used by qf_init(), main() and doarglist()
3594 */
3595 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003596buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597{
3598 buf_T *buf;
3599
3600 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3601 if (buf != NULL)
3602 return buf->b_fnum;
3603 return 0;
3604}
3605
3606#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3607/*
3608 * Adjust slashes in file names. Called after 'shellslash' was set.
3609 */
3610 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003611buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612{
3613 buf_T *bp;
3614
Bram Moolenaar29323592016-07-24 22:04:11 +02003615 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 {
3617 if (bp->b_ffname != NULL)
3618 slash_adjust(bp->b_ffname);
3619 if (bp->b_sfname != NULL)
3620 slash_adjust(bp->b_sfname);
3621 }
3622}
3623#endif
3624
3625/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003626 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 * Also save the local window option values.
3628 */
3629 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003630buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003632 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633}
3634
3635/*
3636 * Return TRUE if 'ffname' is not the same file as current file.
3637 * Fname must have a full path (expanded by mch_FullName()).
3638 */
3639 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003640otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641{
3642 return otherfile_buf(curbuf, ffname
3643#ifdef UNIX
3644 , NULL
3645#endif
3646 );
3647}
3648
3649 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003650otherfile_buf(
3651 buf_T *buf,
3652 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003654 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003656 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003658 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3660 return TRUE;
3661 if (fnamecmp(ffname, buf->b_ffname) == 0)
3662 return FALSE;
3663#ifdef UNIX
3664 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003665 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666
Bram Moolenaarc667da52019-11-30 20:52:27 +01003667 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 if (stp == NULL)
3669 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003670 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 st.st_dev = (dev_T)-1;
3672 stp = &st;
3673 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003674 // Use dev/ino to check if the files are the same, even when the names
3675 // are different (possible with links). Still need to compare the
3676 // name above, for when the file doesn't exist yet.
3677 // Problem: The dev/ino changes when a file is deleted (and created
3678 // again) and remains the same when renamed/moved. We don't want to
3679 // mch_stat() each buffer each time, that would be too slow. Get the
3680 // dev/ino again when they appear to match, but not when they appear
3681 // to be different: Could skip a buffer when it's actually the same
3682 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 if (buf_same_ino(buf, stp))
3684 {
3685 buf_setino(buf);
3686 if (buf_same_ino(buf, stp))
3687 return FALSE;
3688 }
3689 }
3690#endif
3691 return TRUE;
3692}
3693
3694#if defined(UNIX) || defined(PROTO)
3695/*
3696 * Set inode and device number for a buffer.
3697 * Must always be called when b_fname is changed!.
3698 */
3699 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003700buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003702 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703
3704 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3705 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003706 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 buf->b_dev = st.st_dev;
3708 buf->b_ino = st.st_ino;
3709 }
3710 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003711 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712}
3713
3714/*
3715 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3716 */
3717 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003718buf_same_ino(
3719 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003720 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003722 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 && stp->st_dev == buf->b_dev
3724 && stp->st_ino == buf->b_ino);
3725}
3726#endif
3727
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003728/*
3729 * Print info about the current buffer.
3730 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003732fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003733 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003734 int shorthelp,
3735 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736{
3737 char_u *name;
3738 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003739 char *p;
3740 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003741 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003743 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 if (buffer == NULL)
3745 return;
3746
Bram Moolenaarc667da52019-11-30 20:52:27 +01003747 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003749 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 p = buffer + STRLEN(buffer);
3751 }
3752 else
3753 p = buffer;
3754
3755 *p++ = '"';
3756 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003757 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 else
3759 {
3760 if (!fullname && curbuf->b_fname != NULL)
3761 name = curbuf->b_fname;
3762 else
3763 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003764 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 (int)(IOSIZE - (p - buffer)), TRUE);
3766 }
3767
Bram Moolenaar32526b32019-01-19 17:43:09 +01003768 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 curbufIsChanged() ? (shortmess(SHM_MOD)
3770 ? " [+]" : _(" [Modified]")) : " ",
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01003771 (curbuf->b_flags & BF_NOTEDITED) && !bt_dontwrite(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 ? _("[Not edited]") : "",
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01003773 (curbuf->b_flags & BF_NEW) && !bt_dontwrite(curbuf)
Bram Moolenaar722e5052020-06-12 22:31:00 +02003774 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003776 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 : _("[readonly]")) : "",
3778 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3779 || curbuf->b_p_ro) ?
3780 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003781 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3782 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 if (curwin->w_cursor.lnum > 1000000L)
3784 n = (int)(((long)curwin->w_cursor.lnum) /
3785 ((long)curbuf->b_ml.ml_line_count / 100L));
3786 else
3787 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3788 (long)curbuf->b_ml.ml_line_count);
3789 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003790 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791#ifdef FEAT_CMDL_INFO
3792 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003793 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003794 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003795 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3796 curbuf->b_ml.ml_line_count),
3797 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798#endif
3799 else
3800 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003801 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 _("line %ld of %ld --%d%%-- col "),
3803 (long)curwin->w_cursor.lnum,
3804 (long)curbuf->b_ml.ml_line_count,
3805 n);
3806 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003807 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003808 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3810 }
3811
Bram Moolenaar32526b32019-01-19 17:43:09 +01003812 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3813 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814
3815 if (dont_truncate)
3816 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003817 // Temporarily set msg_scroll to avoid the message being truncated.
3818 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 msg_start();
3820 n = msg_scroll;
3821 msg_scroll = TRUE;
3822 msg(buffer);
3823 msg_scroll = n;
3824 }
3825 else
3826 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003827 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003829 // Need to repeat the message after redrawing when:
3830 // - When restart_edit is set (otherwise there will be a delay
3831 // before redrawing).
3832 // - When the screen was scrolled but there is no wait-return
3833 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003834 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 }
3836
3837 vim_free(buffer);
3838}
3839
3840 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003841col_print(
3842 char_u *buf,
3843 size_t buflen,
3844 int col,
3845 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846{
3847 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003848 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003850 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851}
3852
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853static char_u *lasttitle = NULL;
3854static char_u *lasticon = NULL;
3855
Bram Moolenaar84a93082018-06-16 22:58:15 +02003856/*
3857 * Put the file name in the title bar and icon of the window.
3858 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003860maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861{
3862 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003863 char_u *title_str = NULL;
3864 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 int maxlen = 0;
3866 int len;
3867 int mustset;
3868 char_u buf[IOSIZE];
3869 int off;
3870
3871 if (!redrawing())
3872 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003873 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 need_maketitle = TRUE;
3875 return;
3876 }
3877
3878 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003879 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003880 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881
3882 if (p_title)
3883 {
3884 if (p_titlelen > 0)
3885 {
3886 maxlen = p_titlelen * Columns / 100;
3887 if (maxlen < 10)
3888 maxlen = 10;
3889 }
3890
Bram Moolenaar84a93082018-06-16 22:58:15 +02003891 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 if (*p_titlestring != NUL)
3893 {
3894#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003895 if (stl_syntax & STL_IN_TITLE)
3896 {
3897 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003898 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003899
3900# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003901 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003902# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003903 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003904 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003905 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003906 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003907 set_string_option_direct((char_u *)"titlestring", -1,
3908 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 else
3911#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003912 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 }
3914 else
3915 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003916 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917
Bram Moolenaar2c666692012-09-05 13:30:40 +02003918#define SPACE_FOR_FNAME (IOSIZE - 100)
3919#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003920#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003922 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003923#ifdef FEAT_TERMINAL
3924 else if (curbuf->b_term != NULL)
3925 {
3926 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3927 SPACE_FOR_FNAME);
3928 }
3929#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 else
3931 {
3932 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003933 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 }
3936
Bram Moolenaar21554412017-07-24 21:44:43 +02003937#ifdef FEAT_TERMINAL
3938 if (curbuf->b_term == NULL)
3939#endif
3940 switch (bufIsChanged(curbuf)
3941 + (curbuf->b_p_ro * 2)
3942 + (!curbuf->b_p_ma * 4))
3943 {
3944 case 1: STRCAT(buf, " +"); break;
3945 case 2: STRCAT(buf, " ="); break;
3946 case 3: STRCAT(buf, " =+"); break;
3947 case 4:
3948 case 6: STRCAT(buf, " -"); break;
3949 case 5:
3950 case 7: STRCAT(buf, " -+"); break;
3951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952
Bram Moolenaar21554412017-07-24 21:44:43 +02003953 if (curbuf->b_fname != NULL
3954#ifdef FEAT_TERMINAL
3955 && curbuf->b_term == NULL
3956#endif
3957 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003959 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 off = (int)STRLEN(buf);
3961 buf[off++] = ' ';
3962 buf[off++] = '(';
3963 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003964 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003966 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 if (isalpha(buf[off]) && buf[off + 1] == ':')
3968 off += 2;
3969#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003970 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003971 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003973 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003974 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003975 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003976 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003980
Bram Moolenaarc667da52019-11-30 20:52:27 +01003981 // Translate unprintable chars and concatenate. Keep some
3982 // room for the server name. When there is no room (very long
3983 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003984 if (off < SPACE_FOR_DIR)
3985 {
3986 p = transstr(buf + off);
3987 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3988 vim_free(p);
3989 }
3990 else
3991 {
3992 vim_strncpy(buf + off, (char_u *)"...",
3993 (size_t)(SPACE_FOR_ARGNR - off));
3994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 STRCAT(buf, ")");
3996 }
3997
Bram Moolenaar2c666692012-09-05 13:30:40 +02003998 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999
4000#if defined(FEAT_CLIENTSERVER)
4001 if (serverName != NULL)
4002 {
4003 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004004 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 }
4006 else
4007#endif
4008 STRCAT(buf, " - VIM");
4009
4010 if (maxlen > 0)
4011 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004012 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004013 if (vim_strsize(buf) > maxlen)
4014 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 }
4016 }
4017 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004018 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019
4020 if (p_icon)
4021 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004022 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 if (*p_iconstring != NUL)
4024 {
4025#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004026 if (stl_syntax & STL_IN_ICON)
4027 {
4028 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004029 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004030
4031# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004032 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004033# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004034 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004035 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004036 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004037 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004038 set_string_option_direct((char_u *)"iconstring", -1,
4039 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004040 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 else
4042#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004043 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 }
4045 else
4046 {
4047 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004048 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004049 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004050 p = gettail(curbuf->b_ffname);
4051 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004052 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004053 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 if (len > 100)
4055 {
4056 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004058 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004059 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004061 STRCPY(icon_str, p);
4062 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 }
4064 }
4065
Bram Moolenaar84a93082018-06-16 22:58:15 +02004066 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067
4068 if (mustset)
4069 resettitle();
4070}
4071
4072/*
4073 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4074 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004075 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 */
4077 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004078value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079{
4080 if ((str == NULL) != (*last == NULL)
4081 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4082 {
4083 vim_free(*last);
4084 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004085 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004087 mch_restore_title(
4088 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004091 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004093 return TRUE;
4094 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 }
4096 return FALSE;
4097}
4098
4099/*
4100 * Put current window title back (used after calling a shell)
4101 */
4102 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004103resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104{
4105 mch_settitle(lasttitle, lasticon);
4106}
Bram Moolenaarea408852005-06-25 22:49:46 +00004107
4108# if defined(EXITFREE) || defined(PROTO)
4109 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004110free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004111{
4112 vim_free(lasttitle);
4113 vim_free(lasticon);
4114}
4115# endif
4116
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004118#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004119
4120/*
4121 * Used for building in the status line.
4122 */
4123typedef struct
4124{
4125 char_u *stl_start;
4126 int stl_minwid;
4127 int stl_maxwid;
4128 enum {
4129 Normal,
4130 Empty,
4131 Group,
4132 Middle,
4133 Highlight,
4134 TabPage,
4135 Trunc
4136 } stl_type;
4137} stl_item_T;
4138
4139static size_t stl_items_len = 20; // Initial value, grows as needed.
4140static stl_item_T *stl_items = NULL;
4141static int *stl_groupitem = NULL;
4142static stl_hlrec_T *stl_hltab = NULL;
4143static stl_hlrec_T *stl_tabtab = NULL;
4144
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004146 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 * Return length of string in screen cells.
4148 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004149 * Normally works for window "wp", except when working for 'tabline' then it
4150 * is "curwin".
4151 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 * Items are drawn interspersed with the text that surrounds it
4153 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4154 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4155 *
4156 * If maxwidth is not zero, the string will be filled at any middle marker
4157 * or truncated if too long, fillchar is used for all whitespace.
4158 */
4159 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004160build_stl_str_hl(
4161 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004162 char_u *out, // buffer to write into != NameBuff
4163 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004164 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004165 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004166 int fillchar,
4167 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004168 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4169 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170{
Bram Moolenaar10772302019-01-20 18:25:54 +01004171 linenr_T lnum;
4172 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 char_u *p;
4174 char_u *s;
4175 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004176 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004178 win_T *save_curwin;
4179 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004180 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181#endif
4182 int empty_line;
4183 colnr_T virtcol;
4184 long l;
4185 long n;
4186 int prevchar_isflag;
4187 int prevchar_isitem;
4188 int itemisflag;
4189 int fillable;
4190 char_u *str;
4191 long num;
4192 int width;
4193 int itemcnt;
4194 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004195 int group_end_userhl;
4196 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004198#ifdef FEAT_EVAL
4199 int evaldepth;
4200#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 int minwid;
4202 int maxwid;
4203 int zeropad;
4204 char_u base;
4205 char_u opt;
4206#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004207 char_u buf_tmp[TMPLEN];
4208 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004209 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004210 stl_hlrec_T *sp;
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004211 int save_redraw_not_allowed = redraw_not_allowed;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004212 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004213
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004214 // When inside update_screen() we do not want redrawing a statusline,
4215 // ruler, title, etc. to trigger another redraw, it may cause an endless
4216 // loop.
4217 if (updating_screen)
4218 redraw_not_allowed = TRUE;
4219
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004220 if (stl_items == NULL)
4221 {
4222 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4223 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004224
4225 // Allocate one more, because the last element is used to indicate the
4226 // end of the list.
4227 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4228 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004229 }
4230
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004231#ifdef FEAT_EVAL
4232 /*
4233 * When the format starts with "%!" then evaluate it as an expression and
4234 * use the result as the actual format string.
4235 */
4236 if (fmt[0] == '%' && fmt[1] == '!')
4237 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004238 typval_T tv;
4239
4240 tv.v_type = VAR_NUMBER;
4241 tv.vval.v_number = wp->w_id;
4242 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4243
Bram Moolenaar9530b582022-01-22 13:39:08 +00004244 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004245 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004246 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004247
4248 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004249 }
4250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
4252 if (fillchar == 0)
4253 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004254
Bram Moolenaar10772302019-01-20 18:25:54 +01004255 // The cursor in windows other than the current one isn't always
4256 // up-to-date, esp. because of autocommands and timers.
4257 lnum = wp->w_cursor.lnum;
4258 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4259 {
4260 lnum = wp->w_buffer->b_ml.ml_line_count;
4261 wp->w_cursor.lnum = lnum;
4262 }
4263
4264 // Get line & check if empty (cursorpos will show "0-1"). Note that
4265 // p will become invalid when getting another buffer line.
4266 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004267 empty_line = (*p == NUL);
4268
Bram Moolenaar10772302019-01-20 18:25:54 +01004269 // Get the byte value now, in case we need it below. This is more efficient
4270 // than making a copy of the line.
4271 len = STRLEN(p);
4272 if (wp->w_cursor.col > (colnr_T)len)
4273 {
4274 // Line may have changed since checking the cursor column, or the lnum
4275 // was adjusted above.
4276 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004277 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004278 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004279 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004280 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004281 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282
4283 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004284#ifdef FEAT_EVAL
4285 evaldepth = 0;
4286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 p = out;
4288 curitem = 0;
4289 prevchar_isflag = TRUE;
4290 prevchar_isitem = FALSE;
zeertzjq122dea72022-07-27 15:48:45 +01004291 for (s = usefmt; *s != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004293 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004294 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004295 size_t new_len = stl_items_len * 3 / 2;
4296 stl_item_T *new_items;
4297 int *new_groupitem;
4298 stl_hlrec_T *new_hlrec;
4299
4300 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4301 if (new_items == NULL)
4302 break;
4303 stl_items = new_items;
4304 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4305 if (new_groupitem == NULL)
4306 break;
4307 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004308 new_hlrec = vim_realloc(stl_hltab,
4309 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004310 if (new_hlrec == NULL)
4311 break;
4312 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004313 new_hlrec = vim_realloc(stl_tabtab,
4314 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004315 if (new_hlrec == NULL)
4316 break;
4317 stl_tabtab = new_hlrec;
4318 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004319 }
4320
zeertzjq122dea72022-07-27 15:48:45 +01004321 if (*s != '%')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 prevchar_isflag = prevchar_isitem = FALSE;
4323
4324 /*
4325 * Handle up to the next '%' or the end.
4326 */
4327 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4328 *p++ = *s++;
4329 if (*s == NUL || p + 1 >= out + outlen)
4330 break;
4331
4332 /*
4333 * Handle one '%' item.
4334 */
4335 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004336 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004337 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 if (*s == '%')
4339 {
4340 if (p + 1 >= out + outlen)
4341 break;
4342 *p++ = *s++;
4343 prevchar_isflag = prevchar_isitem = FALSE;
4344 continue;
4345 }
4346 if (*s == STL_MIDDLEMARK)
4347 {
4348 s++;
4349 if (groupdepth > 0)
4350 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004351 stl_items[curitem].stl_type = Middle;
4352 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 continue;
4354 }
4355 if (*s == STL_TRUNCMARK)
4356 {
4357 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004358 stl_items[curitem].stl_type = Trunc;
4359 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 continue;
4361 }
4362 if (*s == ')')
4363 {
4364 s++;
4365 if (groupdepth < 1)
4366 continue;
4367 groupdepth--;
4368
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004369 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 *p = NUL;
4371 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004372 if (curitem > stl_groupitem[groupdepth] + 1
4373 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004375 // remove group if all items are empty and highlight group
4376 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004377 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004378 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004379 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004380 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004381 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004382 group_start_userhl = group_end_userhl =
4383 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004384 break;
4385 }
4386 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004387 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004388 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004389 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004391 if (stl_items[n].stl_type == Highlight)
4392 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004393 }
4394 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004396 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 p = t;
4398 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004399 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004400 {
4401 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004402 if (stl_items[n].stl_type == Highlight)
4403 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004404 // adjust the start position of TabPage to the next
4405 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004406 if (stl_items[n].stl_type == TabPage)
4407 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004408 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 }
4410 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004411 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004413 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 if (has_mbyte)
4415 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004416 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004418 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 {
4420 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004421 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 }
4423 }
4424 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004425 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4426 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427
4428 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004429 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004431
4432 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004433 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004434 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435
Bram Moolenaarc667da52019-11-30 20:52:27 +01004436 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004437 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 {
LemonBoy57ff5262022-05-09 21:03:47 +01004439 // Minus one for the leading '<' added above.
4440 stl_items[l].stl_start -= n - 1;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004441 if (stl_items[l].stl_start < t)
4442 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 }
4444 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004445 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004447 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004448 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 if (n < 0)
4450 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004451 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 n = 0 - n;
4453 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004454 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 }
4456 else
4457 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004458 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004459 l = (n - l) * MB_CHAR2LEN(fillchar);
4460 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004462 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004464 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4465 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004467 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 }
4469 }
4470 continue;
4471 }
4472 minwid = 0;
4473 maxwid = 9999;
4474 zeropad = FALSE;
4475 l = 1;
4476 if (*s == '0')
4477 {
4478 s++;
4479 zeropad = TRUE;
4480 }
4481 if (*s == '-')
4482 {
4483 s++;
4484 l = -1;
4485 }
4486 if (VIM_ISDIGIT(*s))
4487 {
4488 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004489 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 minwid = 0;
4491 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004492 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004494 stl_items[curitem].stl_type = Highlight;
4495 stl_items[curitem].stl_start = p;
4496 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 s++;
4498 curitem++;
4499 continue;
4500 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004501 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4502 {
4503 if (*s == STL_TABCLOSENR)
4504 {
4505 if (minwid == 0)
4506 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004507 // %X ends the close label, go back to the previously
4508 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004509 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004510 if (stl_items[n].stl_type == TabPage
4511 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004512 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004513 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004514 break;
4515 }
4516 }
4517 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004518 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004519 minwid = - minwid;
4520 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004521 stl_items[curitem].stl_type = TabPage;
4522 stl_items[curitem].stl_start = p;
4523 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004524 s++;
4525 curitem++;
4526 continue;
4527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 if (*s == '.')
4529 {
4530 s++;
4531 if (VIM_ISDIGIT(*s))
4532 {
4533 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004534 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 maxwid = 50;
4536 }
4537 }
4538 minwid = (minwid > 50 ? 50 : minwid) * l;
4539 if (*s == '(')
4540 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004541 stl_groupitem[groupdepth++] = curitem;
4542 stl_items[curitem].stl_type = Group;
4543 stl_items[curitem].stl_start = p;
4544 stl_items[curitem].stl_minwid = minwid;
4545 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 s++;
4547 curitem++;
4548 continue;
4549 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004550#ifdef FEAT_EVAL
4551 // Denotes end of expanded %{} block
4552 if (*s == '}' && evaldepth > 0)
4553 {
4554 s++;
4555 evaldepth--;
4556 continue;
4557 }
4558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 if (vim_strchr(STL_ALL, *s) == NULL)
4560 {
4561 s++;
4562 continue;
4563 }
4564 opt = *s++;
4565
Bram Moolenaarc667da52019-11-30 20:52:27 +01004566 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 base = 'D';
4568 itemisflag = FALSE;
4569 fillable = TRUE;
4570 num = -1;
4571 str = NULL;
4572 switch (opt)
4573 {
4574 case STL_FILEPATH:
4575 case STL_FULLPATH:
4576 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004577 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004579 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 else
4581 {
4582 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004583 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4585 }
4586 trans_characters(NameBuff, MAXPATHL);
4587 if (opt != STL_FILENAME)
4588 str = NameBuff;
4589 else
4590 str = gettail(NameBuff);
4591 break;
4592
Bram Moolenaarc667da52019-11-30 20:52:27 +01004593 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004594 {
4595#ifdef FEAT_EVAL
4596 char_u *block_start = s - 1;
4597#endif
4598 int reevaluate = (*s == '%');
4599
4600 if (reevaluate)
4601 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 itemisflag = TRUE;
4603 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004604 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4605 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004607 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 break;
4609 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004610 if (reevaluate)
4611 p[-1] = 0; // remove the % at the end of %{% expr %}
4612 else
4613 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004616 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4617 "%d", curbuf->b_fnum);
4618 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4619 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4620 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004622 save_curbuf = curbuf;
4623 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004624 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 curwin = wp;
4626 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004627 // Visual mode is only valid in the current window.
4628 if (curwin != save_curwin)
4629 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630
Bram Moolenaar9530b582022-01-22 13:39:08 +00004631 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004633 curwin = save_curwin;
4634 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004635 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004636 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004637 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638
4639 if (str != NULL && *str != 0)
4640 {
4641 if (*skipdigits(str) == NUL)
4642 {
4643 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004644 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 itemisflag = FALSE;
4646 }
4647 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004648
4649 // If the output of the expression needs to be evaluated
4650 // replace the %{} block with the result of evaluation
4651 if (reevaluate && str != NULL && *str != 0
4652 && strchr((const char *)str, '%') != NULL
4653 && evaldepth < MAX_STL_EVAL_DEPTH)
4654 {
4655 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4656 size_t str_length = strlen((const char *)str);
4657 size_t fmt_length = strlen((const char *)s);
4658 size_t new_fmt_len = parsed_usefmt
4659 + str_length + fmt_length + 3;
4660 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4661 char_u *new_fmt_p = new_fmt;
4662
4663 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4664 + parsed_usefmt;
4665 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4666 + str_length;
4667 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4668 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4669 + fmt_length;
4670 *new_fmt_p = 0;
4671 new_fmt_p = NULL;
4672
4673 if (usefmt != fmt)
4674 vim_free(usefmt);
4675 VIM_CLEAR(str);
4676 usefmt = new_fmt;
4677 s = usefmt + parsed_usefmt;
4678 evaldepth++;
4679 continue;
4680 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681#endif
4682 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 case STL_LINE:
4685 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4686 ? 0L : (long)(wp->w_cursor.lnum);
4687 break;
4688
4689 case STL_NUMLINES:
4690 num = wp->w_buffer->b_ml.ml_line_count;
4691 break;
4692
4693 case STL_COLUMN:
Bram Moolenaar24959102022-05-07 20:01:16 +01004694 num = (State & MODE_INSERT) == 0 && empty_line
4695 ? 0 : (int)wp->w_cursor.col + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 break;
4697
4698 case STL_VIRTCOL:
4699 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004700 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004701 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 if (opt == STL_VIRTCOL_ALT
Bram Moolenaar24959102022-05-07 20:01:16 +01004703 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0
4704 && empty_line ? 0 : (int)wp->w_cursor.col + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 break;
4706 num = (long)virtcol;
4707 break;
4708
4709 case STL_PERCENTAGE:
4710 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4711 (long)wp->w_buffer->b_ml.ml_line_count);
4712 break;
4713
4714 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004715 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004716 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 break;
4718
4719 case STL_ARGLISTSTAT:
4720 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004721 buf_tmp[0] = 0;
4722 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4723 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 break;
4725
4726 case STL_KEYMAP:
4727 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004728 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4729 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 break;
4731 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004732#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004733 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734#else
4735 num = 0;
4736#endif
4737 break;
4738
4739 case STL_BUFNO:
4740 num = wp->w_buffer->b_fnum;
4741 break;
4742
4743 case STL_OFFSET_X:
4744 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004745 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 case STL_OFFSET:
4747#ifdef FEAT_BYTEOFF
4748 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
Bram Moolenaar24959102022-05-07 20:01:16 +01004749 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0
4750 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line
4751 ? 0 : (int)wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752#endif
4753 break;
4754
4755 case STL_BYTEVAL_X:
4756 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004757 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004759 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 if (num == NL)
4761 num = 0;
4762 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4763 num = NL;
4764 break;
4765
4766 case STL_ROFLAG:
4767 case STL_ROFLAG_ALT:
4768 itemisflag = TRUE;
4769 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004770 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 break;
4772
4773 case STL_HELPFLAG:
4774 case STL_HELPFLAG_ALT:
4775 itemisflag = TRUE;
4776 if (wp->w_buffer->b_help)
4777 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004778 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 break;
4780
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 case STL_FILETYPE:
4782 if (*wp->w_buffer->b_p_ft != NUL
4783 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4784 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004785 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004786 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004787 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 }
4789 break;
4790
4791 case STL_FILETYPE_ALT:
4792 itemisflag = TRUE;
4793 if (*wp->w_buffer->b_p_ft != NUL
4794 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4795 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004796 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004797 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004798 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004800 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 }
4802 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
Bram Moolenaar4033c552017-09-16 20:54:51 +02004804#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 case STL_PREVIEWFLAG:
4806 case STL_PREVIEWFLAG_ALT:
4807 itemisflag = TRUE;
4808 if (wp->w_p_pvw)
4809 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4810 : _("[Preview]"));
4811 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004812
4813 case STL_QUICKFIX:
4814 if (bt_quickfix(wp->w_buffer))
4815 str = (char_u *)(wp->w_llist_ref
4816 ? _(msg_loclist)
4817 : _(msg_qflist));
4818 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819#endif
4820
4821 case STL_MODIFIED:
4822 case STL_MODIFIED_ALT:
4823 itemisflag = TRUE;
4824 switch ((opt == STL_MODIFIED_ALT)
4825 + bufIsChanged(wp->w_buffer) * 2
4826 + (!wp->w_buffer->b_p_ma) * 4)
4827 {
4828 case 2: str = (char_u *)"[+]"; break;
4829 case 3: str = (char_u *)",+"; break;
4830 case 4: str = (char_u *)"[-]"; break;
4831 case 5: str = (char_u *)",-"; break;
4832 case 6: str = (char_u *)"[+-]"; break;
4833 case 7: str = (char_u *)",+-"; break;
4834 }
4835 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004836
4837 case STL_HIGHLIGHT:
4838 t = s;
4839 while (*s != '#' && *s != NUL)
4840 ++s;
4841 if (*s == '#')
4842 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004843 stl_items[curitem].stl_type = Highlight;
4844 stl_items[curitem].stl_start = p;
4845 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004846 curitem++;
4847 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004848 if (*s != NUL)
4849 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004850 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 }
4852
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004853 stl_items[curitem].stl_start = p;
4854 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 if (str != NULL && *str)
4856 {
4857 t = str;
4858 if (itemisflag)
4859 {
4860 if ((t[0] && t[1])
4861 && ((!prevchar_isitem && *t == ',')
4862 || (prevchar_isflag && *t == ' ')))
4863 t++;
4864 prevchar_isflag = TRUE;
4865 }
4866 l = vim_strsize(t);
4867 if (l > 0)
4868 prevchar_isitem = TRUE;
4869 if (l > maxwid)
4870 {
4871 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 if (has_mbyte)
4873 {
4874 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004875 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 }
4877 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 l -= byte2cells(*t++);
4879 if (p + 1 >= out + outlen)
4880 break;
4881 *p++ = '<';
4882 }
4883 if (minwid > 0)
4884 {
4885 for (; l < minwid && p + 1 < out + outlen; l++)
4886 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004887 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4889 *p++ = ' ';
4890 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004891 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 }
4893 minwid = 0;
4894 }
4895 else
4896 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004897 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004899 // Change a space by fillchar, unless fillchar is '-' and a
4900 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004901 if (fillable && *t == ' '
4902 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4903 MB_CHAR2BYTES(fillchar, p);
4904 else
4905 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 }
4907 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004908 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 }
4910 else if (num >= 0)
4911 {
4912 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4913 char_u nstr[20];
4914
4915 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004916 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 prevchar_isitem = TRUE;
4918 t = nstr;
4919 if (opt == STL_VIRTCOL_ALT)
4920 {
4921 *t++ = '-';
4922 minwid--;
4923 }
4924 *t++ = '%';
4925 if (zeropad)
4926 *t++ = '0';
4927 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004928 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 *t = 0;
4930
4931 for (n = num, l = 1; n >= nbase; n /= nbase)
4932 l++;
4933 if (opt == STL_VIRTCOL_ALT)
4934 l++;
4935 if (l > maxwid)
4936 {
4937 l += 2;
4938 n = l - maxwid;
4939 while (l-- > maxwid)
4940 num /= nbase;
4941 *t++ = '>';
4942 *t++ = '%';
4943 *t = t[-3];
4944 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004945 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4946 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 }
4948 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004949 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4950 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 p += STRLEN(p);
4952 }
4953 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004954 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004956 if (num >= 0 || (!itemisflag && str != NULL && *str != NUL))
4957 prevchar_isflag = FALSE; // Item not NULL, but not a flag
4958 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 if (opt == STL_VIM_EXPR)
4960 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 curitem++;
4962 }
4963 *p = NUL;
4964 itemcnt = curitem;
4965
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004966#ifdef FEAT_EVAL
4967 if (usefmt != fmt)
4968 vim_free(usefmt);
4969#endif
4970
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 width = vim_strsize(out);
4972 if (maxwidth > 0 && width > maxwidth)
4973 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004974 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 l = 0;
4976 if (itemcnt == 0)
4977 s = out;
4978 else
4979 {
4980 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004981 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004983 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004984 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 break;
4986 }
4987 if (l == itemcnt)
4988 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004989 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004990 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 l = 0;
4992 }
4993 }
4994
4995 if (width - vim_strsize(s) >= maxwidth)
4996 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004997 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 if (has_mbyte)
4999 {
5000 s = out;
5001 width = 0;
5002 for (;;)
5003 {
5004 width += ptr2cells(s);
5005 if (width >= maxwidth)
5006 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005007 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005009 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005011 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 }
5013 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 s = out + maxwidth - 1;
5015 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005016 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 break;
5018 itemcnt = l;
5019 *s++ = '>';
5020 *s = 0;
5021 }
5022 else
5023 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 if (has_mbyte)
5025 {
5026 n = 0;
5027 while (width >= maxwidth)
5028 {
5029 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005030 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 }
5032 }
5033 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 n = width - maxwidth + 1;
5035 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005036 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 *s = '<';
5038
Bram Moolenaarc667da52019-11-30 20:52:27 +01005039 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 while (++width < maxwidth)
5041 {
5042 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005043 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 *s = NUL;
5045 }
5046
Bram Moolenaarc667da52019-11-30 20:52:27 +01005047 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 for (; l < itemcnt; l++)
5049 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005050 if (stl_items[l].stl_start - n >= s)
5051 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005053 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 }
5055 }
5056 width = maxwidth;
5057 }
5058 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5059 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005060 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005062 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 break;
5064 if (l < itemcnt)
5065 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005066 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5067 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005068 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005069 for (s = stl_items[l].stl_start; s < p;)
5070 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005072 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 width = maxwidth;
5074 }
5075 }
5076
Bram Moolenaarc667da52019-11-30 20:52:27 +01005077 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005078 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005080 *hltab = stl_hltab;
5081 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 for (l = 0; l < itemcnt; l++)
5083 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005084 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005086 sp->start = stl_items[l].stl_start;
5087 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005088 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 }
5090 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005091 sp->start = NULL;
5092 sp->userhl = 0;
5093 }
5094
Bram Moolenaarc667da52019-11-30 20:52:27 +01005095 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005096 if (tabtab != NULL)
5097 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005098 *tabtab = stl_tabtab;
5099 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005100 for (l = 0; l < itemcnt; l++)
5101 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005102 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005103 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005104 sp->start = stl_items[l].stl_start;
5105 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005106 sp++;
5107 }
5108 }
5109 sp->start = NULL;
5110 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 }
5112
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01005113 redraw_not_allowed = save_redraw_not_allowed;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005114
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005115 // A user function may reset KeyTyped, restore it.
5116 KeyTyped = save_KeyTyped;
5117
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 return width;
5119}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005120#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005122#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5123 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005125 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5126 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 */
5128 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005129get_rel_pos(
5130 win_T *wp,
5131 char_u *buf,
5132 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005134 long above; // number of lines above window
5135 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136
Bram Moolenaarc667da52019-11-30 20:52:27 +01005137 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005138 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 above = wp->w_topline - 1;
5140#ifdef FEAT_DIFF
5141 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005142 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005143 above = 0; // All buffer lines are displayed and there is an
5144 // indication of filler lines, that can be considered
5145 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146#endif
5147 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5148 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005149 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5150 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005152 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005154 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 ? (int)(above / ((above + below) / 100L))
5156 : (int)(above * 100L / (above + below)));
5157}
5158#endif
5159
5160/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005161 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 * Return TRUE if it was appended.
5163 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005164 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005165append_arg_number(
5166 win_T *wp,
5167 char_u *buf,
5168 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005169 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170{
5171 char_u *p;
5172
Bram Moolenaarc667da52019-11-30 20:52:27 +01005173 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 return FALSE;
5175
Bram Moolenaarc667da52019-11-30 20:52:27 +01005176 p = buf + STRLEN(buf); // go to the end of the buffer
5177 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 return FALSE;
5179 *p++ = ' ';
5180 *p++ = '(';
5181 if (add_file)
5182 {
5183 STRCPY(p, "file ");
5184 p += 5;
5185 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005186 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5187 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5189 return TRUE;
5190}
5191
5192/*
5193 * If fname is not a full path, make it a full path.
5194 * Returns pointer to allocated memory (NULL for failure).
5195 */
5196 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005197fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198{
5199 /*
5200 * Force expanding the path always for Unix, because symbolic links may
5201 * mess up the full path name, even though it starts with a '/'.
5202 * Also expand when there is ".." in the file name, try to remove it,
5203 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005204 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 * For MS-Windows also expand names like "longna~1" to "longname".
5206 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005207#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 return FullName_save(fname, TRUE);
5209#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005210 if (!vim_isAbsName(fname)
5211 || strstr((char *)fname, "..") != NULL
5212 || strstr((char *)fname, "//") != NULL
5213# ifdef BACKSLASH_IN_FILENAME
5214 || strstr((char *)fname, "\\\\") != NULL
5215# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005216# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005218# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 )
5220 return FullName_save(fname, FALSE);
5221
5222 fname = vim_strsave(fname);
5223
Bram Moolenaar9b942202007-10-03 12:31:33 +00005224# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005225 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005226 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228
5229 return fname;
5230#endif
5231}
5232
5233/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005234 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5235 * "*ffname" becomes a pointer to allocated memory (or NULL).
5236 * When resolving a link both "*sfname" and "*ffname" will point to the same
5237 * allocated memory.
5238 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005239 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005242fname_expand(
5243 buf_T *buf UNUSED,
5244 char_u **ffname,
5245 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005247 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005249 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005251 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252
5253#ifdef FEAT_SHORTCUT
5254 if (!buf->b_p_bin)
5255 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005256 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005258 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005259 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005260 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 {
5262 vim_free(*ffname);
5263 *ffname = rfname;
5264 *sfname = rfname;
5265 }
5266 }
5267#endif
5268}
5269
5270/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 * Open a window for a number of buffers.
5272 */
5273 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005274ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275{
5276 buf_T *buf;
5277 win_T *wp, *wpnext;
5278 int split_ret = OK;
5279 int p_ea_save;
5280 int open_wins = 0;
5281 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005282 int count; // Maximum number of windows to open.
5283 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005284 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005285 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286
Bram Moolenaarc667da52019-11-30 20:52:27 +01005287 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 count = 9999;
5289 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005290 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5292 all = FALSE;
5293 else
5294 all = TRUE;
5295
5296 setpcmark();
5297
5298#ifdef FEAT_GUI
5299 need_mouse_correct = TRUE;
5300#endif
5301
5302 /*
5303 * Close superfluous windows (two windows for the same buffer).
5304 * Also close windows that are not full-width.
5305 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005306 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005307 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005308 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005310 tpnext = curtab->tp_next;
5311 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005313 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005314 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005315 || ((cmdmod.cmod_split & WSP_VERT)
5316 ? wp->w_height + wp->w_status_height < Rows - p_ch
5317 - tabline_height()
5318 : wp->w_width != Columns)
5319 || (had_tab > 0 && wp != firstwin))
5320 && !ONE_WINDOW
5321 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5322 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005323 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005324 if (win_close(wp, FALSE) == FAIL)
5325 break;
5326 // Just in case an autocommand does something strange with
5327 // windows: start all over...
5328 wpnext = firstwin;
5329 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005330 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005331 }
5332 else
5333 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005335
Bram Moolenaarc667da52019-11-30 20:52:27 +01005336 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005337 if (had_tab == 0 || tpnext == NULL)
5338 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005339 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 }
5341
5342 /*
5343 * Go through the buffer list. When a buffer doesn't have a window yet,
5344 * open one. Otherwise move the window to the right position.
5345 * Watch out for autocommands that delete buffers or windows!
5346 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005347 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5352 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005353 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5355 continue;
5356
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005357 if (had_tab != 0)
5358 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005359 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005360 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005361 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005362 else
5363 wp = NULL;
5364 }
5365 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005366 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005367 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005368 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005369 if (wp->w_buffer == buf)
5370 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005371 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005372 if (wp != NULL)
5373 win_move_after(wp, curwin);
5374 }
5375
5376 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005378 bufref_T bufref;
5379
5380 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005381
Bram Moolenaarc667da52019-11-30 20:52:27 +01005382 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005384 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5386 ++open_wins;
5387 p_ea = p_ea_save;
5388 if (split_ret == FAIL)
5389 continue;
5390
Bram Moolenaarc667da52019-11-30 20:52:27 +01005391 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005394 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005396 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 break;
5399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 if (swap_exists_action == SEA_QUIT)
5401 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005402#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005403 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005404
Bram Moolenaarc667da52019-11-30 20:52:27 +01005405 // Reset the error/interrupt/exception state here so that
5406 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005407 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005408#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005409
Bram Moolenaarc667da52019-11-30 20:52:27 +01005410 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 win_close(curwin, TRUE);
5412 --open_wins;
5413 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005414 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005415
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005416#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005417 // Restore the error/interrupt/exception state if not
5418 // discarded by a new aborting error, interrupt, or uncaught
5419 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005420 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005421#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 }
5423 else
5424 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 }
5426
5427 ui_breakcheck();
5428 if (got_int)
5429 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005430 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 break;
5432 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005433#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005434 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005435 if (aborting())
5436 break;
5437#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005438 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005439 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005440 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005443 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445
5446 /*
5447 * Close superfluous windows.
5448 */
5449 for (wp = lastwin; open_wins > count; )
5450 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005451 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 if (!win_valid(wp))
5454 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005455 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 wp = lastwin;
5457 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005458 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005460 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 --open_wins;
5462 wp = lastwin;
5463 }
5464 else
5465 {
5466 wp = wp->w_prev;
5467 if (wp == NULL)
5468 break;
5469 }
5470 }
5471}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005474static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005475
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476/*
5477 * do_modelines() - process mode lines for the current file
5478 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005479 * "flags" can be:
5480 * OPT_WINONLY only set options local to window
5481 * OPT_NOWIN don't set options local to window
5482 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 * Returns immediately if the "ml" option isn't set.
5484 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005486do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005488 linenr_T lnum;
5489 int nmlines;
5490 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491
5492 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5493 return;
5494
Bram Moolenaarc667da52019-11-30 20:52:27 +01005495 // Disallow recursive entry here. Can happen when executing a modeline
5496 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 if (entered)
5498 return;
5499
5500 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005501 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005503 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 nmlines = 0;
5505
Hu Jialun9dcd3492021-08-28 20:42:50 +02005506 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005508 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 nmlines = 0;
5510 --entered;
5511}
5512
Bram Moolenaarc667da52019-11-30 20:52:27 +01005513#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514
5515/*
5516 * chk_modeline() - check a single line for a mode string
5517 * Return FAIL if an error encountered.
5518 */
5519 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005520chk_modeline(
5521 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005522 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523{
5524 char_u *s;
5525 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005526 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 int prev;
5528 int vers;
5529 int end;
5530 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005531 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005532
Bram Moolenaare31ee862020-01-07 20:59:34 +01005533 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
5535 prev = -1;
5536 for (s = ml_get(lnum); *s != NUL; ++s)
5537 {
5538 if (prev == -1 || vim_isspace(prev))
5539 {
5540 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5541 || STRNCMP(s, "vi:", (size_t)3) == 0)
5542 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005543 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005544 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 {
5546 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5547 e = s + 4;
5548 else
5549 e = s + 3;
5550 vers = getdigits(&e);
5551 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005552 && (s[0] != 'V'
5553 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 && (s[3] == ':'
5555 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5556 || (VIM_VERSION_100 < vers && s[3] == '<')
5557 || (VIM_VERSION_100 > vers && s[3] == '>')
5558 || (VIM_VERSION_100 == vers && s[3] == '=')))
5559 break;
5560 }
5561 }
5562 prev = *s;
5563 }
5564
5565 if (*s)
5566 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005567 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 ++s;
5569 while (s[-1] != ':');
5570
Bram Moolenaarc667da52019-11-30 20:52:27 +01005571 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 if (linecopy == NULL)
5573 return FAIL;
5574
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005575 // prepare for emsg()
5576 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005577 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578
5579 end = FALSE;
5580 while (end == FALSE)
5581 {
5582 s = skipwhite(s);
5583 if (*s == NUL)
5584 break;
5585
5586 /*
5587 * Find end of set command: ':' or end of line.
5588 * Skip over "\:", replacing it with ":".
5589 */
5590 for (e = s; *e != ':' && *e != NUL; ++e)
5591 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005592 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 if (*e == NUL)
5594 end = TRUE;
5595
5596 /*
5597 * If there is a "set" command, require a terminating ':' and
5598 * ignore the stuff after the ':'.
5599 * "vi:set opt opt opt: foo" -- foo not interpreted
5600 * "vi:opt opt opt: foo" -- foo interpreted
5601 * Accept "se" for compatibility with Elvis.
5602 */
5603 if (STRNCMP(s, "set ", (size_t)4) == 0
5604 || STRNCMP(s, "se ", (size_t)3) == 0)
5605 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005606 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 break;
5608 end = TRUE;
5609 s = vim_strchr(s, ' ') + 1;
5610 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005611 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612
Bram Moolenaarc667da52019-11-30 20:52:27 +01005613 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005615 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005616
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005617 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005618 current_sctx.sc_version = 1;
5619#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005620 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005621 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005622 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005624
Bram Moolenaar5958f952018-11-20 04:25:21 +01005625 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005626 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005627
Bram Moolenaara3227e22006-03-08 21:32:40 +00005628 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005629
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005630 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005631 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005632 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 break;
5634 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005635 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 }
5637
Bram Moolenaare31ee862020-01-07 20:59:34 +01005638 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005639 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 vim_free(linecopy);
5641 }
5642 return retval;
5643}
5644
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005645/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005646 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5647 */
5648 int
5649bt_normal(buf_T *buf)
5650{
5651 return buf != NULL && buf->b_p_bt[0] == NUL;
5652}
5653
5654/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005655 * Return TRUE if "buf" is the quickfix buffer.
5656 */
5657 int
Bram Moolenaar340dafd2022-08-25 16:16:45 +01005658bt_quickfix(buf_T *buf UNUSED)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005659{
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005660#ifdef FEAT_QUICKFIX
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005661 return buf != NULL && buf->b_p_bt[0] == 'q';
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005662#else
5663 return FALSE;
Bram Moolenaar113e1072019-01-20 15:30:40 +01005664#endif
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005665}
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005666
5667/*
5668 * Return TRUE if "buf" is a terminal buffer.
5669 */
5670 int
Bram Moolenaar340dafd2022-08-25 16:16:45 +01005671bt_terminal(buf_T *buf UNUSED)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005672{
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005673#if defined(FEAT_TERMINAL)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005674 return buf != NULL && buf->b_p_bt[0] == 't';
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005675#else
5676 return FALSE;
Bram Moolenaar113e1072019-01-20 15:30:40 +01005677#endif
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005678}
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005679
5680/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005681 * Return TRUE if "buf" is a help buffer.
5682 */
5683 int
5684bt_help(buf_T *buf)
5685{
5686 return buf != NULL && buf->b_help;
5687}
5688
5689/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005690 * Return TRUE if "buf" is a prompt buffer.
5691 */
5692 int
5693bt_prompt(buf_T *buf)
5694{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005695 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5696}
5697
Dominique Pelle748b3082022-01-08 12:41:16 +00005698#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005699/*
5700 * Return TRUE if "buf" is a buffer for a popup window.
5701 */
5702 int
5703bt_popup(buf_T *buf)
5704{
5705 return buf != NULL && buf->b_p_bt != NULL
5706 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005707}
Dominique Pelle748b3082022-01-08 12:41:16 +00005708#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005709
5710/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005711 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5712 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005713 */
5714 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005715bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005716{
5717 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5718 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005719 || buf->b_p_bt[0] == 't'
5720 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005721}
5722
Dominique Pelle748b3082022-01-08 12:41:16 +00005723#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005724/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005725 * Return TRUE if "buf" has 'buftype' set to "nofile".
5726 */
5727 int
5728bt_nofile(buf_T *buf)
5729{
5730 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5731}
Dominique Pelle748b3082022-01-08 12:41:16 +00005732#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005733
5734/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005735 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5736 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005737 */
5738 int
5739bt_dontwrite(buf_T *buf)
5740{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005741 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005742 || buf->b_p_bt[0] == 't'
5743 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005744}
5745
5746 int
5747bt_dontwrite_msg(buf_T *buf)
5748{
5749 if (bt_dontwrite(buf))
5750 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005751 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005752 return TRUE;
5753 }
5754 return FALSE;
5755}
5756
5757/*
5758 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5759 * and 'bufhidden'.
5760 */
5761 int
5762buf_hide(buf_T *buf)
5763{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005764 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005765 switch (buf->b_p_bh[0])
5766 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005767 case 'u': // "unload"
5768 case 'w': // "wipe"
5769 case 'd': return FALSE; // "delete"
5770 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005771 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005772 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005773}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774
5775/*
5776 * Return special buffer name.
5777 * Returns NULL when the buffer has a normal file name.
5778 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005779 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005780buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005782#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005784 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005785 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005786 * Differentiate between the quickfix and location list buffers using
5787 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005788 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005789 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005790 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005791 else
5792 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005795
Bram Moolenaarc667da52019-11-30 20:52:27 +01005796 // There is no _file_ when 'buftype' is "nofile", b_sfname
5797 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005798 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005800#ifdef FEAT_TERMINAL
5801 if (buf->b_term != NULL)
5802 return term_get_status_text(buf->b_term);
5803#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005804 if (buf->b_fname != NULL)
5805 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005806#ifdef FEAT_JOB_CHANNEL
5807 if (bt_prompt(buf))
5808 return (char_u *)_("[Prompt]");
5809#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005810#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005811 if (bt_popup(buf))
5812 return (char_u *)_("[Popup]");
5813#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005814 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005816
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005818 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 return NULL;
5820}
5821
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005823 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5824 */
5825 char_u *
5826buf_get_fname(buf_T *buf)
5827{
5828 if (buf->b_fname == NULL)
5829 return (char_u *)_("[No Name]");
5830 return buf->b_fname;
5831}
5832
5833/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5835 */
5836 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005837set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838{
5839 if (on != curbuf->b_p_bl)
5840 {
5841 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 if (on)
5843 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5844 else
5845 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 }
5847}
5848
5849/*
5850 * Read the file for "buf" again and check if the contents changed.
5851 * Return TRUE if it changed or this could not be checked.
5852 */
5853 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005854buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855{
5856 buf_T *newbuf;
5857 int differ = TRUE;
5858 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 exarg_T ea;
5861
Bram Moolenaarc667da52019-11-30 20:52:27 +01005862 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5864 if (newbuf == NULL)
5865 return TRUE;
5866
Bram Moolenaarc667da52019-11-30 20:52:27 +01005867 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 if (prep_exarg(&ea, buf) == FAIL)
5869 {
5870 wipe_buffer(newbuf, FALSE);
5871 return TRUE;
5872 }
5873
Bram Moolenaarc667da52019-11-30 20:52:27 +01005874 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876
Bram Moolenaar4770d092006-01-12 23:22:24 +00005877 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 && readfile(buf->b_ffname, buf->b_fname,
5879 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5880 &ea, READ_NEW | READ_DUMMY) == OK)
5881 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005882 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5884 {
5885 differ = FALSE;
5886 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5887 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5888 {
5889 differ = TRUE;
5890 break;
5891 }
5892 }
5893 }
5894 vim_free(ea.cmd);
5895
Bram Moolenaarc667da52019-11-30 20:52:27 +01005896 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898
Bram Moolenaarc667da52019-11-30 20:52:27 +01005899 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 wipe_buffer(newbuf, FALSE);
5901
5902 return differ;
5903}
5904
5905/*
5906 * Wipe out a buffer and decrement the last buffer number if it was used for
5907 * this buffer. Call this to wipe out a temp buffer that does not contain any
5908 * marks.
5909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005911wipe_buffer(
5912 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005913 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914{
5915 if (buf->b_fnum == top_file_num - 1)
5916 --top_file_num;
5917
Bram Moolenaarc667da52019-11-30 20:52:27 +01005918 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005919 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005920
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005921 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005922
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005924 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925}