blob: f2f32e1a6247c8bfd64170c6c271c4138c1489dd [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
shadmansaleh30e3de22021-05-15 17:23:28 +020030
31#ifdef FEAT_EVAL
32// Determines how deeply nested %{} blocks will be evaluated in statusline.
33# define MAX_STL_EVAL_DEPTH 100
34#endif
35
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020036static void enter_buffer(buf_T *buf);
37static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020041static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
42static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
43static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +020047static int value_changed(char_u *str, char_u **last);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010048static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
49static void free_buffer(buf_T *);
50static void free_buffer_stuff(buf_T *buf, int free_options);
51static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar00d253e2020-04-06 22:13:01 +020059#define FOR_ALL_BUFS_FROM_LAST(buf) \
60 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
66
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020067// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020068static int buf_free_count = 0;
69
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020070static int top_file_num = 1; // highest file number
71static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
72
73/*
74 * Return the highest possible buffer number.
75 */
76 int
77get_highest_fnum(void)
78{
79 return top_file_num - 1;
80}
81
Bram Moolenaarc024b462019-06-08 18:07:21 +020082/*
83 * Read data from buffer for retrying.
84 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020085 static int
86read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010087 int read_stdin, // read file from stdin, otherwise fifo
88 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
89 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020090{
91 int retval = OK;
92 linenr_T line_count;
93
Bram Moolenaarc5935a82021-10-19 20:48:52 +010094 // Read from the buffer which the text is already filled in and append at
95 // the end. This makes it possible to retry when 'fileformat' or
96 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020097 line_count = curbuf->b_ml.ml_line_count;
98 retval = readfile(
99 read_stdin ? NULL : curbuf->b_ffname,
100 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100101 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200102 flags | READ_BUFFER);
103 if (retval == OK)
104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100105 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200106 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200107 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200108 }
109 else
110 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100111 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200112 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200113 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200114 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100115 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116 curwin->w_cursor.lnum = 1;
117 curwin->w_cursor.col = 0;
118
119 if (read_stdin)
120 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100121 // Set or reset 'modified' before executing autocommands, so that
122 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100123 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100125 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200126 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 if (retval == OK)
129 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100130#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100131 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100132 curbuf, &retval);
133#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100134 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200135#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100136 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200137 }
138 return retval;
139}
140
Dominique Pelle748b3082022-01-08 12:41:16 +0000141#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200143 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
144 */
145 void
146buffer_ensure_loaded(buf_T *buf)
147{
148 if (buf->b_ml.ml_mfp == NULL)
149 {
150 aco_save_T aco;
151
152 aucmd_prepbuf(&aco, buf);
Bram Moolenaar188639d2022-04-04 16:57:21 +0100153 if (swap_exists_action != SEA_READONLY)
154 swap_exists_action = SEA_NONE;
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200155 open_buffer(FALSE, NULL, 0);
156 aucmd_restbuf(&aco);
157 }
158}
Dominique Pelle748b3082022-01-08 12:41:16 +0000159#endif
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200160
161/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200162 * Open current buffer, that is: open the memfile and read the file into
163 * memory.
164 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 */
166 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100167open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100168 int read_stdin, // read file from stdin
169 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
170 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171{
172 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200173 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100174#ifdef FEAT_SYN_HL
175 long old_tw = curbuf->b_p_tw;
176#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200177 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100179 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
180 // When re-entering the same buffer, it should not change, because the
181 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 if (readonlymode && curbuf->b_ffname != NULL
183 && (curbuf->b_flags & BF_NEVERLOADED))
184 curbuf->b_p_ro = TRUE;
185
Bram Moolenaar4770d092006-01-12 23:22:24 +0000186 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100188 // There MUST be a memfile, otherwise we can't do anything
189 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100190 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200191 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 if (curbuf->b_ml.ml_mfp != NULL)
193 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100194 // If there is no memfile at all, exit.
195 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 if (curbuf == NULL)
197 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000198 emsg(_(e_cannot_allocate_any_buffer_exiting));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200199
200 // Don't try to do any saving, with "curbuf" NULL almost nothing
201 // will work.
202 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 getout(2);
204 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200205
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000206 emsg(_(e_cannot_allocate_buffer_using_other_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100208#ifdef FEAT_SYN_HL
209 if (old_tw != curbuf->b_p_tw)
210 check_colorcolumn(curwin);
211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 return FAIL;
213 }
214
Bram Moolenaarc667da52019-11-30 20:52:27 +0100215 // The autocommands in readfile() may change the buffer, but only AFTER
216 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200217 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
Bram Moolenaarc667da52019-11-30 20:52:27 +0100220 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100221 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
Bram Moolenaar2eddbac2022-08-25 12:45:21 +0100223 // Read the file if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 if (curbuf->b_ffname != NULL
Bram Moolenaar2e6dcbc2022-08-25 13:54:16 +0100225#ifdef FEAT_QUICKFIX
Bram Moolenaar2eddbac2022-08-25 12:45:21 +0100226 && !bt_quickfix(curbuf)
Bram Moolenaar2e6dcbc2022-08-25 13:54:16 +0100227#endif
Bram Moolenaar2eddbac2022-08-25 12:45:21 +0100228 && !bt_nofilename(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229#ifdef FEAT_NETBEANS_INTG
230 && netbeansReadFile
231#endif
232 )
233 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100234 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200235#ifdef UNIX
236 int save_bin = curbuf->b_p_bin;
237 int perm;
238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239#ifdef FEAT_NETBEANS_INTG
240 int oldFire = netbeansFireChanges;
241
242 netbeansFireChanges = 0;
243#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200244#ifdef UNIX
245 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200246 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200247 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200248# ifdef OPEN_CHR_FILES
249 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
250# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200251 ))
252 read_fifo = TRUE;
253 if (read_fifo)
254 curbuf->b_p_bin = TRUE;
255#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100256 if (shortmess(SHM_FILEINFO))
257 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200259 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200260 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
261#ifdef UNIX
262 if (read_fifo)
263 {
264 curbuf->b_p_bin = save_bin;
265 if (retval == OK)
266 retval = read_buffer(FALSE, eap, flags);
267 }
268#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100269 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270#ifdef FEAT_NETBEANS_INTG
271 netbeansFireChanges = oldFire;
272#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100273 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200274 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 fix_help_buffer();
276 }
277 else if (read_stdin)
278 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200279 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100281 // First read the text in binary mode into the buffer.
282 // Then read from that same buffer and append at the end. This makes
283 // it possible to retry when 'fileformat' or 'fileencoding' was
284 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 curbuf->b_p_bin = TRUE;
286 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200287 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
288 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 curbuf->b_p_bin = save_bin;
290 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200291 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 }
293
Bram Moolenaarc667da52019-11-30 20:52:27 +0100294 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100296 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100298 parse_cino(curbuf);
299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100301 // Set/reset the Changed flag first, autocmds may change the buffer.
302 // Apply the automatic commands, before processing the modelines.
303 // So the modelines have priority over autocommands.
304 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100305 // When reading stdin, the buffer contents always needs writing, so set
306 // the changed flag. Unless in readonly mode: "ls | gview -".
307 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000308 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100309 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100310#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000313 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100315 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200316 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100317 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318
Bram Moolenaarc667da52019-11-30 20:52:27 +0100319 // Set last_changedtick to avoid triggering a TextChanged autocommand right
320 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100321 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100322 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100323 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100324
Bram Moolenaarc667da52019-11-30 20:52:27 +0100325 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326#ifdef FEAT_EVAL
327 if (aborting())
328#else
329 if (got_int)
330#endif
331 curbuf->b_flags |= BF_READERR;
332
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000333#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100334 // Need to update automatic folding. Do this before the autocommands,
335 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000336 foldUpdateAll(curwin);
337#endif
338
Bram Moolenaarc667da52019-11-30 20:52:27 +0100339 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 if (!(curwin->w_valid & VALID_TOPLINE))
341 {
342 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100343#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100347#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100349#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351#endif
352
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100353 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100355 // The autocommands may have changed the current buffer. Apply the
356 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200357 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {
359 aco_save_T aco;
360
Bram Moolenaarc667da52019-11-30 20:52:27 +0100361 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200362 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000363 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
365
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100366 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100367#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100368 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
369 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100370#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100371 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100372#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373
Bram Moolenaarc667da52019-11-30 20:52:27 +0100374 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 aucmd_restbuf(&aco);
376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 }
378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 return retval;
380}
381
382/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200383 * Store "buf" in "bufref" and set the free count.
384 */
385 void
386set_bufref(bufref_T *bufref, buf_T *buf)
387{
388 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200389 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200390 bufref->br_buf_free_count = buf_free_count;
391}
392
393/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200394 * Return TRUE if "bufref->br_buf" points to the same buffer as when
395 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200396 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200397 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
398 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200399 */
400 int
401bufref_valid(bufref_T *bufref)
402{
403 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200404 ? TRUE : buf_valid(bufref->br_buf)
405 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200406}
407
408/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200410 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 */
412 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100413buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414{
415 buf_T *bp;
416
Bram Moolenaarc667da52019-11-30 20:52:27 +0100417 // Assume that we more often have a recent buffer, start with the last
418 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200419 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 if (bp == buf)
421 return TRUE;
422 return FALSE;
423}
424
425/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200426 * A hash table used to quickly lookup a buffer by its number.
427 */
428static hashtab_T buf_hashtab;
429
430 static void
431buf_hashtab_add(buf_T *buf)
432{
433 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
434 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000435 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200436}
437
438 static void
439buf_hashtab_remove(buf_T *buf)
440{
441 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
442
443 if (!HASHITEM_EMPTY(hi))
444 hash_remove(&buf_hashtab, hi);
445}
446
Bram Moolenaar94f01952018-09-01 15:30:03 +0200447/*
448 * Return TRUE when buffer "buf" can be unloaded.
449 * Give an error message and return FALSE when the buffer is locked or the
450 * screen is being redrawn and the buffer is in a window.
451 */
452 static int
453can_unload_buffer(buf_T *buf)
454{
455 int can_unload = !buf->b_locked;
456
457 if (can_unload && updating_screen)
458 {
459 win_T *wp;
460
461 FOR_ALL_WINDOWS(wp)
462 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200463 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200464 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200465 break;
466 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200467 }
468 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000469 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200470 return can_unload;
471}
Bram Moolenaara997b452018-04-17 23:24:06 +0200472
Bram Moolenaar480778b2016-07-14 22:09:39 +0200473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 * Close the link to a buffer.
475 * "action" is used when there is no longer a window for the buffer.
476 * It can be:
477 * 0 buffer becomes hidden
478 * DOBUF_UNLOAD buffer is unloaded
479 * DOBUF_DELETE buffer is unloaded and removed from buffer list
480 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200481 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 * When doing all but the first one on the current buffer, the caller should
483 * get a new buffer very soon!
484 *
485 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100486 *
487 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
488 * cause there to be only one window with this buffer. e.g. when ":quit" is
489 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100490 *
491 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100492 *
493 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100495 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100496close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100497 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100498 buf_T *buf,
499 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100500 int abort_if_last,
501 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100504 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200505 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100506 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200507 win_T *the_curwin = curwin;
508 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200510 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
511 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512
Bram Moolenaarcee52202020-03-11 14:19:58 +0100513 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100514
515 // Force unloading or deleting when 'bufhidden' says so.
516 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
517 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100518 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200519 {
520 del_buf = TRUE;
521 unload_buf = TRUE;
522 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100523 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200524 {
525 del_buf = TRUE;
526 unload_buf = TRUE;
527 wipe_buf = TRUE;
528 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100529 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200530 unload_buf = TRUE;
531
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200533 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200534 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100535 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200536 if (term_job_running(buf->b_term))
537 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200538 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200539 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200540 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100541 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200542
Bram Moolenaarc667da52019-11-30 20:52:27 +0100543 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200544 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200545 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200546 else
547 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100548 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200549 del_buf = FALSE;
550 unload_buf = FALSE;
551 }
552 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100553 else if (buf->b_p_bh[0] == 'h' && !del_buf)
554 {
555 // Hide a terminal buffer.
556 unload_buf = FALSE;
557 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200558 else
559 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100560 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200561 del_buf = TRUE;
562 unload_buf = TRUE;
563 wipe_buf = TRUE;
564 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100565 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200566 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568
Bram Moolenaarc667da52019-11-30 20:52:27 +0100569 // Disallow deleting the buffer when it is locked (already being closed or
570 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200571 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100572 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200573
Bram Moolenaarc667da52019-11-30 20:52:27 +0100574 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200575 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100577 // Set b_last_cursor when closing the last window for the buffer.
578 // Remember the last cursor position and window options of the buffer.
579 // This used to be only for the current window, but then options like
580 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 if (buf->b_nwindows == 1)
582 set_last_cursor(win);
583 buflist_setfpos(buf, win,
584 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
585 win->w_cursor.col, TRUE);
586 }
587
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200588 set_bufref(&bufref, buf);
589
Bram Moolenaarc667da52019-11-30 20:52:27 +0100590 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 if (buf->b_nwindows == 1)
592 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200593 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100594 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200595 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
596 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200597 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100598 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100599 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200600aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000601 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100602 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100603 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200604 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100605 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200606 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100607 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200608 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609
Bram Moolenaarc667da52019-11-30 20:52:27 +0100610 // When the buffer becomes hidden, but is not unloaded, trigger
611 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 if (!unload_buf)
613 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200614 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100615 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200616 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
617 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200618 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100619 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200620 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200621 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100622 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200623 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100624 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200625 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100627#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100628 // autocmds may abort script processing
629 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100630 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200633
Bram Moolenaarc667da52019-11-30 20:52:27 +0100634 // If the buffer was in curwin and the window has changed, go back to that
635 // window, if it still exists. This avoids that ":edit x" triggering a
636 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200637 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
638 {
639 block_autocmds();
640 goto_tabpage_win(the_curtab, the_curwin);
641 unblock_autocmds();
642 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200643
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
Bram Moolenaarc667da52019-11-30 20:52:27 +0100646 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 if (buf->b_nwindows > 0)
648 --buf->b_nwindows;
649
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100650#ifdef FEAT_DIFF
651 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100652 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100653#endif
654
Bram Moolenaarc667da52019-11-30 20:52:27 +0100655 // Return when a window is displaying the buffer or when it's not
656 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100658 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659
Bram Moolenaarc667da52019-11-30 20:52:27 +0100660 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 if (buf->b_ffname == NULL)
662 del_buf = TRUE;
663
Bram Moolenaarc667da52019-11-30 20:52:27 +0100664 // When closing the current buffer stop Visual mode before freeing
665 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200666 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200667#if defined(EXITFREE)
668 && !entered_free_all_mem
669#endif
670 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200671 end_visual_mode();
672
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100673 // Free all things allocated for this buffer.
674 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
675 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100676 // Remember if we are closing the current buffer. Restore the number of
677 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 is_curbuf = (buf == curbuf);
679 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100681 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100682 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100683 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684
Bram Moolenaarc667da52019-11-30 20:52:27 +0100685 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200686 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100687 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100688#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100689 // autocmds may abort script processing
690 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100691 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100692#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100694 // It's possible that autocommands change curbuf to the one being deleted.
695 // This might cause the previous curbuf to be deleted unexpectedly. But
696 // in some cases it's OK to delete the curbuf, because a new one is
697 // obtained anyway. Therefore only return if curbuf changed to the
698 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100700 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200701
Bram Moolenaar4033c552017-09-16 20:54:51 +0200702 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100703 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200704
Bram Moolenaarc667da52019-11-30 20:52:27 +0100705 // Autocommands may have opened or closed windows for this buffer.
706 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200707 if (buf->b_nwindows > 0)
708 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 /*
711 * Remove the buffer from the list.
712 */
713 if (wipe_buf)
714 {
Bram Moolenaar347538f2022-03-26 16:28:06 +0000715 // Do not wipe out the buffer if it is used in a window.
716 if (buf->b_nwindows > 0)
717 return FALSE;
718
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200719 if (action == DOBUF_WIPE_REUSE)
720 {
721 // we can re-use this buffer number, store it
722 if (buf_reuse.ga_itemsize == 0)
723 ga_init2(&buf_reuse, sizeof(int), 50);
724 if (ga_grow(&buf_reuse, 1) == OK)
725 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
726 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200727 if (buf->b_sfname != buf->b_ffname)
728 VIM_CLEAR(buf->b_sfname);
729 else
730 buf->b_sfname = NULL;
731 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 if (buf->b_prev == NULL)
733 firstbuf = buf->b_next;
734 else
735 buf->b_prev->b_next = buf->b_next;
736 if (buf->b_next == NULL)
737 lastbuf = buf->b_prev;
738 else
739 buf->b_next->b_prev = buf->b_prev;
740 free_buffer(buf);
741 }
742 else
743 {
744 if (del_buf)
745 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100746 // Free all internal variables and reset option values, to make
747 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 free_buffer_stuff(buf, TRUE);
749
Bram Moolenaarc667da52019-11-30 20:52:27 +0100750 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
752
Bram Moolenaarc667da52019-11-30 20:52:27 +0100753 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 buf->b_p_initialized = FALSE;
755 }
756 buf_clear_file(buf);
757 if (del_buf)
758 buf->b_p_bl = FALSE;
759 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100760 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100761 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762}
763
764/*
765 * Make buffer not contain a file.
766 */
767 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100768buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
770 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200771 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 buf->b_p_eol = TRUE;
774 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000776 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100778 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779#ifdef FEAT_NETBEANS_INTG
780 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781#endif
782}
783
784/*
785 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200786 * the file. Careful: get here with "curwin" NULL when exiting.
787 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100788 * BFA_DEL buffer is going to be deleted
789 * BFA_WIPE buffer is going to be wiped out
790 * BFA_KEEP_UNDO do not free undo information
791 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100794buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200797 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200798 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200799 win_T *the_curwin = curwin;
800 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801
Bram Moolenaarc667da52019-11-30 20:52:27 +0100802 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200803 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100804 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200805 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200806 if (buf->b_ml.ml_mfp != NULL)
807 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200808 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
809 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200810 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100811 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200812 return;
813 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200814 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200816 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
817 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200818 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100819 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 return;
821 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200822 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200824 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
825 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200826 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100827 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 return;
829 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200830 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100831 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200832
Bram Moolenaarc667da52019-11-30 20:52:27 +0100833 // If the buffer was in curwin and the window has changed, go back to that
834 // window, if it still exists. This avoids that ":edit x" triggering a
835 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200836 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
837 {
838 block_autocmds();
839 goto_tabpage_win(the_curtab, the_curwin);
840 unblock_autocmds();
841 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200842
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100843#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100844 // autocmds may abort script processing
845 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100849 // It's possible that autocommands change curbuf to the one being deleted.
850 // This might cause curbuf to be deleted unexpectedly. But in some cases
851 // it's OK to delete the curbuf, because a new one is obtained anyway.
852 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (buf == curbuf && !is_curbuf)
854 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100856 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200858#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100859 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200860 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100861 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200862#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000863
864#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100865 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000866 {
867 win_T *win;
868 tabpage_T *tp;
869
870 FOR_ALL_TAB_WINDOWS(tp, win)
871 if (win->w_buffer == buf)
872 clearFolding(win);
873 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000874#endif
875
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876#ifdef FEAT_TCL
877 tcl_buffer_free(buf);
878#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100879 ml_close(buf, TRUE); // close and delete the memline/memfile
880 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200881 if ((flags & BFA_KEEP_UNDO) == 0)
882 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100883 u_blockfree(buf); // free the memory allocated for undo
884 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200885 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100887 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100889#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100890 clear_buf_prop_types(buf);
891#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100892 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893}
894
895/*
896 * Free a buffer structure and the things it contains related to the buffer
897 * itself (not the file, that must have been done already).
898 */
899 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100900free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200902 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200904#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100905 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200906 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200907 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200908 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200909#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200910#ifdef FEAT_LUA
911 lua_buffer_free(buf);
912#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000913#ifdef FEAT_MZSCHEME
914 mzscheme_buffer_free(buf);
915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916#ifdef FEAT_PERL
917 perl_buf_free(buf);
918#endif
919#ifdef FEAT_PYTHON
920 python_buffer_free(buf);
921#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200922#ifdef FEAT_PYTHON3
923 python3_buffer_free(buf);
924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925#ifdef FEAT_RUBY
926 ruby_buffer_free(buf);
927#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200928#ifdef FEAT_JOB_CHANNEL
929 channel_buffer_free(buf);
930#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200931#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200932 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200933#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200934#ifdef FEAT_JOB_CHANNEL
935 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200936 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200937 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200938#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200939
940 buf_hashtab_remove(buf);
941
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200942 aubuflocal_remove(buf);
943
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200944 if (autocmd_busy)
945 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100946 // Do not free the buffer structure while autocommands are executing,
947 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200948 buf->b_next = au_pending_free_buf;
949 au_pending_free_buf = buf;
950 }
951 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100952 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200953 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100954 if (curbuf == buf)
955 curbuf = NULL; // make clear it's not to be used
956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957}
958
959/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100960 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100961 */
962 static void
963init_changedtick(buf_T *buf)
964{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100965 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100966
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100967 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
968 di->di_tv.v_type = VAR_NUMBER;
969 di->di_tv.v_lock = VAR_FIXED;
970 di->di_tv.vval.v_number = 0;
971
Bram Moolenaar92769c32017-02-25 15:41:37 +0100972#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100973 STRCPY(buf->b_ct_di.di_key, "changedtick");
974 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100975#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100976}
977
978/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
980 */
981 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100982free_buffer_stuff(
983 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100984 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 if (free_options)
987 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100988 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200990#ifdef FEAT_SPELL
991 ga_clear(&buf->b_s.b_langp);
992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 }
994#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100995 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100996 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100997
Bram Moolenaarc667da52019-11-30 20:52:27 +0100998 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100999 hash_init(&buf->b_vars->dv_hashtab);
1000 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001001 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +01001002 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001005 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001007 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001009#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001010 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001011#endif
Bram Moolenaar0c740e72022-07-25 19:07:04 +01001012#ifdef FEAT_PROP_POPUP
1013 ga_clear_strings(&buf->b_textprop_text);
1014#endif
zeertzjqc207fd22022-06-29 10:37:40 +01001015 map_clear_mode(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1016 map_clear_mode(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001017 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018}
1019
1020/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001021 * Free one wininfo_T.
1022 */
1023 void
1024free_wininfo(wininfo_T *wip)
1025{
1026 if (wip->wi_optset)
1027 {
1028 clear_winopt(&wip->wi_opt);
1029#ifdef FEAT_FOLDING
1030 deleteFoldRecurse(&wip->wi_folds);
1031#endif
1032 }
1033 vim_free(wip);
1034}
1035
1036/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 * Free the b_wininfo list for buffer "buf".
1038 */
1039 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001040clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041{
1042 wininfo_T *wip;
1043
1044 while (buf->b_wininfo != NULL)
1045 {
1046 wip = buf->b_wininfo;
1047 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001048 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 }
1050}
1051
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052/*
1053 * Go to another buffer. Handles the result of the ATTENTION dialog.
1054 */
1055 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001056goto_buffer(
1057 exarg_T *eap,
1058 int start,
1059 int dir,
1060 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001062 bufref_T old_curbuf;
Bram Moolenaar188639d2022-04-04 16:57:21 +01001063 int save_sea = swap_exists_action;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001064
1065 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Bram Moolenaar188639d2022-04-04 16:57:21 +01001067 if (swap_exists_action == SEA_NONE)
1068 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1070 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1072 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001073#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001074 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001075
Bram Moolenaarc667da52019-11-30 20:52:27 +01001076 // Reset the error/interrupt/exception state here so that
1077 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001078 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001079#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001080
Bram Moolenaarc667da52019-11-30 20:52:27 +01001081 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 win_close(curwin, TRUE);
Bram Moolenaar188639d2022-04-04 16:57:21 +01001083 swap_exists_action = save_sea;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001084 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001085
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001086#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001087 // Restore the error/interrupt/exception state if not discarded by a
1088 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001089 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 }
1092 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001093 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001094}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096/*
1097 * Handle the situation of swap_exists_action being set.
1098 * It is allowed for "old_curbuf" to be NULL or invalid.
1099 */
1100 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001101handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001103#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001104 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001105#endif
1106#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001107 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001108#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001109 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001110
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 if (swap_exists_action == SEA_QUIT)
1112 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001113#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001114 // Reset the error/interrupt/exception state here so that
1115 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001116 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001117#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001118
Bram Moolenaarc667da52019-11-30 20:52:27 +01001119 // User selected Quit at ATTENTION prompt. Go back to previous
1120 // buffer. If that buffer is gone or the same as the current one,
1121 // open a new, empty buffer.
1122 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001123 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001124 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001125 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1126 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001127 {
1128 // Block autocommands here because curwin->w_buffer is NULL.
1129 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001130 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001131 unblock_autocmds();
1132 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001133 else
1134 buf = old_curbuf->br_buf;
1135 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001136 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001137 int old_msg_silent = msg_silent;
1138
1139 if (shortmess(SHM_FILEINFO))
1140 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001141 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001142 // restore msg_silent, so that the command line will be shown
1143 msg_silent = old_msg_silent;
1144
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001145#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001146 if (old_tw != curbuf->b_p_tw)
1147 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001148#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001149 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001150 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001151
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001152#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001153 // Restore the error/interrupt/exception state if not discarded by a
1154 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001155 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001156#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 }
1158 else if (swap_exists_action == SEA_RECOVER)
1159 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001160#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001161 // Reset the error/interrupt/exception state here so that
1162 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001163 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001164#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001165
Bram Moolenaarc667da52019-11-30 20:52:27 +01001166 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001168 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001169 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001171 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001172
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001173#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001174 // Restore the error/interrupt/exception state if not discarded by a
1175 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001176 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001177#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 }
1179 swap_exists_action = SEA_NONE;
1180}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001183 * Make the current buffer empty.
1184 * Used when it is wiped out and it's the last buffer.
1185 */
1186 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001187empty_curbuf(
1188 int close_others,
1189 int forceit,
1190 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001191{
1192 int retval;
1193 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001194 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001195
1196 if (action == DOBUF_UNLOAD)
1197 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001198 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001199 return FAIL;
1200 }
1201
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001202 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001203 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001204 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001205 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001206
1207 setpcmark();
1208 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1209 forceit ? ECMD_FORCEIT : 0, curwin);
1210
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001211 // do_ecmd() may create a new buffer, then we have to delete
1212 // the old one. But do_ecmd() may have done that already, check
1213 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001214 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001215 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001216 if (!close_others)
1217 need_fileinfo = FALSE;
1218 return retval;
1219}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001220
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221/*
1222 * Implementation of the commands for the buffer list.
1223 *
1224 * action == DOBUF_GOTO go to specified buffer
1225 * action == DOBUF_SPLIT split window and go to specified buffer
1226 * action == DOBUF_UNLOAD unload specified buffer(s)
1227 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1228 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001229 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 *
1231 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1232 * start == DOBUF_FIRST go to "count" buffer from first buffer
1233 * start == DOBUF_LAST go to "count" buffer from last buffer
1234 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1235 *
1236 * Return FAIL or OK.
1237 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001238 static int
1239do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001240 int action,
1241 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001242 int dir, // FORWARD or BACKWARD
1243 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001244 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245{
1246 buf_T *buf;
1247 buf_T *bp;
1248 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001249 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250
1251 switch (start)
1252 {
1253 case DOBUF_FIRST: buf = firstbuf; break;
1254 case DOBUF_LAST: buf = lastbuf; break;
1255 default: buf = curbuf; break;
1256 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001257 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 {
1259 while (count-- > 0)
1260 {
1261 do
1262 {
1263 buf = buf->b_next;
1264 if (buf == NULL)
1265 buf = firstbuf;
1266 }
1267 while (buf != curbuf && !bufIsChanged(buf));
1268 }
1269 if (!bufIsChanged(buf))
1270 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001271 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 return FAIL;
1273 }
1274 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001275 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 {
1277 while (buf != NULL && buf->b_fnum != count)
1278 buf = buf->b_next;
1279 }
1280 else
1281 {
1282 bp = NULL;
1283 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1284 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001285 // remember the buffer where we start, we come back there when all
1286 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 if (bp == NULL)
1288 bp = buf;
1289 if (dir == FORWARD)
1290 {
1291 buf = buf->b_next;
1292 if (buf == NULL)
1293 buf = firstbuf;
1294 }
1295 else
1296 {
1297 buf = buf->b_prev;
1298 if (buf == NULL)
1299 buf = lastbuf;
1300 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001301 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 if (unload || buf->b_p_bl)
1303 {
1304 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001305 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 }
1307 if (bp == buf)
1308 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001309 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001310 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 return FAIL;
1312 }
1313 }
1314 }
1315
Bram Moolenaarc667da52019-11-30 20:52:27 +01001316 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 {
1318 if (start == DOBUF_FIRST)
1319 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001320 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001322 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 }
1324 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001325 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001327 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 return FAIL;
1329 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001330#ifdef FEAT_PROP_POPUP
1331 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1332# ifdef FEAT_TERMINAL
1333 && !bt_terminal(buf)
1334#endif
1335 )
1336 return OK;
1337#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339#ifdef FEAT_GUI
1340 need_mouse_correct = TRUE;
1341#endif
1342
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001344 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 */
1346 if (unload)
1347 {
1348 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001349 bufref_T bufref;
1350
Bram Moolenaar94f01952018-09-01 15:30:03 +02001351 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001352 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001353
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001354 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaarc667da52019-11-30 20:52:27 +01001356 // When unloading or deleting a buffer that's already unloaded and
1357 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001358 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1359 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 return FAIL;
1361
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001362 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001364#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001365 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 {
1367 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001368 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001369 // Autocommand deleted buffer, oops! It's not changed
1370 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001372 // If it's still changed fail silently, the dialog already
1373 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001374 if (bufIsChanged(buf))
1375 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001377 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001380 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 buf->b_fnum);
1382 return FAIL;
1383 }
1384 }
1385
Bram Moolenaarc667da52019-11-30 20:52:27 +01001386 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001387 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001388 end_visual_mode();
1389
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001390 // If deleting the last (listed) buffer, make it empty.
1391 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001392 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 if (bp->b_p_bl && bp != buf)
1394 break;
1395 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001396 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001398 // If the deleted buffer is the current one, close the current window
1399 // (unless it's the only window). Repeat this so long as we end up in
1400 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001401 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001402 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001403 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001404 {
1405 if (win_close(curwin, FALSE) == FAIL)
1406 break;
1407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001409 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 if (buf != curbuf)
1411 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001412 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001413 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001414 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 return OK;
1416 }
1417
1418 /*
1419 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001420 * There should be another, otherwise it would have been handled
1421 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001422 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 * Then prefer the buffer we most recently visited.
1424 * Else try to find one that is loaded, after the current buffer,
1425 * then before the current buffer.
1426 * Finally use any buffer.
1427 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001428 buf = NULL; // selected buffer
1429 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001430 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1431 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001432 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 {
1434 int jumpidx;
1435
1436 jumpidx = curwin->w_jumplistidx - 1;
1437 if (jumpidx < 0)
1438 jumpidx = curwin->w_jumplistlen - 1;
1439
1440 forward = jumpidx;
1441 while (jumpidx != curwin->w_jumplistidx)
1442 {
1443 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1444 if (buf != NULL)
1445 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001446 // Skip current and unlisted bufs. Also skip a quickfix
1447 // buffer, it might be deleted soon.
1448 if (buf == curbuf || !buf->b_p_bl
1449#if defined(FEAT_QUICKFIX)
1450 || bt_quickfix(buf)
1451#endif
1452 )
1453 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 else if (buf->b_ml.ml_mfp == NULL)
1455 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001456 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 if (bp == NULL)
1458 bp = buf;
1459 buf = NULL;
1460 }
1461 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001462 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001464 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1466 break;
1467 if (--jumpidx < 0)
1468 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001469 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 break;
1471 }
1472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473
Bram Moolenaarc667da52019-11-30 20:52:27 +01001474 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 {
1476 forward = TRUE;
1477 buf = curbuf->b_next;
1478 for (;;)
1479 {
1480 if (buf == NULL)
1481 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001482 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 break;
1484 buf = curbuf->b_prev;
1485 forward = FALSE;
1486 continue;
1487 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001488 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001489 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1490#if defined(FEAT_QUICKFIX)
1491 && !bt_quickfix(buf)
1492#endif
1493 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001495 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001497 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 bp = buf;
1499 }
1500 if (forward)
1501 buf = buf->b_next;
1502 else
1503 buf = buf->b_prev;
1504 }
1505 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001506 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001508 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001510 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001511 if (buf->b_p_bl && buf != curbuf
1512#if defined(FEAT_QUICKFIX)
1513 && !bt_quickfix(buf)
1514#endif
1515 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 break;
1517 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001518 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 {
1520 if (curbuf->b_next != NULL)
1521 buf = curbuf->b_next;
1522 else
1523 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001524#if defined(FEAT_QUICKFIX)
1525 if (bt_quickfix(buf))
1526 buf = NULL;
1527#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 }
1529 }
1530
Bram Moolenaara02471e2014-01-10 16:43:14 +01001531 if (buf == NULL)
1532 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001533 // Autocommands must have wiped out all other buffers. Only option
1534 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001535 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001536 }
1537
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001539 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001541 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001543 // If 'switchbuf' contains "useopen": jump to first window containing
1544 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001545 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001546 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001547 // If 'switchbuf' contains "usetab": jump to first window in any tab
1548 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001549 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 return OK;
1551 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 return FAIL;
1553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554
Bram Moolenaarc667da52019-11-30 20:52:27 +01001555 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 if (buf == curbuf)
1557 return OK;
1558
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001559 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001560 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 {
1562#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001563 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001565 bufref_T bufref;
1566
1567 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001569 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001570 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
1573 if (bufIsChanged(curbuf))
1574#endif
1575 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001576 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 return FAIL;
1578 }
1579 }
1580
Bram Moolenaarc667da52019-11-30 20:52:27 +01001581 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 set_curbuf(buf, action);
1583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001585 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001587#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001588 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 return FAIL;
1590#endif
1591
1592 return OK;
1593}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001595 int
1596do_buffer(
1597 int action,
1598 int start,
1599 int dir, // FORWARD or BACKWARD
1600 int count, // buffer number or number of buffers
1601 int forceit) // TRUE when using !
1602{
1603 return do_buffer_ext(action, start, dir, count,
1604 forceit ? DOBUF_FORCEIT : 0);
1605}
1606
1607/*
1608 * do_bufdel() - delete or unload buffer(s)
1609 *
1610 * addr_count == 0: ":bdel" - delete current buffer
1611 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1612 * buffer "end_bnr", then any other arguments.
1613 * addr_count == 2: ":N,N bdel" - delete buffers in range
1614 *
1615 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1616 * DOBUF_DEL (":bdel")
1617 *
1618 * Returns error message or NULL
1619 */
1620 char *
1621do_bufdel(
1622 int command,
1623 char_u *arg, // pointer to extra arguments
1624 int addr_count,
1625 int start_bnr, // first buffer number in a range
1626 int end_bnr, // buffer nr or last buffer nr in a range
1627 int forceit)
1628{
1629 int do_current = 0; // delete current buffer?
1630 int deleted = 0; // number of buffers deleted
1631 char *errormsg = NULL; // return value
1632 int bnr; // buffer number
1633 char_u *p;
1634
1635 if (addr_count == 0)
1636 {
1637 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1638 }
1639 else
1640 {
1641 if (addr_count == 2)
1642 {
1643 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001644 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001645 bnr = start_bnr;
1646 }
1647 else // addr_count == 1
1648 bnr = end_bnr;
1649
1650 for ( ;!got_int; ui_breakcheck())
1651 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001652 // Delete the current buffer last, otherwise when the
1653 // current buffer is deleted, the next buffer becomes
1654 // the current one and will be loaded, which may then
1655 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001656 if (bnr == curbuf->b_fnum)
1657 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001658 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001659 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1660 ++deleted;
1661
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001662 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001663 if (addr_count == 2)
1664 {
1665 if (++bnr > end_bnr)
1666 break;
1667 }
1668 else // addr_count == 1
1669 {
1670 arg = skipwhite(arg);
1671 if (*arg == NUL)
1672 break;
1673 if (!VIM_ISDIGIT(*arg))
1674 {
1675 p = skiptowhite_esc(arg);
1676 bnr = buflist_findpat(arg, p,
1677 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1678 FALSE, FALSE);
1679 if (bnr < 0) // failed
1680 break;
1681 arg = p;
1682 }
1683 else
1684 bnr = getdigits(&arg);
1685 }
1686 }
1687 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1688 FORWARD, do_current, forceit) == OK)
1689 ++deleted;
1690
1691 if (deleted == 0)
1692 {
1693 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001694 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001695 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001696 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001697 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001698 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001699 errormsg = (char *)IObuff;
1700 }
1701 else if (deleted >= p_report)
1702 {
1703 if (command == DOBUF_UNLOAD)
1704 smsg(NGETTEXT("%d buffer unloaded",
1705 "%d buffers unloaded", deleted), deleted);
1706 else if (command == DOBUF_DEL)
1707 smsg(NGETTEXT("%d buffer deleted",
1708 "%d buffers deleted", deleted), deleted);
1709 else
1710 smsg(NGETTEXT("%d buffer wiped out",
1711 "%d buffers wiped out", deleted), deleted);
1712 }
1713 }
1714
1715
1716 return errormsg;
1717}
1718
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719/*
1720 * Set current buffer to "buf". Executes autocommands and closes current
1721 * buffer. "action" tells how to close the current buffer:
1722 * DOBUF_GOTO free or hide it
1723 * DOBUF_SPLIT nothing
1724 * DOBUF_UNLOAD unload it
1725 * DOBUF_DEL delete it
1726 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001727 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 */
1729 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001730set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
1732 buf_T *prevbuf;
1733 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001734 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001735#ifdef FEAT_SYN_HL
1736 long old_tw = curbuf->b_p_tw;
1737#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001738 bufref_T newbufref;
1739 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001740 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
1742 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001743 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001744 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1745 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
Bram Moolenaarc667da52019-11-30 20:52:27 +01001747 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
Bram Moolenaarc667da52019-11-30 20:52:27 +01001750 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001752 set_bufref(&prevbufref, prevbuf);
1753 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001755 // Autocommands may delete the current buffer and/or the buffer we want to
1756 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001757 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001758 || (bufref_valid(&prevbufref)
1759 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001760#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001761 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001763 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001765#ifdef FEAT_SYN_HL
1766 if (prevbuf == curwin->w_buffer)
1767 reset_synblock(curwin);
1768#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001770 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001771#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001772 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001774 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001776 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001777 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001778
Bram Moolenaare615db02022-01-20 21:00:54 +00001779 // Do not sync when in Insert mode and the buffer is open in
1780 // another window, might be a timer doing something in another
1781 // window.
1782 if (prevbuf == curbuf
Bram Moolenaar24959102022-05-07 20:01:16 +01001783 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001784 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1786 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001787 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001788 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1789 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001790 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001791 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001792 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001795 // An autocommand may have deleted "buf", already entered it (e.g., when
1796 // it did ":bunload") or aborted the script processing.
1797 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001798 valid = buf_valid(buf);
1799 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001800#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001801 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001803 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001804 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001805 // If the buffer is not valid but curwin->w_buffer is NULL we must
1806 // enter some buffer. Using the last one is hopefully OK.
1807 if (!valid)
1808 enter_buffer(lastbuf);
1809 else
1810 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001811#ifdef FEAT_SYN_HL
1812 if (old_tw != curbuf->b_p_tw)
1813 check_colorcolumn(curwin);
1814#endif
1815 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816}
1817
1818/*
1819 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001820 * Old curbuf must have been abandoned already! This also means "curbuf" may
1821 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001823 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001824enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825{
Bram Moolenaarcfeb8a52022-08-13 14:09:44 +01001826 // when closing the current buffer stop Visual mode
1827 if (VIsual_active
1828#if defined(EXITFREE)
1829 && !entered_free_all_mem
1830#endif
1831 )
1832 end_visual_mode();
1833
Bram Moolenaar010ee962019-09-25 20:37:36 +02001834 // Get the buffer in the current window.
1835 curwin->w_buffer = buf;
1836 curbuf = buf;
1837 ++curbuf->b_nwindows;
1838
1839 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1841 if (!buf->b_help)
1842 get_winopts(buf);
1843#ifdef FEAT_FOLDING
1844 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001845 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001847 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848#endif
1849
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001851 if (curwin->w_p_diff)
1852 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853#endif
1854
Bram Moolenaara971b822011-09-14 14:43:25 +02001855#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001856 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001857#endif
1858
Bram Moolenaarc667da52019-11-30 20:52:27 +01001859 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 curwin->w_cursor.lnum = 1;
1861 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001864 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
Bram Moolenaarc667da52019-11-30 20:52:27 +01001866 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001867 curwin->w_valid = 0;
1868
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001869 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1870 curbuf->b_last_cursor.col, TRUE);
1871
Bram Moolenaarc667da52019-11-30 20:52:27 +01001872 // Make sure the buffer is loaded.
1873 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001874 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001875 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001876 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001877 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001878 if (*curbuf->b_p_ft == NUL)
1879 did_filetype = FALSE;
1880
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001881 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 else
1884 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001885 if (!msg_silent && !shortmess(SHM_FILEINFO))
1886 need_fileinfo = TRUE; // display file info after redraw
1887
1888 // check if file changed
1889 (void)buf_check_timestamp(curbuf, FALSE);
1890
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001892#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001894#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1896 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 }
1898
Bram Moolenaarc667da52019-11-30 20:52:27 +01001899 // If autocommands did not change the cursor position, restore cursor lnum
1900 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 if (curwin->w_cursor.lnum == 1 && inindent(0))
1902 buflist_getfpos();
1903
Bram Moolenaarc667da52019-11-30 20:52:27 +01001904 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001906 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001907 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001908 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909
Bram Moolenaar009b2592004-10-24 19:18:58 +00001910#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001911 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001912 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001913#endif
1914
Bram Moolenaarc667da52019-11-30 20:52:27 +01001915 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001916 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917
1918#ifdef FEAT_KEYMAP
1919 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001920 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001922#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001923 // May need to set the spell language. Can only do this after the buffer
1924 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001925 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1926 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001927#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001928#ifdef FEAT_VIMINFO
1929 curbuf->b_last_used = vim_time();
1930#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001931
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001932 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933}
1934
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001935#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1936/*
1937 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001938 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001939 */
1940 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001941do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001942{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001943 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001944 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001945 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001946 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001947 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001948 last_chdir_reason = "autochdir";
1949 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001950}
1951#endif
1952
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001953 void
1954no_write_message(void)
1955{
1956#ifdef FEAT_TERMINAL
1957 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001958 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001959 else
1960#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001961 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001962}
1963
1964 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001965no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001966{
1967#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001968 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001969 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001970 else
1971#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001972 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001973}
1974
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975/*
1976 * functions for dealing with the buffer list
1977 */
1978
1979/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001980 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1981 * only one window. That means it can be re-used.
1982 */
1983 int
1984curbuf_reusable(void)
1985{
1986 return (curbuf != NULL
1987 && curbuf->b_ffname == NULL
1988 && curbuf->b_nwindows <= 1
1989 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001990#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001991 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001992#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001993 && !curbufIsChanged());
1994}
1995
1996/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 * Add a file name to the buffer list. Return a pointer to the buffer.
1998 * If the same file name already exists return a pointer to that buffer.
1999 * If it does not exist, or if fname == NULL, a new entry is created.
2000 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
2001 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
2002 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002003 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02002004 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
2005 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002006 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 * This is the ONLY way to create a new buffer.
2008 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002010buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002011 char_u *ffname_arg, // full path of fname or relative
2012 char_u *sfname_arg, // short fname or NULL
2013 linenr_T lnum, // preferred cursor line
2014 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002016 char_u *ffname = ffname_arg;
2017 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 buf_T *buf;
2019#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002020 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021#endif
2022
Bram Moolenaar480778b2016-07-14 22:09:39 +02002023 if (top_file_num == 1)
2024 hash_init(&buf_hashtab);
2025
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002026 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027
2028 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002029 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 */
2031#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002032 // On Unix we can use inode numbers when the file exists. Works better
2033 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2035 st.st_dev = (dev_T)-1;
2036#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002037 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038#ifdef UNIX
2039 buflist_findname_stat(ffname, &st)
2040#else
2041 buflist_findname(ffname)
2042#endif
2043 ) != NULL)
2044 {
2045 vim_free(ffname);
2046 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002047 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2048 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002049
2050 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002051 // copy the options now, if 'cpo' doesn't have 's' and not done
2052 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002053 buf_copy_options(buf, 0);
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2056 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002057 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002058
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002060 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002062 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002063 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002064 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002065 return NULL;
2066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 }
2068 return buf;
2069 }
2070
2071 /*
2072 * If the current buffer has no name and no contents, use the current
2073 * buffer. Otherwise: Need to allocate a new buffer structure.
2074 *
2075 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002076 * (A spell file buffer is allocated in spell.c, but that's not a normal
2077 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 */
2079 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002080 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 {
2082 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002083 // It's like this buffer is deleted. Watch out for autocommands that
2084 // change curbuf! If that happens, allocate a new buffer anyway.
Charlie Grovesfef44852022-04-19 16:24:12 +01002085 buf_freeall(buf, BFA_WIPE | BFA_DEL);
2086 if (buf != curbuf) // autocommands deleted the buffer!
2087 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002088#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002089 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002090 {
2091 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 }
2096 if (buf != curbuf || curbuf == NULL)
2097 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002098 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 if (buf == NULL)
2100 {
2101 vim_free(ffname);
2102 return NULL;
2103 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002104#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002105 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002106 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002107 if (buf->b_vars == NULL)
2108 {
2109 vim_free(ffname);
2110 vim_free(buf);
2111 return NULL;
2112 }
2113 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2114#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002115 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 }
2117
2118 if (ffname != NULL)
2119 {
2120 buf->b_ffname = ffname;
2121 buf->b_sfname = vim_strsave(sfname);
2122 }
2123
2124 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002125 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126
2127 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2128 || buf->b_wininfo == NULL)
2129 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002130 if (buf->b_sfname != buf->b_ffname)
2131 VIM_CLEAR(buf->b_sfname);
2132 else
2133 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002134 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if (buf != curbuf)
2136 free_buffer(buf);
2137 return NULL;
2138 }
2139
2140 if (buf == curbuf)
2141 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002142 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002143
Bram Moolenaarc667da52019-11-30 20:52:27 +01002144 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002145 buf->b_p_initialized = FALSE;
2146 buf_copy_options(buf, BCO_ENTER);
2147
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002149 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 curbuf->b_kmap_state |= KEYMAP_INIT;
2151#endif
2152 }
2153 else
2154 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002155 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002157 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 {
2159 buf->b_prev = NULL;
2160 firstbuf = buf;
2161 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002162 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 {
2164 lastbuf->b_next = buf;
2165 buf->b_prev = lastbuf;
2166 }
2167 lastbuf = buf;
2168
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002169 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2170 {
2171 // Recycle a previously used buffer number. Used for buffers which
2172 // are normally hidden, e.g. in a popup window. Avoids that the
2173 // buffer number grows rapidly.
2174 --buf_reuse.ga_len;
2175 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002176
2177 // Move buffer to the right place in the buffer list.
2178 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2179 {
2180 buf_T *prev = buf->b_prev;
2181
2182 prev->b_next = buf->b_next;
2183 if (prev->b_next != NULL)
2184 prev->b_next->b_prev = prev;
2185 buf->b_next = prev;
2186 buf->b_prev = prev->b_prev;
2187 if (buf->b_prev != NULL)
2188 buf->b_prev->b_next = buf;
2189 prev->b_prev = buf;
2190 if (lastbuf == buf)
2191 lastbuf = prev;
2192 if (firstbuf == prev)
2193 firstbuf = buf;
2194 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002195 }
2196 else
2197 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002198 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002200 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002201 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 {
2203 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002204 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 }
2206 top_file_num = 1;
2207 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002208 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002210 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 buf_copy_options(buf, BCO_ALWAYS);
2212 }
2213
2214 buf->b_wininfo->wi_fpos.lnum = lnum;
2215 buf->b_wininfo->wi_win = curwin;
2216
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002217#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002218 hash_init(&buf->b_s.b_keywtab);
2219 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220#endif
2221
2222 buf->b_fname = buf->b_sfname;
2223#ifdef UNIX
2224 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002225 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 else
2227 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002228 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 buf->b_dev = st.st_dev;
2230 buf->b_ino = st.st_ino;
2231 }
2232#endif
2233 buf->b_u_synced = TRUE;
2234 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002235 if (flags & BLN_DUMMY)
2236 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002238 clrallmarks(buf); // clear marks
2239 fmarks_check_names(buf); // check file marks for this file
2240 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 if (!(flags & BLN_DUMMY))
2242 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002243 bufref_T bufref;
2244
Bram Moolenaarc667da52019-11-30 20:52:27 +01002245 // Tricky: these autocommands may change the buffer list. They could
2246 // also split the window with re-using the one empty buffer. This may
2247 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002248 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002249 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002250 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002251 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002253 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002254 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002255 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002256 return NULL;
2257 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002258#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002259 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263
2264 return buf;
2265}
2266
2267/*
2268 * Free the memory for the options of a buffer.
2269 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2270 * 'fileencoding'.
2271 */
2272 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002273free_buf_options(
2274 buf_T *buf,
2275 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276{
2277 if (free_p_ff)
2278 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 clear_string_option(&buf->b_p_bh);
2282 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 }
2284#ifdef FEAT_FIND_ID
2285 clear_string_option(&buf->b_p_def);
2286 clear_string_option(&buf->b_p_inc);
2287# ifdef FEAT_EVAL
2288 clear_string_option(&buf->b_p_inex);
2289# endif
2290#endif
Bram Moolenaar8e145b82022-05-21 20:17:31 +01002291#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 clear_string_option(&buf->b_p_inde);
2293 clear_string_option(&buf->b_p_indk);
2294#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002295#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2296 clear_string_option(&buf->b_p_bexpr);
2297#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002298#if defined(FEAT_CRYPT)
2299 clear_string_option(&buf->b_p_cm);
2300#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002301 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002302#if defined(FEAT_EVAL)
2303 clear_string_option(&buf->b_p_fex);
2304#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002306# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002307 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2308 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2309 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002310# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 clear_string_option(&buf->b_p_key);
2312#endif
2313 clear_string_option(&buf->b_p_kp);
2314 clear_string_option(&buf->b_p_mps);
2315 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002316 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002318#ifdef FEAT_VARTABS
2319 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002320 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002321 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002322 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002323 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002324 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002325#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#ifdef FEAT_KEYMAP
2327 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002328 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 ga_clear(&buf->b_kmap_ga);
2330#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332#ifdef FEAT_FOLDING
2333 clear_string_option(&buf->b_p_cms);
2334#endif
2335 clear_string_option(&buf->b_p_nf);
2336#ifdef FEAT_SYN_HL
2337 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002338 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002339#endif
2340#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002341 clear_string_option(&buf->b_s.b_p_spc);
2342 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002343 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002344 buf->b_s.b_cap_prog = NULL;
2345 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002346 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347#endif
2348#ifdef FEAT_SEARCHPATH
2349 clear_string_option(&buf->b_p_sua);
2350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 clear_string_option(&buf->b_p_cink);
2353 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002354 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 clear_string_option(&buf->b_p_cinw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002357#ifdef FEAT_COMPL_FUNC
2358 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002359 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002360 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002361 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002362 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002363 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002364#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365#ifdef FEAT_QUICKFIX
2366 clear_string_option(&buf->b_p_gp);
2367 clear_string_option(&buf->b_p_mp);
2368 clear_string_option(&buf->b_p_efm);
2369#endif
2370 clear_string_option(&buf->b_p_ep);
2371 clear_string_option(&buf->b_p_path);
2372 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002373 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002374#ifdef FEAT_EVAL
2375 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002376 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 clear_string_option(&buf->b_p_dict);
2379 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002380 clear_string_option(&buf->b_p_qe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002382 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002383 clear_string_option(&buf->b_p_lw);
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002384 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002385 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386}
2387
2388/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002389 * Get alternate file "n".
2390 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2391 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 * if (options & GETF_SETMARK) call setpcmark()
2393 * if (options & GETF_ALT) we are jumping to an alternate file.
2394 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2395 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002396 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 */
2398 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002399buflist_getfile(
2400 int n,
2401 linenr_T lnum,
2402 int options,
2403 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404{
2405 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 pos_T *fpos;
2408 colnr_T col;
2409
2410 buf = buflist_findnr(n);
2411 if (buf == NULL)
2412 {
2413 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002414 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002416 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 return FAIL;
2418 }
2419
Bram Moolenaarc667da52019-11-30 20:52:27 +01002420 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 if (buf == curbuf)
2422 return OK;
2423
Bram Moolenaar71223e22022-05-30 15:23:09 +01002424 if (text_or_buf_locked())
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002425 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426
Bram Moolenaarc667da52019-11-30 20:52:27 +01002427 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 if (lnum == 0)
2429 {
2430 fpos = buflist_findfpos(buf);
2431 lnum = fpos->lnum;
2432 col = fpos->col;
2433 }
2434 else
2435 col = 0;
2436
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 if (options & GETF_SWITCH)
2438 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002439 // If 'switchbuf' contains "useopen": jump to first window containing
2440 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002441 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002443
Bram Moolenaarc667da52019-11-30 20:52:27 +01002444 // If 'switchbuf' contains "usetab": jump to first window in any tab
2445 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002446 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002447 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002448
Bram Moolenaarc667da52019-11-30 20:52:27 +01002449 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2450 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002451 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002452 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002454 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002455 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002456 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2457 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002459 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 }
2461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462
2463 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002464 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2465 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 {
2467 --RedrawingDisabled;
2468
Bram Moolenaarc667da52019-11-30 20:52:27 +01002469 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 if (!p_sol && col != 0)
2471 {
2472 curwin->w_cursor.col = col;
2473 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 curwin->w_set_curswant = TRUE;
2476 }
2477 return OK;
2478 }
2479 --RedrawingDisabled;
2480 return FAIL;
2481}
2482
2483/*
2484 * go to the last know line number for the current buffer
2485 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002486 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002487buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488{
2489 pos_T *fpos;
2490
2491 fpos = buflist_findfpos(curbuf);
2492
2493 curwin->w_cursor.lnum = fpos->lnum;
2494 check_cursor_lnum();
2495
2496 if (p_sol)
2497 curwin->w_cursor.col = 0;
2498 else
2499 {
2500 curwin->w_cursor.col = fpos->col;
2501 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 curwin->w_set_curswant = TRUE;
2504 }
2505}
2506
Bram Moolenaar81695252004-12-29 20:58:21 +00002507#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2508/*
2509 * Find file in buffer list by name (it has to be for the current window).
2510 * Returns NULL if not found.
2511 */
2512 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002513buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002514{
2515 char_u *ffname;
2516 buf_T *buf = NULL;
2517
Bram Moolenaarc667da52019-11-30 20:52:27 +01002518 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002519 ffname = FullName_save(fname,
2520#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002521 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002522#else
2523 FALSE
2524#endif
2525 );
2526 if (ffname != NULL)
2527 {
2528 buf = buflist_findname(ffname);
2529 vim_free(ffname);
2530 }
2531 return buf;
2532}
2533#endif
2534
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535/*
2536 * Find file in buffer list by name (it has to be for the current window).
2537 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002538 * Skips dummy buffers.
2539 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 */
2541 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002542buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543{
2544#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002545 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546
2547 if (mch_stat((char *)ffname, &st) < 0)
2548 st.st_dev = (dev_T)-1;
2549 return buflist_findname_stat(ffname, &st);
2550}
2551
2552/*
2553 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2554 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002555 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 */
2557 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002558buflist_findname_stat(
2559 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002560 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561{
2562#endif
2563 buf_T *buf;
2564
Bram Moolenaarc667da52019-11-30 20:52:27 +01002565 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002566 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002567 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568#ifdef UNIX
2569 , stp
2570#endif
2571 ))
2572 return buf;
2573 return NULL;
2574}
2575
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576/*
2577 * Find file in buffer list by a regexp pattern.
2578 * Return fnum of the found buffer.
2579 * Return < 0 for error.
2580 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002582buflist_findpat(
2583 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002584 char_u *pattern_end, // pointer to first char after pattern
2585 int unlisted, // find unlisted buffers
2586 int diffmode UNUSED, // find diff-mode buffers only
2587 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588{
2589 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 int match = -1;
2591 int find_listed;
2592 char_u *pat;
2593 char_u *patend;
2594 int attempt;
2595 char_u *p;
2596 int toggledollar;
2597
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002598 // "%" is current file, "%%" or "#" is alternate file
2599 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2600 || (in_vim9script() && pattern_end == pattern + 2
2601 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002603 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002605 else
2606 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607#ifdef FEAT_DIFF
2608 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2609 match = -1;
2610#endif
2611 }
2612
2613 /*
2614 * Try four ways of matching a listed buffer:
2615 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002616 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 * attempt == 2: with '$' at end (only match at end)
2618 * attempt == 3: with '^' at start and '$' at end (only full match)
2619 * Repeat this for finding an unlisted buffer if there was no matching
2620 * listed buffer.
2621 */
2622 else
2623 {
2624 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2625 if (pat == NULL)
2626 return -1;
2627 patend = pat + STRLEN(pat) - 1;
2628 toggledollar = (patend > pat && *patend == '$');
2629
Bram Moolenaarc667da52019-11-30 20:52:27 +01002630 // First try finding a listed buffer. If not found and "unlisted"
2631 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 find_listed = TRUE;
2633 for (;;)
2634 {
2635 for (attempt = 0; attempt <= 3; ++attempt)
2636 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002637 regmatch_T regmatch;
2638
Bram Moolenaarc667da52019-11-30 20:52:27 +01002639 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002641 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002643 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002645 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002647 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002648 {
2649 if (regmatch.regprog == NULL)
2650 {
2651 // invalid pattern, possibly after switching engine
2652 vim_free(pat);
2653 return -1;
2654 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 if (buf->b_p_bl == find_listed
2656#ifdef FEAT_DIFF
2657 && (!diffmode || diff_mode_buf(buf))
2658#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002659 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002661 if (curtab_only)
2662 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002663 // Ignore the match if the buffer is not open in
2664 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002665 win_T *wp;
2666
Bram Moolenaar29323592016-07-24 22:04:11 +02002667 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002668 if (wp->w_buffer == buf)
2669 break;
2670 if (wp == NULL)
2671 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002672 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002673 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 {
2675 match = -2;
2676 break;
2677 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002678 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 }
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002680 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002682 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002683 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 break;
2685 }
2686
Bram Moolenaarc667da52019-11-30 20:52:27 +01002687 // Only search for unlisted buffers if there was no match with
2688 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 if (!unlisted || !find_listed || match != -1)
2690 break;
2691 find_listed = FALSE;
2692 }
2693
2694 vim_free(pat);
2695 }
2696
2697 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002698 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002700 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 return match;
2702}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
Bram Moolenaar52410572019-10-27 05:12:45 +01002704#ifdef FEAT_VIMINFO
2705typedef struct {
2706 buf_T *buf;
2707 char_u *match;
2708} bufmatch_T;
2709#endif
2710
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711/*
2712 * Find all buffer names that match.
2713 * For command line expansion of ":buf" and ":sbuf".
2714 * Return OK if matches found, FAIL otherwise.
2715 */
2716 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002717ExpandBufnames(
2718 char_u *pat,
2719 int *num_file,
2720 char_u ***file,
2721 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 int count = 0;
2724 buf_T *buf;
2725 int round;
2726 char_u *p;
2727 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002728 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002729#ifdef FEAT_VIMINFO
2730 bufmatch_T *matches = NULL;
2731#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002732 int fuzzy;
2733 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734
Bram Moolenaarc667da52019-11-30 20:52:27 +01002735 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 *file = NULL;
2737
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002738#ifdef FEAT_DIFF
2739 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2740 return FAIL;
2741#endif
2742
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002743 fuzzy = cmdline_fuzzy_complete(pat);
2744
2745 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2746 // expression matching)
2747 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002749 if (*pat == '^')
2750 {
2751 patc = alloc(STRLEN(pat) + 11);
2752 if (patc == NULL)
2753 return FAIL;
2754 STRCPY(patc, "\\(^\\|[\\/]\\)");
2755 STRCPY(patc + 11, pat + 1);
2756 }
2757 else
2758 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002759 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002760
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002761 // attempt == 0: try match with '\<', match at start of word
2762 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002763 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002764 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002765 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002766 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002767
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002768 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002769 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002770 if (attempt > 0 && patc == pat)
2771 break; // there was no anchor, no need to try again
2772 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002775 // round == 1: Count the matches.
2776 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 for (round = 1; round <= 2; ++round)
2778 {
2779 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002780 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002782 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002784#ifdef FEAT_DIFF
2785 if (options & BUF_DIFF_FILTER)
2786 // Skip buffers not suitable for
2787 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002788 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002789 continue;
2790#endif
2791
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002792 if (!fuzzy)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002793 {
2794 if (regmatch.regprog == NULL)
2795 {
2796 // invalid pattern, possibly after recompiling
2797 if (patc != pat)
2798 vim_free(patc);
2799 return FAIL;
2800 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002801 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002802 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002803 else
2804 {
2805 p = NULL;
2806 // first try matching with the short file name
2807 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2808 p = buf->b_sfname;
2809 if (p == NULL)
2810 {
2811 // next try matching with the full path file name
2812 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2813 p = buf->b_ffname;
2814 }
2815 }
2816
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002817 if (p == NULL)
2818 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002819
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002820 if (round == 1)
2821 {
2822 ++count;
2823 continue;
2824 }
2825
2826 if (options & WILD_HOME_REPLACE)
2827 p = home_replace_save(buf, p);
2828 else
2829 p = vim_strsave(p);
2830
2831 if (!fuzzy)
2832 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002833#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002834 if (matches != NULL)
2835 {
2836 matches[count].buf = buf;
2837 matches[count].match = p;
2838 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002840 else
2841#endif
2842 (*file)[count++] = p;
2843 }
2844 else
2845 {
2846 fuzmatch[count].idx = count;
2847 fuzmatch[count].str = p;
2848 fuzmatch[count].score = score;
2849 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 }
2851 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002852 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 break;
2854 if (round == 1)
2855 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002856 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002858 *file = ALLOC_MULT(char_u *, count);
2859 if (*file == NULL)
2860 {
2861 vim_regfree(regmatch.regprog);
2862 if (patc != pat)
2863 vim_free(patc);
2864 return FAIL;
2865 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002866#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002867 if (options & WILD_BUFLASTUSED)
2868 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002869#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002870 }
2871 else
2872 {
2873 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2874 if (fuzmatch == NULL)
2875 {
2876 *num_file = 0;
2877 *file = NULL;
2878 return FAIL;
2879 }
2880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 }
2882 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002883
2884 if (!fuzzy)
2885 {
2886 vim_regfree(regmatch.regprog);
2887 if (count) // match(es) found, break here
2888 break;
2889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 }
2891
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002892 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002893 vim_free(patc);
2894
Bram Moolenaar52410572019-10-27 05:12:45 +01002895#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002896 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002897 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002898 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002899 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002900 int i;
2901 if (count > 1)
2902 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2903 // if the current buffer is first in the list, place it at the end
2904 if (matches[0].buf == curbuf)
2905 {
2906 for (i = 1; i < count; i++)
2907 (*file)[i-1] = matches[i].match;
2908 (*file)[count-1] = matches[0].match;
2909 }
2910 else
2911 {
2912 for (i = 0; i < count; i++)
2913 (*file)[i] = matches[i].match;
2914 }
2915 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002916 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002917 }
2918 else
2919 {
2920 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2921 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002922 }
2923#endif
2924
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 *num_file = count;
2926 return (count == 0 ? FAIL : OK);
2927}
2928
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929/*
2930 * Check for a match on the file name for buffer "buf" with regprog "prog".
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002931 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 */
2933 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002934buflist_match(
2935 regmatch_T *rmp,
2936 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002937 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938{
2939 char_u *match;
2940
Bram Moolenaarc667da52019-11-30 20:52:27 +01002941 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002942 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaara59f2df2022-05-11 11:42:28 +01002943 if (match == NULL && rmp->regprog != NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002944 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945
2946 return match;
2947}
2948
2949/*
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002950 * Try matching the regexp in "rmp->regprog" with file name "name".
2951 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 * Return "name" when there is a match, NULL when not.
2953 */
2954 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002955fname_match(
2956 regmatch_T *rmp,
2957 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002958 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959{
2960 char_u *match = NULL;
2961 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002963 // extra check for valid arguments
2964 if (name != NULL && rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002966 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002967 rmp->rm_ic = p_fic || ignore_case;
2968 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 match = name;
Bram Moolenaar8e4b76d2022-05-07 11:28:06 +01002970 else if (rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002972 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002974 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 match = name;
2976 vim_free(p);
2977 }
2978 }
2979
2980 return match;
2981}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982
2983/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002984 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 */
2986 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002987buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002989 char_u key[VIM_SIZEOF_INT * 2 + 1];
2990 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991
2992 if (nr == 0)
2993 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002994 sprintf((char *)key, "%x", nr);
2995 hi = hash_find(&buf_hashtab, key);
2996
2997 if (!HASHITEM_EMPTY(hi))
2998 return (buf_T *)(hi->hi_key
2999 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 return NULL;
3001}
3002
3003/*
3004 * Get name of file 'n' in the buffer list.
3005 * When the file has no name an empty string is returned.
3006 * home_replace() is used to shorten the file name (used for marks).
3007 * Returns a pointer to allocated memory, of NULL when failed.
3008 */
3009 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003010buflist_nr2name(
3011 int n,
3012 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003013 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014{
3015 buf_T *buf;
3016
3017 buf = buflist_findnr(n);
3018 if (buf == NULL)
3019 return NULL;
3020 return home_replace_save(helptail ? buf : NULL,
3021 fullname ? buf->b_ffname : buf->b_fname);
3022}
3023
3024/*
3025 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3026 * When "copy_options" is TRUE save the local window option values.
3027 * When "lnum" is 0 only do the options.
3028 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003029 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003030buflist_setfpos(
3031 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003032 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003033 linenr_T lnum,
3034 colnr_T col,
3035 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
3037 wininfo_T *wip;
3038
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003039 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 if (wip->wi_win == win)
3041 break;
3042 if (wip == NULL)
3043 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003044 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003045 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 if (wip == NULL)
3047 return;
3048 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003049 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 lnum = 1;
3051 }
3052 else
3053 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003054 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 if (wip->wi_prev)
3056 wip->wi_prev->wi_next = wip->wi_next;
3057 else
3058 buf->b_wininfo = wip->wi_next;
3059 if (wip->wi_next)
3060 wip->wi_next->wi_prev = wip->wi_prev;
3061 if (copy_options && wip->wi_optset)
3062 {
3063 clear_winopt(&wip->wi_opt);
3064#ifdef FEAT_FOLDING
3065 deleteFoldRecurse(&wip->wi_folds);
3066#endif
3067 }
3068 }
3069 if (lnum != 0)
3070 {
3071 wip->wi_fpos.lnum = lnum;
3072 wip->wi_fpos.col = col;
3073 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003074 if (win != NULL)
3075 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003076 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003078 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3080#ifdef FEAT_FOLDING
3081 wip->wi_fold_manual = win->w_fold_manual;
3082 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3083#endif
3084 wip->wi_optset = TRUE;
3085 }
3086
Bram Moolenaarc667da52019-11-30 20:52:27 +01003087 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 wip->wi_next = buf->b_wininfo;
3089 buf->b_wininfo = wip;
3090 wip->wi_prev = NULL;
3091 if (wip->wi_next)
3092 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093}
3094
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003095#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003096/*
3097 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3098 * page. That's because a diff is local to a tab page.
3099 */
3100 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003101wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003102{
3103 win_T *wp;
3104
3105 if (wip->wi_opt.wo_diff)
3106 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003107 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003108 // return FALSE when it's a window in the current tab page, thus
3109 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003110 if (wip->wi_win == wp)
3111 return FALSE;
3112 return TRUE;
3113 }
3114 return FALSE;
3115}
3116#endif
3117
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118/*
3119 * Find info for the current window in buffer "buf".
3120 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003121 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003122 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3123 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 * Returns NULL when there isn't any info.
3125 */
3126 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003127find_wininfo(
3128 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003129 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003130 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131{
3132 wininfo_T *wip;
3133
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003134 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003135 if (wip->wi_win == curwin
3136#ifdef FEAT_DIFF
3137 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3138#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003139
3140 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003142
Bram Moolenaarc667da52019-11-30 20:52:27 +01003143 // If no wininfo for curwin, use the first in the list (that doesn't have
3144 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003145 // If "need_options" is TRUE skip entries that don't have options set,
3146 // unless the window is editing "buf", so we can copy from the window
3147 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003148 if (wip == NULL)
3149 {
3150#ifdef FEAT_DIFF
3151 if (skip_diff_buffer)
3152 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003153 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003154 if (!wininfo_other_tab_diff(wip)
3155 && (!need_options || wip->wi_optset
3156 || (wip->wi_win != NULL
3157 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003158 break;
3159 }
3160 else
3161#endif
3162 wip = buf->b_wininfo;
3163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 return wip;
3165}
3166
3167/*
3168 * Reset the local window options to the values last used in this window.
3169 * If the buffer wasn't used in this window before, use the values from
3170 * the most recently used window. If the values were never set, use the
3171 * global values for the window.
3172 */
3173 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003174get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
3176 wininfo_T *wip;
3177
3178 clear_winopt(&curwin->w_onebuf_opt);
3179#ifdef FEAT_FOLDING
3180 clearFolding(curwin);
3181#endif
3182
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003183 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003184 if (wip != NULL && wip->wi_win != NULL
3185 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003187 // The buffer is currently displayed in the window: use the actual
3188 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003189 win_T *wp = wip->wi_win;
3190
3191 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3192#ifdef FEAT_FOLDING
3193 curwin->w_fold_manual = wp->w_fold_manual;
3194 curwin->w_foldinvalid = TRUE;
3195 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3196#endif
3197 }
3198 else if (wip != NULL && wip->wi_optset)
3199 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003200 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3202#ifdef FEAT_FOLDING
3203 curwin->w_fold_manual = wip->wi_fold_manual;
3204 curwin->w_foldinvalid = TRUE;
3205 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3206#endif
3207 }
3208 else
3209 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003210 if (wip != NULL)
3211 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212
3213#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003214 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 if (p_fdls >= 0)
3216 curwin->w_p_fdl = p_fdls;
3217#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003218 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219}
3220
3221/*
3222 * Find the position (lnum and col) for the buffer 'buf' for the current
3223 * window.
3224 * Returns a pointer to no_position if no position is found.
3225 */
3226 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003227buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228{
3229 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003230 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003232 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 if (wip != NULL)
3234 return &(wip->wi_fpos);
3235 else
3236 return &no_position;
3237}
3238
3239/*
3240 * Find the lnum for the buffer 'buf' for the current window.
3241 */
3242 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003243buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
3245 return buflist_findfpos(buf)->lnum;
3246}
3247
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003249 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003252buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253{
Bram Moolenaar52410572019-10-27 05:12:45 +01003254 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 int len;
3256 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003257 int ro_char;
3258 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003259#ifdef FEAT_TERMINAL
3260 int job_running;
3261 int job_none_open;
3262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263
Bram Moolenaar52410572019-10-27 05:12:45 +01003264#ifdef FEAT_VIMINFO
3265 garray_T buflist;
3266 buf_T **buflist_data = NULL, **p;
3267
3268 if (vim_strchr(eap->arg, 't'))
3269 {
3270 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003271 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003272 {
3273 if (ga_grow(&buflist, 1) == OK)
3274 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3275 }
3276
3277 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3278 sizeof(buf_T *), buf_compare);
3279
Bram Moolenaar3b991522019-11-06 23:26:20 +01003280 buflist_data = (buf_T **)buflist.ga_data;
3281 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003282 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003283 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003284
Bram Moolenaar3b991522019-11-06 23:26:20 +01003285 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003286 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3287 : buf->b_next)
3288#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003292#ifdef FEAT_TERMINAL
3293 job_running = term_job_running(buf->b_term);
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003294 job_none_open = term_none_open(buf->b_term);
Bram Moolenaar0751f512018-03-29 16:37:16 +02003295#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003296 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003297 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3298 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3299 || (vim_strchr(eap->arg, '+')
3300 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3301 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003302 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003303 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003304 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3305#ifdef FEAT_TERMINAL
3306 || (vim_strchr(eap->arg, 'R')
3307 && (!job_running || (job_running && job_none_open)))
3308 || (vim_strchr(eap->arg, '?')
3309 && (!job_running || (job_running && !job_none_open)))
3310 || (vim_strchr(eap->arg, 'F')
3311 && (job_running || buf->b_term == NULL))
3312#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003313 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3314 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3315 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3316 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3317 || (vim_strchr(eap->arg, '#')
3318 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003321 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 else
3323 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003324 if (message_filtered(NameBuff))
3325 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003327 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3328 : (bufIsChanged(buf) ? '+' : ' ');
3329#ifdef FEAT_TERMINAL
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003330 if (job_running)
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003331 {
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003332 if (job_none_open)
Bram Moolenaar4033c552017-09-16 20:54:51 +02003333 ro_char = '?';
3334 else
3335 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003336 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3337 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003338 }
3339 else if (buf->b_term != NULL)
3340 ro_char = 'F';
3341 else
3342#endif
3343 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3344
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003345 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003346 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 buf->b_fnum,
3348 buf->b_p_bl ? ' ' : 'u',
3349 buf == curbuf ? '%' :
3350 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3351 buf->b_ml.ml_mfp == NULL ? ' ' :
3352 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003353 ro_char,
3354 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003355 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003356 if (len > IOSIZE - 20)
3357 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358
Bram Moolenaarc667da52019-11-30 20:52:27 +01003359 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 i = 40 - vim_strsize(IObuff);
3361 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003363 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003364#ifdef FEAT_VIMINFO
3365 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3366 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3367 else
3368#endif
3369 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3370 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003371 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003373 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 ui_breakcheck();
3375 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003376
3377#ifdef FEAT_VIMINFO
3378 if (buflist_data)
3379 ga_clear(&buflist);
3380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382
3383/*
3384 * Get file name and line number for file 'fnum'.
3385 * Used by DoOneCmd() for translating '%' and '#'.
3386 * Used by insert_reg() and cmdline_paste() for '#' register.
3387 * Return FAIL if not found, OK for success.
3388 */
3389 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003390buflist_name_nr(
3391 int fnum,
3392 char_u **fname,
3393 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394{
3395 buf_T *buf;
3396
3397 buf = buflist_findnr(fnum);
3398 if (buf == NULL || buf->b_fname == NULL)
3399 return FAIL;
3400
3401 *fname = buf->b_fname;
3402 *lnum = buflist_findlnum(buf);
3403
3404 return OK;
3405}
3406
3407/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003408 * Set the file name for "buf"' to "ffname_arg", short file name to
3409 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 * The file name with the full path is also remembered, for when :cd is used.
3411 * Returns FAIL for failure (file name already in use by other buffer)
3412 * OK otherwise.
3413 */
3414 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003415setfname(
3416 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003417 char_u *ffname_arg,
3418 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003419 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003421 char_u *ffname = ffname_arg;
3422 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003423 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003425 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426#endif
3427
3428 if (ffname == NULL || *ffname == NUL)
3429 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003430 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003431 if (buf->b_sfname != buf->b_ffname)
3432 VIM_CLEAR(buf->b_sfname);
3433 else
3434 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003435 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436#ifdef UNIX
3437 st.st_dev = (dev_T)-1;
3438#endif
3439 }
3440 else
3441 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003442 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3443 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 return FAIL;
3445
3446 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003447 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 * - if the buffer is loaded, fail
3449 * - if the buffer is not loaded, delete it from the list
3450 */
3451#ifdef UNIX
3452 if (mch_stat((char *)ffname, &st) < 0)
3453 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003454#endif
3455 if (!(buf->b_flags & BF_DUMMY))
3456#ifdef UNIX
3457 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003459 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460#endif
3461 if (obuf != NULL && obuf != buf)
3462 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003463 win_T *win;
3464 tabpage_T *tab;
3465 int in_use = FALSE;
3466
3467 // during startup a window may use a buffer that is not loaded yet
3468 FOR_ALL_TAB_WINDOWS(tab, win)
3469 if (win->w_buffer == obuf)
3470 in_use = TRUE;
3471
3472 // it's loaded or used in a window, fail
3473 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 {
3475 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003476 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 vim_free(ffname);
3478 return FAIL;
3479 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003480 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003481 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 }
3483 sfname = vim_strsave(sfname);
3484 if (ffname == NULL || sfname == NULL)
3485 {
3486 vim_free(sfname);
3487 vim_free(ffname);
3488 return FAIL;
3489 }
3490#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003491 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003493 if (buf->b_sfname != buf->b_ffname)
3494 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 buf->b_ffname = ffname;
3497 buf->b_sfname = sfname;
3498 }
3499 buf->b_fname = buf->b_sfname;
3500#ifdef UNIX
3501 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003502 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 else
3504 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003505 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 buf->b_dev = st.st_dev;
3507 buf->b_ino = st.st_ino;
3508 }
3509#endif
3510
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512
3513 buf_name_changed(buf);
3514 return OK;
3515}
3516
3517/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003518 * Crude way of changing the name of a buffer. Use with care!
3519 * The name should be relative to the current directory.
3520 */
3521 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003522buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003523{
3524 buf_T *buf;
3525
3526 buf = buflist_findnr(fnum);
3527 if (buf != NULL)
3528 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003529 if (buf->b_sfname != buf->b_ffname)
3530 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003531 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003532 buf->b_ffname = vim_strsave(name);
3533 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003534 // Allocate ffname and expand into full path. Also resolves .lnk
3535 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003536 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003537 buf->b_fname = buf->b_sfname;
3538 }
3539}
3540
3541/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 * Take care of what needs to be done when the name of buffer "buf" has
3543 * changed.
3544 */
3545 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003546buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547{
3548 /*
3549 * If the file name changed, also change the name of the swapfile
3550 */
3551 if (buf->b_ml.ml_mfp != NULL)
3552 ml_setname(buf);
3553
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003554#ifdef FEAT_TERMINAL
3555 if (buf->b_term != NULL)
3556 term_clear_status_text(buf->b_term);
3557#endif
3558
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003560 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003561 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003562 status_redraw_all(); // status lines need to be redrawn
3563 fmarks_check_names(buf); // check named file marks
3564 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565}
3566
3567/*
3568 * set alternate file name for current window
3569 *
3570 * Used by do_one_cmd(), do_write() and do_ecmd().
3571 * Return the buffer.
3572 */
3573 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003574setaltfname(
3575 char_u *ffname,
3576 char_u *sfname,
3577 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578{
3579 buf_T *buf;
3580
Bram Moolenaarc667da52019-11-30 20:52:27 +01003581 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003583 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 curwin->w_alt_fnum = buf->b_fnum;
3585 return buf;
3586}
3587
3588/*
3589 * Get alternate file name for current window.
3590 * Return NULL if there isn't any, and give error message if requested.
3591 */
3592 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003593getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003594 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595{
3596 char_u *fname;
3597 linenr_T dummy;
3598
3599 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3600 {
3601 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003602 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 return NULL;
3604 }
3605 return fname;
3606}
3607
3608/*
3609 * Add a file name to the buflist and return its number.
3610 * Uses same flags as buflist_new(), except BLN_DUMMY.
3611 *
3612 * used by qf_init(), main() and doarglist()
3613 */
3614 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003615buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616{
3617 buf_T *buf;
3618
3619 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3620 if (buf != NULL)
3621 return buf->b_fnum;
3622 return 0;
3623}
3624
3625#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3626/*
3627 * Adjust slashes in file names. Called after 'shellslash' was set.
3628 */
3629 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003630buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631{
3632 buf_T *bp;
3633
Bram Moolenaar29323592016-07-24 22:04:11 +02003634 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 {
3636 if (bp->b_ffname != NULL)
3637 slash_adjust(bp->b_ffname);
3638 if (bp->b_sfname != NULL)
3639 slash_adjust(bp->b_sfname);
3640 }
3641}
3642#endif
3643
3644/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003645 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 * Also save the local window option values.
3647 */
3648 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003649buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003651 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652}
3653
3654/*
3655 * Return TRUE if 'ffname' is not the same file as current file.
3656 * Fname must have a full path (expanded by mch_FullName()).
3657 */
3658 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003659otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660{
3661 return otherfile_buf(curbuf, ffname
3662#ifdef UNIX
3663 , NULL
3664#endif
3665 );
3666}
3667
3668 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003669otherfile_buf(
3670 buf_T *buf,
3671 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003673 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003675 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003677 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3679 return TRUE;
3680 if (fnamecmp(ffname, buf->b_ffname) == 0)
3681 return FALSE;
3682#ifdef UNIX
3683 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003684 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685
Bram Moolenaarc667da52019-11-30 20:52:27 +01003686 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 if (stp == NULL)
3688 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003689 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 st.st_dev = (dev_T)-1;
3691 stp = &st;
3692 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003693 // Use dev/ino to check if the files are the same, even when the names
3694 // are different (possible with links). Still need to compare the
3695 // name above, for when the file doesn't exist yet.
3696 // Problem: The dev/ino changes when a file is deleted (and created
3697 // again) and remains the same when renamed/moved. We don't want to
3698 // mch_stat() each buffer each time, that would be too slow. Get the
3699 // dev/ino again when they appear to match, but not when they appear
3700 // to be different: Could skip a buffer when it's actually the same
3701 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 if (buf_same_ino(buf, stp))
3703 {
3704 buf_setino(buf);
3705 if (buf_same_ino(buf, stp))
3706 return FALSE;
3707 }
3708 }
3709#endif
3710 return TRUE;
3711}
3712
3713#if defined(UNIX) || defined(PROTO)
3714/*
3715 * Set inode and device number for a buffer.
3716 * Must always be called when b_fname is changed!.
3717 */
3718 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003719buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003721 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722
3723 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3724 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003725 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 buf->b_dev = st.st_dev;
3727 buf->b_ino = st.st_ino;
3728 }
3729 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003730 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731}
3732
3733/*
3734 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3735 */
3736 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003737buf_same_ino(
3738 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003739 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003741 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 && stp->st_dev == buf->b_dev
3743 && stp->st_ino == buf->b_ino);
3744}
3745#endif
3746
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003747/*
3748 * Print info about the current buffer.
3749 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003751fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003752 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003753 int shorthelp,
3754 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755{
3756 char_u *name;
3757 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003758 char *p;
3759 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003760 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003762 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 if (buffer == NULL)
3764 return;
3765
Bram Moolenaarc667da52019-11-30 20:52:27 +01003766 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003768 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 p = buffer + STRLEN(buffer);
3770 }
3771 else
3772 p = buffer;
3773
3774 *p++ = '"';
3775 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003776 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 else
3778 {
3779 if (!fullname && curbuf->b_fname != NULL)
3780 name = curbuf->b_fname;
3781 else
3782 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003783 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 (int)(IOSIZE - (p - buffer)), TRUE);
3785 }
3786
Bram Moolenaar32526b32019-01-19 17:43:09 +01003787 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 curbufIsChanged() ? (shortmess(SHM_MOD)
3789 ? " [+]" : _(" [Modified]")) : " ",
3790 (curbuf->b_flags & BF_NOTEDITED)
3791#ifdef FEAT_QUICKFIX
3792 && !bt_dontwrite(curbuf)
3793#endif
3794 ? _("[Not edited]") : "",
3795 (curbuf->b_flags & BF_NEW)
3796#ifdef FEAT_QUICKFIX
3797 && !bt_dontwrite(curbuf)
3798#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003799 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003801 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 : _("[readonly]")) : "",
3803 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3804 || curbuf->b_p_ro) ?
3805 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003806 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3807 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 if (curwin->w_cursor.lnum > 1000000L)
3809 n = (int)(((long)curwin->w_cursor.lnum) /
3810 ((long)curbuf->b_ml.ml_line_count / 100L));
3811 else
3812 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3813 (long)curbuf->b_ml.ml_line_count);
3814 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003815 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816#ifdef FEAT_CMDL_INFO
3817 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003818 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003819 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003820 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3821 curbuf->b_ml.ml_line_count),
3822 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823#endif
3824 else
3825 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003826 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 _("line %ld of %ld --%d%%-- col "),
3828 (long)curwin->w_cursor.lnum,
3829 (long)curbuf->b_ml.ml_line_count,
3830 n);
3831 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003832 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003833 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3835 }
3836
Bram Moolenaar32526b32019-01-19 17:43:09 +01003837 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3838 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839
3840 if (dont_truncate)
3841 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003842 // Temporarily set msg_scroll to avoid the message being truncated.
3843 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 msg_start();
3845 n = msg_scroll;
3846 msg_scroll = TRUE;
3847 msg(buffer);
3848 msg_scroll = n;
3849 }
3850 else
3851 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003852 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003854 // Need to repeat the message after redrawing when:
3855 // - When restart_edit is set (otherwise there will be a delay
3856 // before redrawing).
3857 // - When the screen was scrolled but there is no wait-return
3858 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003859 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 }
3861
3862 vim_free(buffer);
3863}
3864
3865 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003866col_print(
3867 char_u *buf,
3868 size_t buflen,
3869 int col,
3870 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871{
3872 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003873 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003875 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876}
3877
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878static char_u *lasttitle = NULL;
3879static char_u *lasticon = NULL;
3880
Bram Moolenaar84a93082018-06-16 22:58:15 +02003881/*
3882 * Put the file name in the title bar and icon of the window.
3883 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003885maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886{
3887 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003888 char_u *title_str = NULL;
3889 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 int maxlen = 0;
3891 int len;
3892 int mustset;
3893 char_u buf[IOSIZE];
3894 int off;
3895
3896 if (!redrawing())
3897 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003898 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 need_maketitle = TRUE;
3900 return;
3901 }
3902
3903 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003904 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003905 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906
3907 if (p_title)
3908 {
3909 if (p_titlelen > 0)
3910 {
3911 maxlen = p_titlelen * Columns / 100;
3912 if (maxlen < 10)
3913 maxlen = 10;
3914 }
3915
Bram Moolenaar84a93082018-06-16 22:58:15 +02003916 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 if (*p_titlestring != NUL)
3918 {
3919#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003920 if (stl_syntax & STL_IN_TITLE)
3921 {
3922 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003923 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003924
3925# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003926 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003927# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003928 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003929 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003930 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003931 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003932 set_string_option_direct((char_u *)"titlestring", -1,
3933 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 else
3936#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003937 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 }
3939 else
3940 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003941 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942
Bram Moolenaar2c666692012-09-05 13:30:40 +02003943#define SPACE_FOR_FNAME (IOSIZE - 100)
3944#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003945#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003947 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003948#ifdef FEAT_TERMINAL
3949 else if (curbuf->b_term != NULL)
3950 {
3951 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3952 SPACE_FOR_FNAME);
3953 }
3954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 else
3956 {
3957 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003958 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 }
3961
Bram Moolenaar21554412017-07-24 21:44:43 +02003962#ifdef FEAT_TERMINAL
3963 if (curbuf->b_term == NULL)
3964#endif
3965 switch (bufIsChanged(curbuf)
3966 + (curbuf->b_p_ro * 2)
3967 + (!curbuf->b_p_ma * 4))
3968 {
3969 case 1: STRCAT(buf, " +"); break;
3970 case 2: STRCAT(buf, " ="); break;
3971 case 3: STRCAT(buf, " =+"); break;
3972 case 4:
3973 case 6: STRCAT(buf, " -"); break;
3974 case 5:
3975 case 7: STRCAT(buf, " -+"); break;
3976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977
Bram Moolenaar21554412017-07-24 21:44:43 +02003978 if (curbuf->b_fname != NULL
3979#ifdef FEAT_TERMINAL
3980 && curbuf->b_term == NULL
3981#endif
3982 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003984 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 off = (int)STRLEN(buf);
3986 buf[off++] = ' ';
3987 buf[off++] = '(';
3988 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003989 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003991 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 if (isalpha(buf[off]) && buf[off + 1] == ':')
3993 off += 2;
3994#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003995 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003996 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003998 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003999 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02004000 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02004001 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02004002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004005
Bram Moolenaarc667da52019-11-30 20:52:27 +01004006 // Translate unprintable chars and concatenate. Keep some
4007 // room for the server name. When there is no room (very long
4008 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02004009 if (off < SPACE_FOR_DIR)
4010 {
4011 p = transstr(buf + off);
4012 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4013 vim_free(p);
4014 }
4015 else
4016 {
4017 vim_strncpy(buf + off, (char_u *)"...",
4018 (size_t)(SPACE_FOR_ARGNR - off));
4019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 STRCAT(buf, ")");
4021 }
4022
Bram Moolenaar2c666692012-09-05 13:30:40 +02004023 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024
4025#if defined(FEAT_CLIENTSERVER)
4026 if (serverName != NULL)
4027 {
4028 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004029 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 }
4031 else
4032#endif
4033 STRCAT(buf, " - VIM");
4034
4035 if (maxlen > 0)
4036 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004037 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004038 if (vim_strsize(buf) > maxlen)
4039 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 }
4041 }
4042 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004043 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045 if (p_icon)
4046 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004047 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 if (*p_iconstring != NUL)
4049 {
4050#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004051 if (stl_syntax & STL_IN_ICON)
4052 {
4053 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004054 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004055
4056# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004057 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004058# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004059 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004060 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004061 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004062 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004063 set_string_option_direct((char_u *)"iconstring", -1,
4064 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 else
4067#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004068 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 }
4070 else
4071 {
4072 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004073 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004074 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004075 p = gettail(curbuf->b_ffname);
4076 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004077 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004078 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 if (len > 100)
4080 {
4081 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004083 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004084 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004086 STRCPY(icon_str, p);
4087 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 }
4089 }
4090
Bram Moolenaar84a93082018-06-16 22:58:15 +02004091 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092
4093 if (mustset)
4094 resettitle();
4095}
4096
4097/*
4098 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4099 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004100 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 */
4102 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004103value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104{
4105 if ((str == NULL) != (*last == NULL)
4106 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4107 {
4108 vim_free(*last);
4109 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004110 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004112 mch_restore_title(
4113 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004116 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004118 return TRUE;
4119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 }
4121 return FALSE;
4122}
4123
4124/*
4125 * Put current window title back (used after calling a shell)
4126 */
4127 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004128resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129{
4130 mch_settitle(lasttitle, lasticon);
4131}
Bram Moolenaarea408852005-06-25 22:49:46 +00004132
4133# if defined(EXITFREE) || defined(PROTO)
4134 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004135free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004136{
4137 vim_free(lasttitle);
4138 vim_free(lasticon);
4139}
4140# endif
4141
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004143#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004144
4145/*
4146 * Used for building in the status line.
4147 */
4148typedef struct
4149{
4150 char_u *stl_start;
4151 int stl_minwid;
4152 int stl_maxwid;
4153 enum {
4154 Normal,
4155 Empty,
4156 Group,
4157 Middle,
4158 Highlight,
4159 TabPage,
4160 Trunc
4161 } stl_type;
4162} stl_item_T;
4163
4164static size_t stl_items_len = 20; // Initial value, grows as needed.
4165static stl_item_T *stl_items = NULL;
4166static int *stl_groupitem = NULL;
4167static stl_hlrec_T *stl_hltab = NULL;
4168static stl_hlrec_T *stl_tabtab = NULL;
4169
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004171 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 * Return length of string in screen cells.
4173 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004174 * Normally works for window "wp", except when working for 'tabline' then it
4175 * is "curwin".
4176 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 * Items are drawn interspersed with the text that surrounds it
4178 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4179 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4180 *
4181 * If maxwidth is not zero, the string will be filled at any middle marker
4182 * or truncated if too long, fillchar is used for all whitespace.
4183 */
4184 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004185build_stl_str_hl(
4186 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004187 char_u *out, // buffer to write into != NameBuff
4188 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004189 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004190 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004191 int fillchar,
4192 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004193 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4194 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195{
Bram Moolenaar10772302019-01-20 18:25:54 +01004196 linenr_T lnum;
4197 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 char_u *p;
4199 char_u *s;
4200 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004201 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004203 win_T *save_curwin;
4204 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004205 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206#endif
4207 int empty_line;
4208 colnr_T virtcol;
4209 long l;
4210 long n;
4211 int prevchar_isflag;
4212 int prevchar_isitem;
4213 int itemisflag;
4214 int fillable;
4215 char_u *str;
4216 long num;
4217 int width;
4218 int itemcnt;
4219 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004220 int group_end_userhl;
4221 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004223#ifdef FEAT_EVAL
4224 int evaldepth;
4225#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 int minwid;
4227 int maxwid;
4228 int zeropad;
4229 char_u base;
4230 char_u opt;
4231#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004232 char_u buf_tmp[TMPLEN];
4233 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004234 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004235 stl_hlrec_T *sp;
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004236 int save_redraw_not_allowed = redraw_not_allowed;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004237 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004238
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004239 // When inside update_screen() we do not want redrawing a statusline,
4240 // ruler, title, etc. to trigger another redraw, it may cause an endless
4241 // loop.
4242 if (updating_screen)
4243 redraw_not_allowed = TRUE;
4244
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004245 if (stl_items == NULL)
4246 {
4247 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4248 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004249
4250 // Allocate one more, because the last element is used to indicate the
4251 // end of the list.
4252 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4253 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004254 }
4255
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004256#ifdef FEAT_EVAL
4257 /*
4258 * When the format starts with "%!" then evaluate it as an expression and
4259 * use the result as the actual format string.
4260 */
4261 if (fmt[0] == '%' && fmt[1] == '!')
4262 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004263 typval_T tv;
4264
4265 tv.v_type = VAR_NUMBER;
4266 tv.vval.v_number = wp->w_id;
4267 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4268
Bram Moolenaar9530b582022-01-22 13:39:08 +00004269 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004270 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004271 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004272
4273 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004274 }
4275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276
4277 if (fillchar == 0)
4278 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004279
Bram Moolenaar10772302019-01-20 18:25:54 +01004280 // The cursor in windows other than the current one isn't always
4281 // up-to-date, esp. because of autocommands and timers.
4282 lnum = wp->w_cursor.lnum;
4283 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4284 {
4285 lnum = wp->w_buffer->b_ml.ml_line_count;
4286 wp->w_cursor.lnum = lnum;
4287 }
4288
4289 // Get line & check if empty (cursorpos will show "0-1"). Note that
4290 // p will become invalid when getting another buffer line.
4291 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004292 empty_line = (*p == NUL);
4293
Bram Moolenaar10772302019-01-20 18:25:54 +01004294 // Get the byte value now, in case we need it below. This is more efficient
4295 // than making a copy of the line.
4296 len = STRLEN(p);
4297 if (wp->w_cursor.col > (colnr_T)len)
4298 {
4299 // Line may have changed since checking the cursor column, or the lnum
4300 // was adjusted above.
4301 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004302 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004303 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004304 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004305 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004306 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307
4308 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004309#ifdef FEAT_EVAL
4310 evaldepth = 0;
4311#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 p = out;
4313 curitem = 0;
4314 prevchar_isflag = TRUE;
4315 prevchar_isitem = FALSE;
zeertzjq122dea72022-07-27 15:48:45 +01004316 for (s = usefmt; *s != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004318 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004319 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004320 size_t new_len = stl_items_len * 3 / 2;
4321 stl_item_T *new_items;
4322 int *new_groupitem;
4323 stl_hlrec_T *new_hlrec;
4324
4325 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4326 if (new_items == NULL)
4327 break;
4328 stl_items = new_items;
4329 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4330 if (new_groupitem == NULL)
4331 break;
4332 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004333 new_hlrec = vim_realloc(stl_hltab,
4334 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004335 if (new_hlrec == NULL)
4336 break;
4337 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004338 new_hlrec = vim_realloc(stl_tabtab,
4339 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004340 if (new_hlrec == NULL)
4341 break;
4342 stl_tabtab = new_hlrec;
4343 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004344 }
4345
zeertzjq122dea72022-07-27 15:48:45 +01004346 if (*s != '%')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 prevchar_isflag = prevchar_isitem = FALSE;
4348
4349 /*
4350 * Handle up to the next '%' or the end.
4351 */
4352 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4353 *p++ = *s++;
4354 if (*s == NUL || p + 1 >= out + outlen)
4355 break;
4356
4357 /*
4358 * Handle one '%' item.
4359 */
4360 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004361 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004362 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 if (*s == '%')
4364 {
4365 if (p + 1 >= out + outlen)
4366 break;
4367 *p++ = *s++;
4368 prevchar_isflag = prevchar_isitem = FALSE;
4369 continue;
4370 }
4371 if (*s == STL_MIDDLEMARK)
4372 {
4373 s++;
4374 if (groupdepth > 0)
4375 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004376 stl_items[curitem].stl_type = Middle;
4377 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 continue;
4379 }
4380 if (*s == STL_TRUNCMARK)
4381 {
4382 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004383 stl_items[curitem].stl_type = Trunc;
4384 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 continue;
4386 }
4387 if (*s == ')')
4388 {
4389 s++;
4390 if (groupdepth < 1)
4391 continue;
4392 groupdepth--;
4393
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004394 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 *p = NUL;
4396 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004397 if (curitem > stl_groupitem[groupdepth] + 1
4398 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004400 // remove group if all items are empty and highlight group
4401 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004402 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004403 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004404 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004405 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004406 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004407 group_start_userhl = group_end_userhl =
4408 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004409 break;
4410 }
4411 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004412 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004413 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004414 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004416 if (stl_items[n].stl_type == Highlight)
4417 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004418 }
4419 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004421 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 p = t;
4423 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004424 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004425 {
4426 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004427 if (stl_items[n].stl_type == Highlight)
4428 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004429 // adjust the start position of TabPage to the next
4430 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004431 if (stl_items[n].stl_type == TabPage)
4432 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 }
4435 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004436 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004438 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 if (has_mbyte)
4440 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004441 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004443 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 {
4445 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004446 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 }
4448 }
4449 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004450 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4451 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452
4453 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004454 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004456
4457 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004458 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004459 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460
Bram Moolenaarc667da52019-11-30 20:52:27 +01004461 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004462 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 {
LemonBoy57ff5262022-05-09 21:03:47 +01004464 // Minus one for the leading '<' added above.
4465 stl_items[l].stl_start -= n - 1;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004466 if (stl_items[l].stl_start < t)
4467 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 }
4469 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004470 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004472 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004473 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 if (n < 0)
4475 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004476 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 n = 0 - n;
4478 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004479 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 }
4481 else
4482 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004483 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004484 l = (n - l) * MB_CHAR2LEN(fillchar);
4485 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004487 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004489 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4490 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004492 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 }
4494 }
4495 continue;
4496 }
4497 minwid = 0;
4498 maxwid = 9999;
4499 zeropad = FALSE;
4500 l = 1;
4501 if (*s == '0')
4502 {
4503 s++;
4504 zeropad = TRUE;
4505 }
4506 if (*s == '-')
4507 {
4508 s++;
4509 l = -1;
4510 }
4511 if (VIM_ISDIGIT(*s))
4512 {
4513 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004514 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 minwid = 0;
4516 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004517 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004519 stl_items[curitem].stl_type = Highlight;
4520 stl_items[curitem].stl_start = p;
4521 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 s++;
4523 curitem++;
4524 continue;
4525 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004526 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4527 {
4528 if (*s == STL_TABCLOSENR)
4529 {
4530 if (minwid == 0)
4531 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004532 // %X ends the close label, go back to the previously
4533 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004534 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004535 if (stl_items[n].stl_type == TabPage
4536 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004537 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004538 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004539 break;
4540 }
4541 }
4542 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004543 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004544 minwid = - minwid;
4545 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004546 stl_items[curitem].stl_type = TabPage;
4547 stl_items[curitem].stl_start = p;
4548 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004549 s++;
4550 curitem++;
4551 continue;
4552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 if (*s == '.')
4554 {
4555 s++;
4556 if (VIM_ISDIGIT(*s))
4557 {
4558 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004559 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 maxwid = 50;
4561 }
4562 }
4563 minwid = (minwid > 50 ? 50 : minwid) * l;
4564 if (*s == '(')
4565 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004566 stl_groupitem[groupdepth++] = curitem;
4567 stl_items[curitem].stl_type = Group;
4568 stl_items[curitem].stl_start = p;
4569 stl_items[curitem].stl_minwid = minwid;
4570 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 s++;
4572 curitem++;
4573 continue;
4574 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004575#ifdef FEAT_EVAL
4576 // Denotes end of expanded %{} block
4577 if (*s == '}' && evaldepth > 0)
4578 {
4579 s++;
4580 evaldepth--;
4581 continue;
4582 }
4583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 if (vim_strchr(STL_ALL, *s) == NULL)
4585 {
4586 s++;
4587 continue;
4588 }
4589 opt = *s++;
4590
Bram Moolenaarc667da52019-11-30 20:52:27 +01004591 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 base = 'D';
4593 itemisflag = FALSE;
4594 fillable = TRUE;
4595 num = -1;
4596 str = NULL;
4597 switch (opt)
4598 {
4599 case STL_FILEPATH:
4600 case STL_FULLPATH:
4601 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004602 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004604 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 else
4606 {
4607 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004608 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4610 }
4611 trans_characters(NameBuff, MAXPATHL);
4612 if (opt != STL_FILENAME)
4613 str = NameBuff;
4614 else
4615 str = gettail(NameBuff);
4616 break;
4617
Bram Moolenaarc667da52019-11-30 20:52:27 +01004618 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004619 {
4620#ifdef FEAT_EVAL
4621 char_u *block_start = s - 1;
4622#endif
4623 int reevaluate = (*s == '%');
4624
4625 if (reevaluate)
4626 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 itemisflag = TRUE;
4628 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004629 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4630 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004632 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 break;
4634 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004635 if (reevaluate)
4636 p[-1] = 0; // remove the % at the end of %{% expr %}
4637 else
4638 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004641 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4642 "%d", curbuf->b_fnum);
4643 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4644 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4645 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004647 save_curbuf = curbuf;
4648 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004649 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 curwin = wp;
4651 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004652 // Visual mode is only valid in the current window.
4653 if (curwin != save_curwin)
4654 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaar9530b582022-01-22 13:39:08 +00004656 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004658 curwin = save_curwin;
4659 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004660 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004661 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004662 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663
4664 if (str != NULL && *str != 0)
4665 {
4666 if (*skipdigits(str) == NUL)
4667 {
4668 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004669 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 itemisflag = FALSE;
4671 }
4672 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004673
4674 // If the output of the expression needs to be evaluated
4675 // replace the %{} block with the result of evaluation
4676 if (reevaluate && str != NULL && *str != 0
4677 && strchr((const char *)str, '%') != NULL
4678 && evaldepth < MAX_STL_EVAL_DEPTH)
4679 {
4680 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4681 size_t str_length = strlen((const char *)str);
4682 size_t fmt_length = strlen((const char *)s);
4683 size_t new_fmt_len = parsed_usefmt
4684 + str_length + fmt_length + 3;
4685 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4686 char_u *new_fmt_p = new_fmt;
4687
4688 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4689 + parsed_usefmt;
4690 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4691 + str_length;
4692 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4693 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4694 + fmt_length;
4695 *new_fmt_p = 0;
4696 new_fmt_p = NULL;
4697
4698 if (usefmt != fmt)
4699 vim_free(usefmt);
4700 VIM_CLEAR(str);
4701 usefmt = new_fmt;
4702 s = usefmt + parsed_usefmt;
4703 evaldepth++;
4704 continue;
4705 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706#endif
4707 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 case STL_LINE:
4710 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4711 ? 0L : (long)(wp->w_cursor.lnum);
4712 break;
4713
4714 case STL_NUMLINES:
4715 num = wp->w_buffer->b_ml.ml_line_count;
4716 break;
4717
4718 case STL_COLUMN:
Bram Moolenaar24959102022-05-07 20:01:16 +01004719 num = (State & MODE_INSERT) == 0 && empty_line
4720 ? 0 : (int)wp->w_cursor.col + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 break;
4722
4723 case STL_VIRTCOL:
4724 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004725 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004726 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 if (opt == STL_VIRTCOL_ALT
Bram Moolenaar24959102022-05-07 20:01:16 +01004728 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0
4729 && empty_line ? 0 : (int)wp->w_cursor.col + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 break;
4731 num = (long)virtcol;
4732 break;
4733
4734 case STL_PERCENTAGE:
4735 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4736 (long)wp->w_buffer->b_ml.ml_line_count);
4737 break;
4738
4739 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004740 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004741 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 break;
4743
4744 case STL_ARGLISTSTAT:
4745 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004746 buf_tmp[0] = 0;
4747 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4748 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 break;
4750
4751 case STL_KEYMAP:
4752 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004753 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4754 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 break;
4756 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004757#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004758 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759#else
4760 num = 0;
4761#endif
4762 break;
4763
4764 case STL_BUFNO:
4765 num = wp->w_buffer->b_fnum;
4766 break;
4767
4768 case STL_OFFSET_X:
4769 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004770 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 case STL_OFFSET:
4772#ifdef FEAT_BYTEOFF
4773 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
Bram Moolenaar24959102022-05-07 20:01:16 +01004774 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0
4775 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line
4776 ? 0 : (int)wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777#endif
4778 break;
4779
4780 case STL_BYTEVAL_X:
4781 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004782 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004784 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 if (num == NL)
4786 num = 0;
4787 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4788 num = NL;
4789 break;
4790
4791 case STL_ROFLAG:
4792 case STL_ROFLAG_ALT:
4793 itemisflag = TRUE;
4794 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004795 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 break;
4797
4798 case STL_HELPFLAG:
4799 case STL_HELPFLAG_ALT:
4800 itemisflag = TRUE;
4801 if (wp->w_buffer->b_help)
4802 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004803 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 break;
4805
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 case STL_FILETYPE:
4807 if (*wp->w_buffer->b_p_ft != NUL
4808 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4809 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004810 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004811 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004812 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 }
4814 break;
4815
4816 case STL_FILETYPE_ALT:
4817 itemisflag = TRUE;
4818 if (*wp->w_buffer->b_p_ft != NUL
4819 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4820 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004821 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004822 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004823 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004825 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 }
4827 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828
Bram Moolenaar4033c552017-09-16 20:54:51 +02004829#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 case STL_PREVIEWFLAG:
4831 case STL_PREVIEWFLAG_ALT:
4832 itemisflag = TRUE;
4833 if (wp->w_p_pvw)
4834 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4835 : _("[Preview]"));
4836 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004837
4838 case STL_QUICKFIX:
4839 if (bt_quickfix(wp->w_buffer))
4840 str = (char_u *)(wp->w_llist_ref
4841 ? _(msg_loclist)
4842 : _(msg_qflist));
4843 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844#endif
4845
4846 case STL_MODIFIED:
4847 case STL_MODIFIED_ALT:
4848 itemisflag = TRUE;
4849 switch ((opt == STL_MODIFIED_ALT)
4850 + bufIsChanged(wp->w_buffer) * 2
4851 + (!wp->w_buffer->b_p_ma) * 4)
4852 {
4853 case 2: str = (char_u *)"[+]"; break;
4854 case 3: str = (char_u *)",+"; break;
4855 case 4: str = (char_u *)"[-]"; break;
4856 case 5: str = (char_u *)",-"; break;
4857 case 6: str = (char_u *)"[+-]"; break;
4858 case 7: str = (char_u *)",+-"; break;
4859 }
4860 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004861
4862 case STL_HIGHLIGHT:
4863 t = s;
4864 while (*s != '#' && *s != NUL)
4865 ++s;
4866 if (*s == '#')
4867 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004868 stl_items[curitem].stl_type = Highlight;
4869 stl_items[curitem].stl_start = p;
4870 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004871 curitem++;
4872 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004873 if (*s != NUL)
4874 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004875 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 }
4877
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004878 stl_items[curitem].stl_start = p;
4879 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 if (str != NULL && *str)
4881 {
4882 t = str;
4883 if (itemisflag)
4884 {
4885 if ((t[0] && t[1])
4886 && ((!prevchar_isitem && *t == ',')
4887 || (prevchar_isflag && *t == ' ')))
4888 t++;
4889 prevchar_isflag = TRUE;
4890 }
4891 l = vim_strsize(t);
4892 if (l > 0)
4893 prevchar_isitem = TRUE;
4894 if (l > maxwid)
4895 {
4896 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 if (has_mbyte)
4898 {
4899 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004900 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 }
4902 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 l -= byte2cells(*t++);
4904 if (p + 1 >= out + outlen)
4905 break;
4906 *p++ = '<';
4907 }
4908 if (minwid > 0)
4909 {
4910 for (; l < minwid && p + 1 < out + outlen; l++)
4911 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004912 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4914 *p++ = ' ';
4915 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004916 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 }
4918 minwid = 0;
4919 }
4920 else
4921 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004922 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004924 // Change a space by fillchar, unless fillchar is '-' and a
4925 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004926 if (fillable && *t == ' '
4927 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4928 MB_CHAR2BYTES(fillchar, p);
4929 else
4930 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 }
4932 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004933 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 }
4935 else if (num >= 0)
4936 {
4937 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4938 char_u nstr[20];
4939
4940 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004941 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 prevchar_isitem = TRUE;
4943 t = nstr;
4944 if (opt == STL_VIRTCOL_ALT)
4945 {
4946 *t++ = '-';
4947 minwid--;
4948 }
4949 *t++ = '%';
4950 if (zeropad)
4951 *t++ = '0';
4952 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004953 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 *t = 0;
4955
4956 for (n = num, l = 1; n >= nbase; n /= nbase)
4957 l++;
4958 if (opt == STL_VIRTCOL_ALT)
4959 l++;
4960 if (l > maxwid)
4961 {
4962 l += 2;
4963 n = l - maxwid;
4964 while (l-- > maxwid)
4965 num /= nbase;
4966 *t++ = '>';
4967 *t++ = '%';
4968 *t = t[-3];
4969 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004970 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4971 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 }
4973 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004974 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4975 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 p += STRLEN(p);
4977 }
4978 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004979 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004981 if (num >= 0 || (!itemisflag && str != NULL && *str != NUL))
4982 prevchar_isflag = FALSE; // Item not NULL, but not a flag
4983 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 if (opt == STL_VIM_EXPR)
4985 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 curitem++;
4987 }
4988 *p = NUL;
4989 itemcnt = curitem;
4990
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004991#ifdef FEAT_EVAL
4992 if (usefmt != fmt)
4993 vim_free(usefmt);
4994#endif
4995
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 width = vim_strsize(out);
4997 if (maxwidth > 0 && width > maxwidth)
4998 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004999 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 l = 0;
5001 if (itemcnt == 0)
5002 s = out;
5003 else
5004 {
5005 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005006 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005008 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005009 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 break;
5011 }
5012 if (l == itemcnt)
5013 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005014 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005015 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 l = 0;
5017 }
5018 }
5019
5020 if (width - vim_strsize(s) >= maxwidth)
5021 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005022 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 if (has_mbyte)
5024 {
5025 s = out;
5026 width = 0;
5027 for (;;)
5028 {
5029 width += ptr2cells(s);
5030 if (width >= maxwidth)
5031 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005032 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005034 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005036 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 }
5038 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 s = out + maxwidth - 1;
5040 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005041 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 break;
5043 itemcnt = l;
5044 *s++ = '>';
5045 *s = 0;
5046 }
5047 else
5048 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 if (has_mbyte)
5050 {
5051 n = 0;
5052 while (width >= maxwidth)
5053 {
5054 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005055 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 }
5057 }
5058 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 n = width - maxwidth + 1;
5060 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005061 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 *s = '<';
5063
Bram Moolenaarc667da52019-11-30 20:52:27 +01005064 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 while (++width < maxwidth)
5066 {
5067 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005068 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 *s = NUL;
5070 }
5071
Bram Moolenaarc667da52019-11-30 20:52:27 +01005072 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 for (; l < itemcnt; l++)
5074 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005075 if (stl_items[l].stl_start - n >= s)
5076 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005078 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 }
5080 }
5081 width = maxwidth;
5082 }
5083 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5084 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005085 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005087 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 break;
5089 if (l < itemcnt)
5090 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005091 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5092 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005093 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005094 for (s = stl_items[l].stl_start; s < p;)
5095 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005097 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 width = maxwidth;
5099 }
5100 }
5101
Bram Moolenaarc667da52019-11-30 20:52:27 +01005102 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005103 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005105 *hltab = stl_hltab;
5106 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 for (l = 0; l < itemcnt; l++)
5108 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005109 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005111 sp->start = stl_items[l].stl_start;
5112 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005113 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 }
5115 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005116 sp->start = NULL;
5117 sp->userhl = 0;
5118 }
5119
Bram Moolenaarc667da52019-11-30 20:52:27 +01005120 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005121 if (tabtab != NULL)
5122 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005123 *tabtab = stl_tabtab;
5124 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005125 for (l = 0; l < itemcnt; l++)
5126 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005127 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005128 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005129 sp->start = stl_items[l].stl_start;
5130 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005131 sp++;
5132 }
5133 }
5134 sp->start = NULL;
5135 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 }
5137
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01005138 redraw_not_allowed = save_redraw_not_allowed;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005139
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005140 // A user function may reset KeyTyped, restore it.
5141 KeyTyped = save_KeyTyped;
5142
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 return width;
5144}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005145#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005147#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5148 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005150 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5151 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 */
5153 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005154get_rel_pos(
5155 win_T *wp,
5156 char_u *buf,
5157 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005159 long above; // number of lines above window
5160 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161
Bram Moolenaarc667da52019-11-30 20:52:27 +01005162 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005163 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 above = wp->w_topline - 1;
5165#ifdef FEAT_DIFF
5166 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005167 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005168 above = 0; // All buffer lines are displayed and there is an
5169 // indication of filler lines, that can be considered
5170 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171#endif
5172 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5173 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005174 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5175 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005177 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005179 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 ? (int)(above / ((above + below) / 100L))
5181 : (int)(above * 100L / (above + below)));
5182}
5183#endif
5184
5185/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005186 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 * Return TRUE if it was appended.
5188 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005189 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005190append_arg_number(
5191 win_T *wp,
5192 char_u *buf,
5193 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005194 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195{
5196 char_u *p;
5197
Bram Moolenaarc667da52019-11-30 20:52:27 +01005198 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 return FALSE;
5200
Bram Moolenaarc667da52019-11-30 20:52:27 +01005201 p = buf + STRLEN(buf); // go to the end of the buffer
5202 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 return FALSE;
5204 *p++ = ' ';
5205 *p++ = '(';
5206 if (add_file)
5207 {
5208 STRCPY(p, "file ");
5209 p += 5;
5210 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005211 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5212 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5214 return TRUE;
5215}
5216
5217/*
5218 * If fname is not a full path, make it a full path.
5219 * Returns pointer to allocated memory (NULL for failure).
5220 */
5221 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005222fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223{
5224 /*
5225 * Force expanding the path always for Unix, because symbolic links may
5226 * mess up the full path name, even though it starts with a '/'.
5227 * Also expand when there is ".." in the file name, try to remove it,
5228 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005229 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 * For MS-Windows also expand names like "longna~1" to "longname".
5231 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005232#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 return FullName_save(fname, TRUE);
5234#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005235 if (!vim_isAbsName(fname)
5236 || strstr((char *)fname, "..") != NULL
5237 || strstr((char *)fname, "//") != NULL
5238# ifdef BACKSLASH_IN_FILENAME
5239 || strstr((char *)fname, "\\\\") != NULL
5240# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005241# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005243# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 )
5245 return FullName_save(fname, FALSE);
5246
5247 fname = vim_strsave(fname);
5248
Bram Moolenaar9b942202007-10-03 12:31:33 +00005249# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005250 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005251 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253
5254 return fname;
5255#endif
5256}
5257
5258/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005259 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5260 * "*ffname" becomes a pointer to allocated memory (or NULL).
5261 * When resolving a link both "*sfname" and "*ffname" will point to the same
5262 * allocated memory.
5263 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005264 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005267fname_expand(
5268 buf_T *buf UNUSED,
5269 char_u **ffname,
5270 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005272 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005274 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005276 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277
5278#ifdef FEAT_SHORTCUT
5279 if (!buf->b_p_bin)
5280 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005281 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005283 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005284 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005285 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 {
5287 vim_free(*ffname);
5288 *ffname = rfname;
5289 *sfname = rfname;
5290 }
5291 }
5292#endif
5293}
5294
5295/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 * Open a window for a number of buffers.
5297 */
5298 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005299ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300{
5301 buf_T *buf;
5302 win_T *wp, *wpnext;
5303 int split_ret = OK;
5304 int p_ea_save;
5305 int open_wins = 0;
5306 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005307 int count; // Maximum number of windows to open.
5308 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005309 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005310 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311
Bram Moolenaarc667da52019-11-30 20:52:27 +01005312 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 count = 9999;
5314 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005315 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5317 all = FALSE;
5318 else
5319 all = TRUE;
5320
5321 setpcmark();
5322
5323#ifdef FEAT_GUI
5324 need_mouse_correct = TRUE;
5325#endif
5326
5327 /*
5328 * Close superfluous windows (two windows for the same buffer).
5329 * Also close windows that are not full-width.
5330 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005331 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005332 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005333 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005335 tpnext = curtab->tp_next;
5336 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005338 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005339 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005340 || ((cmdmod.cmod_split & WSP_VERT)
5341 ? wp->w_height + wp->w_status_height < Rows - p_ch
5342 - tabline_height()
5343 : wp->w_width != Columns)
5344 || (had_tab > 0 && wp != firstwin))
5345 && !ONE_WINDOW
5346 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5347 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005348 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005349 if (win_close(wp, FALSE) == FAIL)
5350 break;
5351 // Just in case an autocommand does something strange with
5352 // windows: start all over...
5353 wpnext = firstwin;
5354 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005355 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005356 }
5357 else
5358 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005360
Bram Moolenaarc667da52019-11-30 20:52:27 +01005361 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005362 if (had_tab == 0 || tpnext == NULL)
5363 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005364 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 }
5366
5367 /*
5368 * Go through the buffer list. When a buffer doesn't have a window yet,
5369 * open one. Otherwise move the window to the right position.
5370 * Watch out for autocommands that delete buffers or windows!
5371 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005372 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5377 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005378 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5380 continue;
5381
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005382 if (had_tab != 0)
5383 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005384 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005385 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005386 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005387 else
5388 wp = NULL;
5389 }
5390 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005391 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005392 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005393 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005394 if (wp->w_buffer == buf)
5395 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005396 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005397 if (wp != NULL)
5398 win_move_after(wp, curwin);
5399 }
5400
5401 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005403 bufref_T bufref;
5404
5405 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005406
Bram Moolenaarc667da52019-11-30 20:52:27 +01005407 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005409 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5411 ++open_wins;
5412 p_ea = p_ea_save;
5413 if (split_ret == FAIL)
5414 continue;
5415
Bram Moolenaarc667da52019-11-30 20:52:27 +01005416 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005419 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005421 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 break;
5424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 if (swap_exists_action == SEA_QUIT)
5426 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005427#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005428 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005429
Bram Moolenaarc667da52019-11-30 20:52:27 +01005430 // Reset the error/interrupt/exception state here so that
5431 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005432 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005433#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005434
Bram Moolenaarc667da52019-11-30 20:52:27 +01005435 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 win_close(curwin, TRUE);
5437 --open_wins;
5438 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005439 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005440
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005441#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005442 // Restore the error/interrupt/exception state if not
5443 // discarded by a new aborting error, interrupt, or uncaught
5444 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005445 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 }
5448 else
5449 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 }
5451
5452 ui_breakcheck();
5453 if (got_int)
5454 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005455 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 break;
5457 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005458#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005459 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005460 if (aborting())
5461 break;
5462#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005463 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005464 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005465 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005468 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
5471 /*
5472 * Close superfluous windows.
5473 */
5474 for (wp = lastwin; open_wins > count; )
5475 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005476 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 if (!win_valid(wp))
5479 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005480 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 wp = lastwin;
5482 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005483 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005485 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 --open_wins;
5487 wp = lastwin;
5488 }
5489 else
5490 {
5491 wp = wp->w_prev;
5492 if (wp == NULL)
5493 break;
5494 }
5495 }
5496}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005499static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005500
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501/*
5502 * do_modelines() - process mode lines for the current file
5503 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005504 * "flags" can be:
5505 * OPT_WINONLY only set options local to window
5506 * OPT_NOWIN don't set options local to window
5507 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 * Returns immediately if the "ml" option isn't set.
5509 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005511do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005513 linenr_T lnum;
5514 int nmlines;
5515 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516
5517 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5518 return;
5519
Bram Moolenaarc667da52019-11-30 20:52:27 +01005520 // Disallow recursive entry here. Can happen when executing a modeline
5521 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 if (entered)
5523 return;
5524
5525 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005526 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005528 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 nmlines = 0;
5530
Hu Jialun9dcd3492021-08-28 20:42:50 +02005531 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005533 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 nmlines = 0;
5535 --entered;
5536}
5537
Bram Moolenaarc667da52019-11-30 20:52:27 +01005538#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539
5540/*
5541 * chk_modeline() - check a single line for a mode string
5542 * Return FAIL if an error encountered.
5543 */
5544 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005545chk_modeline(
5546 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005547 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548{
5549 char_u *s;
5550 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005551 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 int prev;
5553 int vers;
5554 int end;
5555 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005556 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005557
Bram Moolenaare31ee862020-01-07 20:59:34 +01005558 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559
5560 prev = -1;
5561 for (s = ml_get(lnum); *s != NUL; ++s)
5562 {
5563 if (prev == -1 || vim_isspace(prev))
5564 {
5565 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5566 || STRNCMP(s, "vi:", (size_t)3) == 0)
5567 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005568 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005569 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 {
5571 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5572 e = s + 4;
5573 else
5574 e = s + 3;
5575 vers = getdigits(&e);
5576 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005577 && (s[0] != 'V'
5578 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 && (s[3] == ':'
5580 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5581 || (VIM_VERSION_100 < vers && s[3] == '<')
5582 || (VIM_VERSION_100 > vers && s[3] == '>')
5583 || (VIM_VERSION_100 == vers && s[3] == '=')))
5584 break;
5585 }
5586 }
5587 prev = *s;
5588 }
5589
5590 if (*s)
5591 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005592 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 ++s;
5594 while (s[-1] != ':');
5595
Bram Moolenaarc667da52019-11-30 20:52:27 +01005596 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 if (linecopy == NULL)
5598 return FAIL;
5599
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005600 // prepare for emsg()
5601 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005602 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603
5604 end = FALSE;
5605 while (end == FALSE)
5606 {
5607 s = skipwhite(s);
5608 if (*s == NUL)
5609 break;
5610
5611 /*
5612 * Find end of set command: ':' or end of line.
5613 * Skip over "\:", replacing it with ":".
5614 */
5615 for (e = s; *e != ':' && *e != NUL; ++e)
5616 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005617 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 if (*e == NUL)
5619 end = TRUE;
5620
5621 /*
5622 * If there is a "set" command, require a terminating ':' and
5623 * ignore the stuff after the ':'.
5624 * "vi:set opt opt opt: foo" -- foo not interpreted
5625 * "vi:opt opt opt: foo" -- foo interpreted
5626 * Accept "se" for compatibility with Elvis.
5627 */
5628 if (STRNCMP(s, "set ", (size_t)4) == 0
5629 || STRNCMP(s, "se ", (size_t)3) == 0)
5630 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005631 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 break;
5633 end = TRUE;
5634 s = vim_strchr(s, ' ') + 1;
5635 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005636 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637
Bram Moolenaarc667da52019-11-30 20:52:27 +01005638 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005640 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005641
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005642 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005643 current_sctx.sc_version = 1;
5644#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005645 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005646 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005647 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005649
Bram Moolenaar5958f952018-11-20 04:25:21 +01005650 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005651 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005652
Bram Moolenaara3227e22006-03-08 21:32:40 +00005653 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005654
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005655 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005656 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005657 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 break;
5659 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005660 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 }
5662
Bram Moolenaare31ee862020-01-07 20:59:34 +01005663 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005664 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 vim_free(linecopy);
5666 }
5667 return retval;
5668}
5669
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005670/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005671 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5672 */
5673 int
5674bt_normal(buf_T *buf)
5675{
5676 return buf != NULL && buf->b_p_bt[0] == NUL;
5677}
5678
Bram Moolenaar113e1072019-01-20 15:30:40 +01005679#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005680/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005681 * Return TRUE if "buf" is the quickfix buffer.
5682 */
5683 int
5684bt_quickfix(buf_T *buf)
5685{
5686 return buf != NULL && buf->b_p_bt[0] == 'q';
5687}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005688#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005689
Bram Moolenaar113e1072019-01-20 15:30:40 +01005690#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005691/*
5692 * Return TRUE if "buf" is a terminal buffer.
5693 */
5694 int
5695bt_terminal(buf_T *buf)
5696{
5697 return buf != NULL && buf->b_p_bt[0] == 't';
5698}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005699#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005700
5701/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005702 * Return TRUE if "buf" is a help buffer.
5703 */
5704 int
5705bt_help(buf_T *buf)
5706{
5707 return buf != NULL && buf->b_help;
5708}
5709
5710/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005711 * Return TRUE if "buf" is a prompt buffer.
5712 */
5713 int
5714bt_prompt(buf_T *buf)
5715{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005716 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5717}
5718
Dominique Pelle748b3082022-01-08 12:41:16 +00005719#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005720/*
5721 * Return TRUE if "buf" is a buffer for a popup window.
5722 */
5723 int
5724bt_popup(buf_T *buf)
5725{
5726 return buf != NULL && buf->b_p_bt != NULL
5727 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005728}
Dominique Pelle748b3082022-01-08 12:41:16 +00005729#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005730
5731/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005732 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5733 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005734 */
5735 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005736bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005737{
5738 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5739 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005740 || buf->b_p_bt[0] == 't'
5741 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005742}
5743
Dominique Pelle748b3082022-01-08 12:41:16 +00005744#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005745/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005746 * Return TRUE if "buf" has 'buftype' set to "nofile".
5747 */
5748 int
5749bt_nofile(buf_T *buf)
5750{
5751 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5752}
Dominique Pelle748b3082022-01-08 12:41:16 +00005753#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005754
5755/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005756 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5757 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005758 */
5759 int
5760bt_dontwrite(buf_T *buf)
5761{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005762 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005763 || buf->b_p_bt[0] == 't'
5764 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005765}
5766
Bram Moolenaar113e1072019-01-20 15:30:40 +01005767#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005768 int
5769bt_dontwrite_msg(buf_T *buf)
5770{
5771 if (bt_dontwrite(buf))
5772 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005773 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005774 return TRUE;
5775 }
5776 return FALSE;
5777}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005778#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005779
5780/*
5781 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5782 * and 'bufhidden'.
5783 */
5784 int
5785buf_hide(buf_T *buf)
5786{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005787 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005788 switch (buf->b_p_bh[0])
5789 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005790 case 'u': // "unload"
5791 case 'w': // "wipe"
5792 case 'd': return FALSE; // "delete"
5793 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005794 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005795 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005796}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797
5798/*
5799 * Return special buffer name.
5800 * Returns NULL when the buffer has a normal file name.
5801 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005802 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005803buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005805#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005807 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005808 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005809 * Differentiate between the quickfix and location list buffers using
5810 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005811 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005812 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005813 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005814 else
5815 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005818
Bram Moolenaarc667da52019-11-30 20:52:27 +01005819 // There is no _file_ when 'buftype' is "nofile", b_sfname
5820 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005821 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005823#ifdef FEAT_TERMINAL
5824 if (buf->b_term != NULL)
5825 return term_get_status_text(buf->b_term);
5826#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005827 if (buf->b_fname != NULL)
5828 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005829#ifdef FEAT_JOB_CHANNEL
5830 if (bt_prompt(buf))
5831 return (char_u *)_("[Prompt]");
5832#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005833#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005834 if (bt_popup(buf))
5835 return (char_u *)_("[Popup]");
5836#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005837 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005839
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005841 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 return NULL;
5843}
5844
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005846 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5847 */
5848 char_u *
5849buf_get_fname(buf_T *buf)
5850{
5851 if (buf->b_fname == NULL)
5852 return (char_u *)_("[No Name]");
5853 return buf->b_fname;
5854}
5855
5856/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5858 */
5859 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005860set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861{
5862 if (on != curbuf->b_p_bl)
5863 {
5864 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 if (on)
5866 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5867 else
5868 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 }
5870}
5871
5872/*
5873 * Read the file for "buf" again and check if the contents changed.
5874 * Return TRUE if it changed or this could not be checked.
5875 */
5876 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005877buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878{
5879 buf_T *newbuf;
5880 int differ = TRUE;
5881 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 exarg_T ea;
5884
Bram Moolenaarc667da52019-11-30 20:52:27 +01005885 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5887 if (newbuf == NULL)
5888 return TRUE;
5889
Bram Moolenaarc667da52019-11-30 20:52:27 +01005890 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 if (prep_exarg(&ea, buf) == FAIL)
5892 {
5893 wipe_buffer(newbuf, FALSE);
5894 return TRUE;
5895 }
5896
Bram Moolenaarc667da52019-11-30 20:52:27 +01005897 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899
Bram Moolenaar4770d092006-01-12 23:22:24 +00005900 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 && readfile(buf->b_ffname, buf->b_fname,
5902 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5903 &ea, READ_NEW | READ_DUMMY) == OK)
5904 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005905 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5907 {
5908 differ = FALSE;
5909 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5910 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5911 {
5912 differ = TRUE;
5913 break;
5914 }
5915 }
5916 }
5917 vim_free(ea.cmd);
5918
Bram Moolenaarc667da52019-11-30 20:52:27 +01005919 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921
Bram Moolenaarc667da52019-11-30 20:52:27 +01005922 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 wipe_buffer(newbuf, FALSE);
5924
5925 return differ;
5926}
5927
5928/*
5929 * Wipe out a buffer and decrement the last buffer number if it was used for
5930 * this buffer. Call this to wipe out a temp buffer that does not contain any
5931 * marks.
5932 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005934wipe_buffer(
5935 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005936 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937{
5938 if (buf->b_fnum == top_file_num - 1)
5939 --top_file_num;
5940
Bram Moolenaarc667da52019-11-30 20:52:27 +01005941 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005942 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005943
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005944 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005945
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005947 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948}