blob: cec2abbb2cd9e43344f19d6803cf13ba46a29ff4 [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 Moolenaar2eddbac2022-08-25 12:45:21 +0100225 && !bt_quickfix(curbuf)
226 && !bt_nofilename(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227#ifdef FEAT_NETBEANS_INTG
228 && netbeansReadFile
229#endif
230 )
231 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100232 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200233#ifdef UNIX
234 int save_bin = curbuf->b_p_bin;
235 int perm;
236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237#ifdef FEAT_NETBEANS_INTG
238 int oldFire = netbeansFireChanges;
239
240 netbeansFireChanges = 0;
241#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200242#ifdef UNIX
243 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200244 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200245 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200246# ifdef OPEN_CHR_FILES
247 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
248# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200249 ))
250 read_fifo = TRUE;
251 if (read_fifo)
252 curbuf->b_p_bin = TRUE;
253#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100254 if (shortmess(SHM_FILEINFO))
255 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200257 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200258 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
259#ifdef UNIX
260 if (read_fifo)
261 {
262 curbuf->b_p_bin = save_bin;
263 if (retval == OK)
264 retval = read_buffer(FALSE, eap, flags);
265 }
266#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100267 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268#ifdef FEAT_NETBEANS_INTG
269 netbeansFireChanges = oldFire;
270#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100271 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200272 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 fix_help_buffer();
274 }
275 else if (read_stdin)
276 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200277 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100279 // First read the text in binary mode into the buffer.
280 // Then read from that same buffer and append at the end. This makes
281 // it possible to retry when 'fileformat' or 'fileencoding' was
282 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 curbuf->b_p_bin = TRUE;
284 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200285 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
286 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 curbuf->b_p_bin = save_bin;
288 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200289 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 }
291
Bram Moolenaarc667da52019-11-30 20:52:27 +0100292 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100294 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100296 parse_cino(curbuf);
297 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100299 // Set/reset the Changed flag first, autocmds may change the buffer.
300 // Apply the automatic commands, before processing the modelines.
301 // So the modelines have priority over autocommands.
302 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100303 // When reading stdin, the buffer contents always needs writing, so set
304 // the changed flag. Unless in readonly mode: "ls | gview -".
305 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000306 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100307 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100308#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000311 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100313 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200314 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100315 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316
Bram Moolenaarc667da52019-11-30 20:52:27 +0100317 // Set last_changedtick to avoid triggering a TextChanged autocommand right
318 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100319 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100320 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100321 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100322
Bram Moolenaarc667da52019-11-30 20:52:27 +0100323 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324#ifdef FEAT_EVAL
325 if (aborting())
326#else
327 if (got_int)
328#endif
329 curbuf->b_flags |= BF_READERR;
330
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000331#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100332 // Need to update automatic folding. Do this before the autocommands,
333 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000334 foldUpdateAll(curwin);
335#endif
336
Bram Moolenaarc667da52019-11-30 20:52:27 +0100337 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 if (!(curwin->w_valid & VALID_TOPLINE))
339 {
340 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100341#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100347#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349#endif
350
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100351 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100353 // The autocommands may have changed the current buffer. Apply the
354 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200355 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 {
357 aco_save_T aco;
358
Bram Moolenaarc667da52019-11-30 20:52:27 +0100359 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200360 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000361 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
363
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100364 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100365#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100366 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
367 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100368#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100369 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100370#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371
Bram Moolenaarc667da52019-11-30 20:52:27 +0100372 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 aucmd_restbuf(&aco);
374 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 }
376
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 return retval;
378}
379
380/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200381 * Store "buf" in "bufref" and set the free count.
382 */
383 void
384set_bufref(bufref_T *bufref, buf_T *buf)
385{
386 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200387 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200388 bufref->br_buf_free_count = buf_free_count;
389}
390
391/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200392 * Return TRUE if "bufref->br_buf" points to the same buffer as when
393 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200394 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200395 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
396 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200397 */
398 int
399bufref_valid(bufref_T *bufref)
400{
401 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200402 ? TRUE : buf_valid(bufref->br_buf)
403 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200404}
405
406/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200408 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 */
410 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100411buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412{
413 buf_T *bp;
414
Bram Moolenaarc667da52019-11-30 20:52:27 +0100415 // Assume that we more often have a recent buffer, start with the last
416 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200417 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 if (bp == buf)
419 return TRUE;
420 return FALSE;
421}
422
423/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200424 * A hash table used to quickly lookup a buffer by its number.
425 */
426static hashtab_T buf_hashtab;
427
428 static void
429buf_hashtab_add(buf_T *buf)
430{
431 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
432 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000433 emsg(_(e_buffer_cannot_be_registered));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200434}
435
436 static void
437buf_hashtab_remove(buf_T *buf)
438{
439 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
440
441 if (!HASHITEM_EMPTY(hi))
442 hash_remove(&buf_hashtab, hi);
443}
444
Bram Moolenaar94f01952018-09-01 15:30:03 +0200445/*
446 * Return TRUE when buffer "buf" can be unloaded.
447 * Give an error message and return FALSE when the buffer is locked or the
448 * screen is being redrawn and the buffer is in a window.
449 */
450 static int
451can_unload_buffer(buf_T *buf)
452{
453 int can_unload = !buf->b_locked;
454
455 if (can_unload && updating_screen)
456 {
457 win_T *wp;
458
459 FOR_ALL_WINDOWS(wp)
460 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200461 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200462 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200463 break;
464 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200465 }
466 if (!can_unload)
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000467 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200468 return can_unload;
469}
Bram Moolenaara997b452018-04-17 23:24:06 +0200470
Bram Moolenaar480778b2016-07-14 22:09:39 +0200471/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 * Close the link to a buffer.
473 * "action" is used when there is no longer a window for the buffer.
474 * It can be:
475 * 0 buffer becomes hidden
476 * DOBUF_UNLOAD buffer is unloaded
477 * DOBUF_DELETE buffer is unloaded and removed from buffer list
478 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200479 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 * When doing all but the first one on the current buffer, the caller should
481 * get a new buffer very soon!
482 *
483 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100484 *
485 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
486 * cause there to be only one window with this buffer. e.g. when ":quit" is
487 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100488 *
489 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100490 *
491 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100493 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100494close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100495 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100496 buf_T *buf,
497 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100498 int abort_if_last,
499 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100502 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200503 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100504 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200505 win_T *the_curwin = curwin;
506 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200508 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
509 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510
Bram Moolenaarcee52202020-03-11 14:19:58 +0100511 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100512
513 // Force unloading or deleting when 'bufhidden' says so.
514 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
515 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100516 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200517 {
518 del_buf = TRUE;
519 unload_buf = TRUE;
520 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100521 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200522 {
523 del_buf = TRUE;
524 unload_buf = TRUE;
525 wipe_buf = TRUE;
526 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100527 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200528 unload_buf = TRUE;
529
Bram Moolenaar94053a52017-08-01 21:44:33 +0200530#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200531 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100533 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200534 if (term_job_running(buf->b_term))
535 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200536 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200537 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200538 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100539 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200540
Bram Moolenaarc667da52019-11-30 20:52:27 +0100541 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200543 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200544 else
545 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100546 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200547 del_buf = FALSE;
548 unload_buf = FALSE;
549 }
550 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100551 else if (buf->b_p_bh[0] == 'h' && !del_buf)
552 {
553 // Hide a terminal buffer.
554 unload_buf = FALSE;
555 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200556 else
557 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100558 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200559 del_buf = TRUE;
560 unload_buf = TRUE;
561 wipe_buf = TRUE;
562 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100563 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200564 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566
Bram Moolenaarc667da52019-11-30 20:52:27 +0100567 // Disallow deleting the buffer when it is locked (already being closed or
568 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200569 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100570 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200571
Bram Moolenaarc667da52019-11-30 20:52:27 +0100572 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200573 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100575 // Set b_last_cursor when closing the last window for the buffer.
576 // Remember the last cursor position and window options of the buffer.
577 // This used to be only for the current window, but then options like
578 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 if (buf->b_nwindows == 1)
580 set_last_cursor(win);
581 buflist_setfpos(buf, win,
582 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
583 win->w_cursor.col, TRUE);
584 }
585
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200586 set_bufref(&bufref, buf);
587
Bram Moolenaarc667da52019-11-30 20:52:27 +0100588 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 if (buf->b_nwindows == 1)
590 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200591 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100592 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200593 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
594 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200595 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100596 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100597 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200598aucmd_abort:
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000599 emsg(_(e_autocommands_caused_command_to_abort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100600 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100601 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200602 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100603 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100605 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200606 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
Bram Moolenaarc667da52019-11-30 20:52:27 +0100608 // When the buffer becomes hidden, but is not unloaded, trigger
609 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 if (!unload_buf)
611 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200612 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100613 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200614 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
615 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200616 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100617 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200618 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200619 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100620 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200621 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100622 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200623 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100625#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100626 // autocmds may abort script processing
627 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100628 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200631
Bram Moolenaarc667da52019-11-30 20:52:27 +0100632 // If the buffer was in curwin and the window has changed, go back to that
633 // window, if it still exists. This avoids that ":edit x" triggering a
634 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200635 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
636 {
637 block_autocmds();
638 goto_tabpage_win(the_curtab, the_curwin);
639 unblock_autocmds();
640 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
Bram Moolenaarc667da52019-11-30 20:52:27 +0100644 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 if (buf->b_nwindows > 0)
646 --buf->b_nwindows;
647
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100648#ifdef FEAT_DIFF
649 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100650 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100651#endif
652
Bram Moolenaarc667da52019-11-30 20:52:27 +0100653 // Return when a window is displaying the buffer or when it's not
654 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100656 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657
Bram Moolenaarc667da52019-11-30 20:52:27 +0100658 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 if (buf->b_ffname == NULL)
660 del_buf = TRUE;
661
Bram Moolenaarc667da52019-11-30 20:52:27 +0100662 // When closing the current buffer stop Visual mode before freeing
663 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200664 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200665#if defined(EXITFREE)
666 && !entered_free_all_mem
667#endif
668 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200669 end_visual_mode();
670
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100671 // Free all things allocated for this buffer.
672 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
673 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100674 // Remember if we are closing the current buffer. Restore the number of
675 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 is_curbuf = (buf == curbuf);
677 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100679 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100680 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100681 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
Bram Moolenaarc667da52019-11-30 20:52:27 +0100683 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200684 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100685 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100686#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100687 // autocmds may abort script processing
688 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100689 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100692 // It's possible that autocommands change curbuf to the one being deleted.
693 // This might cause the previous curbuf to be deleted unexpectedly. But
694 // in some cases it's OK to delete the curbuf, because a new one is
695 // obtained anyway. Therefore only return if curbuf changed to the
696 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100698 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200699
Bram Moolenaar4033c552017-09-16 20:54:51 +0200700 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100701 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200702
Bram Moolenaarc667da52019-11-30 20:52:27 +0100703 // Autocommands may have opened or closed windows for this buffer.
704 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200705 if (buf->b_nwindows > 0)
706 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 /*
709 * Remove the buffer from the list.
710 */
711 if (wipe_buf)
712 {
Bram Moolenaar347538f2022-03-26 16:28:06 +0000713 // Do not wipe out the buffer if it is used in a window.
714 if (buf->b_nwindows > 0)
715 return FALSE;
716
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200717 if (action == DOBUF_WIPE_REUSE)
718 {
719 // we can re-use this buffer number, store it
720 if (buf_reuse.ga_itemsize == 0)
721 ga_init2(&buf_reuse, sizeof(int), 50);
722 if (ga_grow(&buf_reuse, 1) == OK)
723 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
724 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200725 if (buf->b_sfname != buf->b_ffname)
726 VIM_CLEAR(buf->b_sfname);
727 else
728 buf->b_sfname = NULL;
729 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 if (buf->b_prev == NULL)
731 firstbuf = buf->b_next;
732 else
733 buf->b_prev->b_next = buf->b_next;
734 if (buf->b_next == NULL)
735 lastbuf = buf->b_prev;
736 else
737 buf->b_next->b_prev = buf->b_prev;
738 free_buffer(buf);
739 }
740 else
741 {
742 if (del_buf)
743 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100744 // Free all internal variables and reset option values, to make
745 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 free_buffer_stuff(buf, TRUE);
747
Bram Moolenaarc667da52019-11-30 20:52:27 +0100748 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
750
Bram Moolenaarc667da52019-11-30 20:52:27 +0100751 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 buf->b_p_initialized = FALSE;
753 }
754 buf_clear_file(buf);
755 if (del_buf)
756 buf->b_p_bl = FALSE;
757 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100758 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100759 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760}
761
762/*
763 * Make buffer not contain a file.
764 */
765 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100766buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767{
768 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200769 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 buf->b_p_eol = TRUE;
772 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000774 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100776 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777#ifdef FEAT_NETBEANS_INTG
778 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779#endif
780}
781
782/*
783 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200784 * the file. Careful: get here with "curwin" NULL when exiting.
785 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100786 * BFA_DEL buffer is going to be deleted
787 * BFA_WIPE buffer is going to be wiped out
788 * BFA_KEEP_UNDO do not free undo information
789 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100792buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200795 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200796 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200797 win_T *the_curwin = curwin;
798 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799
Bram Moolenaarc667da52019-11-30 20:52:27 +0100800 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200801 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100802 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200803 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200804 if (buf->b_ml.ml_mfp != NULL)
805 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200806 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
807 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200808 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100809 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200810 return;
811 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200812 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200814 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
815 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200816 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100817 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 return;
819 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200820 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200822 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
823 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200824 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100825 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 return;
827 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200828 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100829 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200830
Bram Moolenaarc667da52019-11-30 20:52:27 +0100831 // If the buffer was in curwin and the window has changed, go back to that
832 // window, if it still exists. This avoids that ":edit x" triggering a
833 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200834 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
835 {
836 block_autocmds();
837 goto_tabpage_win(the_curtab, the_curwin);
838 unblock_autocmds();
839 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200840
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100841#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100842 // autocmds may abort script processing
843 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100847 // It's possible that autocommands change curbuf to the one being deleted.
848 // This might cause curbuf to be deleted unexpectedly. But in some cases
849 // it's OK to delete the curbuf, because a new one is obtained anyway.
850 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 if (buf == curbuf && !is_curbuf)
852 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100854 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200856#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100857 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200858 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100859 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200860#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000861
862#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100863 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000864 {
865 win_T *win;
866 tabpage_T *tp;
867
868 FOR_ALL_TAB_WINDOWS(tp, win)
869 if (win->w_buffer == buf)
870 clearFolding(win);
871 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000872#endif
873
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874#ifdef FEAT_TCL
875 tcl_buffer_free(buf);
876#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100877 ml_close(buf, TRUE); // close and delete the memline/memfile
878 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200879 if ((flags & BFA_KEEP_UNDO) == 0)
880 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100881 u_blockfree(buf); // free the memory allocated for undo
882 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100885 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100887#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100888 clear_buf_prop_types(buf);
889#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100890 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891}
892
893/*
894 * Free a buffer structure and the things it contains related to the buffer
895 * itself (not the file, that must have been done already).
896 */
897 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100898free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200900 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200902#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100903 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200904 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200905 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200906 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200907#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200908#ifdef FEAT_LUA
909 lua_buffer_free(buf);
910#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000911#ifdef FEAT_MZSCHEME
912 mzscheme_buffer_free(buf);
913#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914#ifdef FEAT_PERL
915 perl_buf_free(buf);
916#endif
917#ifdef FEAT_PYTHON
918 python_buffer_free(buf);
919#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200920#ifdef FEAT_PYTHON3
921 python3_buffer_free(buf);
922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923#ifdef FEAT_RUBY
924 ruby_buffer_free(buf);
925#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200926#ifdef FEAT_JOB_CHANNEL
927 channel_buffer_free(buf);
928#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200929#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200930 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200931#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200932#ifdef FEAT_JOB_CHANNEL
933 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200934 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200935 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200936#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200937
938 buf_hashtab_remove(buf);
939
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200940 aubuflocal_remove(buf);
941
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200942 if (autocmd_busy)
943 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100944 // Do not free the buffer structure while autocommands are executing,
945 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200946 buf->b_next = au_pending_free_buf;
947 au_pending_free_buf = buf;
948 }
949 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100950 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200951 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100952 if (curbuf == buf)
953 curbuf = NULL; // make clear it's not to be used
954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955}
956
957/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100958 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100959 */
960 static void
961init_changedtick(buf_T *buf)
962{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100963 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100964
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100965 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
966 di->di_tv.v_type = VAR_NUMBER;
967 di->di_tv.v_lock = VAR_FIXED;
968 di->di_tv.vval.v_number = 0;
969
Bram Moolenaar92769c32017-02-25 15:41:37 +0100970#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100971 STRCPY(buf->b_ct_di.di_key, "changedtick");
972 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100973#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100974}
975
976/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
978 */
979 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100980free_buffer_stuff(
981 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100982 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983{
984 if (free_options)
985 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100986 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200988#ifdef FEAT_SPELL
989 ga_clear(&buf->b_s.b_langp);
990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 }
992#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100993 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100994 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100995
Bram Moolenaarc667da52019-11-30 20:52:27 +0100996 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100997 hash_init(&buf->b_vars->dv_hashtab);
998 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100999 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +01001000 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001003 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001005 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001007#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001008 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001009#endif
Bram Moolenaar0c740e72022-07-25 19:07:04 +01001010#ifdef FEAT_PROP_POPUP
1011 ga_clear_strings(&buf->b_textprop_text);
1012#endif
zeertzjqc207fd22022-06-29 10:37:40 +01001013 map_clear_mode(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1014 map_clear_mode(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001015 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016}
1017
1018/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001019 * Free one wininfo_T.
1020 */
1021 void
1022free_wininfo(wininfo_T *wip)
1023{
1024 if (wip->wi_optset)
1025 {
1026 clear_winopt(&wip->wi_opt);
1027#ifdef FEAT_FOLDING
1028 deleteFoldRecurse(&wip->wi_folds);
1029#endif
1030 }
1031 vim_free(wip);
1032}
1033
1034/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 * Free the b_wininfo list for buffer "buf".
1036 */
1037 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001038clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039{
1040 wininfo_T *wip;
1041
1042 while (buf->b_wininfo != NULL)
1043 {
1044 wip = buf->b_wininfo;
1045 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001046 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 }
1048}
1049
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050/*
1051 * Go to another buffer. Handles the result of the ATTENTION dialog.
1052 */
1053 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001054goto_buffer(
1055 exarg_T *eap,
1056 int start,
1057 int dir,
1058 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001060 bufref_T old_curbuf;
Bram Moolenaar188639d2022-04-04 16:57:21 +01001061 int save_sea = swap_exists_action;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001062
1063 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
Bram Moolenaar188639d2022-04-04 16:57:21 +01001065 if (swap_exists_action == SEA_NONE)
1066 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1068 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1070 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001071#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001073
Bram Moolenaarc667da52019-11-30 20:52:27 +01001074 // Reset the error/interrupt/exception state here so that
1075 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001076 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001077#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001078
Bram Moolenaarc667da52019-11-30 20:52:27 +01001079 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 win_close(curwin, TRUE);
Bram Moolenaar188639d2022-04-04 16:57:21 +01001081 swap_exists_action = save_sea;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001082 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001083
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001084#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001085 // Restore the error/interrupt/exception state if not discarded by a
1086 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001087 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 }
1090 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001091 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001092}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094/*
1095 * Handle the situation of swap_exists_action being set.
1096 * It is allowed for "old_curbuf" to be NULL or invalid.
1097 */
1098 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001099handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001101#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001102 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001103#endif
1104#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001105 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001106#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001107 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001108
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 if (swap_exists_action == SEA_QUIT)
1110 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001111#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001112 // Reset the error/interrupt/exception state here so that
1113 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001114 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001115#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001116
Bram Moolenaarc667da52019-11-30 20:52:27 +01001117 // User selected Quit at ATTENTION prompt. Go back to previous
1118 // buffer. If that buffer is gone or the same as the current one,
1119 // open a new, empty buffer.
1120 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001121 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001122 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001123 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1124 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001125 {
1126 // Block autocommands here because curwin->w_buffer is NULL.
1127 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001128 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001129 unblock_autocmds();
1130 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001131 else
1132 buf = old_curbuf->br_buf;
1133 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001134 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001135 int old_msg_silent = msg_silent;
1136
1137 if (shortmess(SHM_FILEINFO))
1138 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001139 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001140 // restore msg_silent, so that the command line will be shown
1141 msg_silent = old_msg_silent;
1142
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001143#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001144 if (old_tw != curbuf->b_p_tw)
1145 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001146#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001147 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001148 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001149
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001150#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001151 // Restore the error/interrupt/exception state if not discarded by a
1152 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001153 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 }
1156 else if (swap_exists_action == SEA_RECOVER)
1157 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001158#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001159 // Reset the error/interrupt/exception state here so that
1160 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001161 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001162#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001163
Bram Moolenaarc667da52019-11-30 20:52:27 +01001164 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001166 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001167 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001169 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001170
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001171#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001172 // Restore the error/interrupt/exception state if not discarded by a
1173 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001174 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001175#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 }
1177 swap_exists_action = SEA_NONE;
1178}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001181 * Make the current buffer empty.
1182 * Used when it is wiped out and it's the last buffer.
1183 */
1184 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001185empty_curbuf(
1186 int close_others,
1187 int forceit,
1188 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001189{
1190 int retval;
1191 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001192 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193
1194 if (action == DOBUF_UNLOAD)
1195 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001196 emsg(_(e_cannot_unload_last_buffer));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001197 return FAIL;
1198 }
1199
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001200 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001201 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001202 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001203 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001204
1205 setpcmark();
1206 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1207 forceit ? ECMD_FORCEIT : 0, curwin);
1208
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001209 // do_ecmd() may create a new buffer, then we have to delete
1210 // the old one. But do_ecmd() may have done that already, check
1211 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001212 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001213 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001214 if (!close_others)
1215 need_fileinfo = FALSE;
1216 return retval;
1217}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001218
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219/*
1220 * Implementation of the commands for the buffer list.
1221 *
1222 * action == DOBUF_GOTO go to specified buffer
1223 * action == DOBUF_SPLIT split window and go to specified buffer
1224 * action == DOBUF_UNLOAD unload specified buffer(s)
1225 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1226 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001227 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 *
1229 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1230 * start == DOBUF_FIRST go to "count" buffer from first buffer
1231 * start == DOBUF_LAST go to "count" buffer from last buffer
1232 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1233 *
1234 * Return FAIL or OK.
1235 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001236 static int
1237do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001238 int action,
1239 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001240 int dir, // FORWARD or BACKWARD
1241 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001242 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243{
1244 buf_T *buf;
1245 buf_T *bp;
1246 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001247 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248
1249 switch (start)
1250 {
1251 case DOBUF_FIRST: buf = firstbuf; break;
1252 case DOBUF_LAST: buf = lastbuf; break;
1253 default: buf = curbuf; break;
1254 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001255 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 {
1257 while (count-- > 0)
1258 {
1259 do
1260 {
1261 buf = buf->b_next;
1262 if (buf == NULL)
1263 buf = firstbuf;
1264 }
1265 while (buf != curbuf && !bufIsChanged(buf));
1266 }
1267 if (!bufIsChanged(buf))
1268 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001269 emsg(_(e_no_modified_buffer_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 return FAIL;
1271 }
1272 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001273 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 {
1275 while (buf != NULL && buf->b_fnum != count)
1276 buf = buf->b_next;
1277 }
1278 else
1279 {
1280 bp = NULL;
1281 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1282 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001283 // remember the buffer where we start, we come back there when all
1284 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 if (bp == NULL)
1286 bp = buf;
1287 if (dir == FORWARD)
1288 {
1289 buf = buf->b_next;
1290 if (buf == NULL)
1291 buf = firstbuf;
1292 }
1293 else
1294 {
1295 buf = buf->b_prev;
1296 if (buf == NULL)
1297 buf = lastbuf;
1298 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001299 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 if (unload || buf->b_p_bl)
1301 {
1302 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001303 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 }
1305 if (bp == buf)
1306 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001307 // back where we started, didn't find anything.
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001308 emsg(_(e_there_is_no_listed_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 return FAIL;
1310 }
1311 }
1312 }
1313
Bram Moolenaarc667da52019-11-30 20:52:27 +01001314 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 {
1316 if (start == DOBUF_FIRST)
1317 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001318 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 if (!unload)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001320 semsg(_(e_buffer_nr_does_not_exist), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 }
1322 else if (dir == FORWARD)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001323 emsg(_(e_cannot_go_beyond_last_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 else
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001325 emsg(_(e_cannot_go_before_first_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 return FAIL;
1327 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001328#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001329 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf) && !bt_terminal(buf))
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001330 return OK;
1331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332
1333#ifdef FEAT_GUI
1334 need_mouse_correct = TRUE;
1335#endif
1336
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001338 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 */
1340 if (unload)
1341 {
1342 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001343 bufref_T bufref;
1344
Bram Moolenaar94f01952018-09-01 15:30:03 +02001345 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001346 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001347
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001348 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
Bram Moolenaarc667da52019-11-30 20:52:27 +01001350 // When unloading or deleting a buffer that's already unloaded and
1351 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001352 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1353 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 return FAIL;
1355
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001356 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001358#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001359 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 {
1361 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001362 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001363 // Autocommand deleted buffer, oops! It's not changed
1364 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001366 // If it's still changed fail silently, the dialog already
1367 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001368 if (bufIsChanged(buf))
1369 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001371 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001372#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001374 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 buf->b_fnum);
1376 return FAIL;
1377 }
1378 }
1379
Bram Moolenaarc667da52019-11-30 20:52:27 +01001380 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001381 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001382 end_visual_mode();
1383
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001384 // If deleting the last (listed) buffer, make it empty.
1385 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001386 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 if (bp->b_p_bl && bp != buf)
1388 break;
1389 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001390 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001392 // If the deleted buffer is the current one, close the current window
1393 // (unless it's the only window). Repeat this so long as we end up in
1394 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001395 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001396 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001397 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001398 {
1399 if (win_close(curwin, FALSE) == FAIL)
1400 break;
1401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001403 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (buf != curbuf)
1405 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001406 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001407 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001408 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 return OK;
1410 }
1411
1412 /*
1413 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001414 * There should be another, otherwise it would have been handled
1415 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001416 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 * Then prefer the buffer we most recently visited.
1418 * Else try to find one that is loaded, after the current buffer,
1419 * then before the current buffer.
1420 * Finally use any buffer.
1421 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001422 buf = NULL; // selected buffer
1423 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001424 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1425 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001426 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
1428 int jumpidx;
1429
1430 jumpidx = curwin->w_jumplistidx - 1;
1431 if (jumpidx < 0)
1432 jumpidx = curwin->w_jumplistlen - 1;
1433
1434 forward = jumpidx;
1435 while (jumpidx != curwin->w_jumplistidx)
1436 {
1437 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1438 if (buf != NULL)
1439 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001440 // Skip current and unlisted bufs. Also skip a quickfix
1441 // buffer, it might be deleted soon.
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001442 if (buf == curbuf || !buf->b_p_bl || bt_quickfix(buf))
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001443 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 else if (buf->b_ml.ml_mfp == NULL)
1445 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001446 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 if (bp == NULL)
1448 bp = buf;
1449 buf = NULL;
1450 }
1451 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001452 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001454 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1456 break;
1457 if (--jumpidx < 0)
1458 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001459 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 break;
1461 }
1462 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463
Bram Moolenaarc667da52019-11-30 20:52:27 +01001464 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 {
1466 forward = TRUE;
1467 buf = curbuf->b_next;
1468 for (;;)
1469 {
1470 if (buf == NULL)
1471 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001472 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 break;
1474 buf = curbuf->b_prev;
1475 forward = FALSE;
1476 continue;
1477 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001478 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001479 if (buf->b_help == curbuf->b_help && buf->b_p_bl
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001480 && !bt_quickfix(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001482 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001484 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 bp = buf;
1486 }
1487 if (forward)
1488 buf = buf->b_next;
1489 else
1490 buf = buf->b_prev;
1491 }
1492 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001493 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001495 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001497 FOR_ALL_BUFFERS(buf)
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01001498 if (buf->b_p_bl && buf != curbuf && !bt_quickfix(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 break;
1500 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001501 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 {
1503 if (curbuf->b_next != NULL)
1504 buf = curbuf->b_next;
1505 else
1506 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001507 if (bt_quickfix(buf))
1508 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 }
1510 }
1511
Bram Moolenaara02471e2014-01-10 16:43:14 +01001512 if (buf == NULL)
1513 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001514 // Autocommands must have wiped out all other buffers. Only option
1515 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001516 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001517 }
1518
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001520 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001522 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001524 // If 'switchbuf' contains "useopen": jump to first window containing
1525 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001526 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001527 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001528 // If 'switchbuf' contains "usetab": jump to first window in any tab
1529 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001530 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 return OK;
1532 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 return FAIL;
1534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535
Bram Moolenaarc667da52019-11-30 20:52:27 +01001536 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 if (buf == curbuf)
1538 return OK;
1539
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001540 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001541 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 {
1543#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001544 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001546 bufref_T bufref;
1547
1548 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001550 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001551 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 }
1554 if (bufIsChanged(curbuf))
1555#endif
1556 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001557 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 return FAIL;
1559 }
1560 }
1561
Bram Moolenaarc667da52019-11-30 20:52:27 +01001562 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 set_curbuf(buf, action);
1564
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001566 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001568#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001569 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 return FAIL;
1571#endif
1572
1573 return OK;
1574}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001576 int
1577do_buffer(
1578 int action,
1579 int start,
1580 int dir, // FORWARD or BACKWARD
1581 int count, // buffer number or number of buffers
1582 int forceit) // TRUE when using !
1583{
1584 return do_buffer_ext(action, start, dir, count,
1585 forceit ? DOBUF_FORCEIT : 0);
1586}
1587
1588/*
1589 * do_bufdel() - delete or unload buffer(s)
1590 *
1591 * addr_count == 0: ":bdel" - delete current buffer
1592 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1593 * buffer "end_bnr", then any other arguments.
1594 * addr_count == 2: ":N,N bdel" - delete buffers in range
1595 *
1596 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1597 * DOBUF_DEL (":bdel")
1598 *
1599 * Returns error message or NULL
1600 */
1601 char *
1602do_bufdel(
1603 int command,
1604 char_u *arg, // pointer to extra arguments
1605 int addr_count,
1606 int start_bnr, // first buffer number in a range
1607 int end_bnr, // buffer nr or last buffer nr in a range
1608 int forceit)
1609{
1610 int do_current = 0; // delete current buffer?
1611 int deleted = 0; // number of buffers deleted
1612 char *errormsg = NULL; // return value
1613 int bnr; // buffer number
1614 char_u *p;
1615
1616 if (addr_count == 0)
1617 {
1618 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1619 }
1620 else
1621 {
1622 if (addr_count == 2)
1623 {
1624 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001625 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001626 bnr = start_bnr;
1627 }
1628 else // addr_count == 1
1629 bnr = end_bnr;
1630
1631 for ( ;!got_int; ui_breakcheck())
1632 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001633 // Delete the current buffer last, otherwise when the
1634 // current buffer is deleted, the next buffer becomes
1635 // the current one and will be loaded, which may then
1636 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001637 if (bnr == curbuf->b_fnum)
1638 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001639 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001640 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1641 ++deleted;
1642
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001643 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001644 if (addr_count == 2)
1645 {
1646 if (++bnr > end_bnr)
1647 break;
1648 }
1649 else // addr_count == 1
1650 {
1651 arg = skipwhite(arg);
1652 if (*arg == NUL)
1653 break;
1654 if (!VIM_ISDIGIT(*arg))
1655 {
1656 p = skiptowhite_esc(arg);
1657 bnr = buflist_findpat(arg, p,
1658 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1659 FALSE, FALSE);
1660 if (bnr < 0) // failed
1661 break;
1662 arg = p;
1663 }
1664 else
1665 bnr = getdigits(&arg);
1666 }
1667 }
1668 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1669 FORWARD, do_current, forceit) == OK)
1670 ++deleted;
1671
1672 if (deleted == 0)
1673 {
1674 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001675 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001676 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001677 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001678 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001679 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001680 errormsg = (char *)IObuff;
1681 }
1682 else if (deleted >= p_report)
1683 {
1684 if (command == DOBUF_UNLOAD)
1685 smsg(NGETTEXT("%d buffer unloaded",
1686 "%d buffers unloaded", deleted), deleted);
1687 else if (command == DOBUF_DEL)
1688 smsg(NGETTEXT("%d buffer deleted",
1689 "%d buffers deleted", deleted), deleted);
1690 else
1691 smsg(NGETTEXT("%d buffer wiped out",
1692 "%d buffers wiped out", deleted), deleted);
1693 }
1694 }
1695
1696
1697 return errormsg;
1698}
1699
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700/*
1701 * Set current buffer to "buf". Executes autocommands and closes current
1702 * buffer. "action" tells how to close the current buffer:
1703 * DOBUF_GOTO free or hide it
1704 * DOBUF_SPLIT nothing
1705 * DOBUF_UNLOAD unload it
1706 * DOBUF_DEL delete it
1707 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001708 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 */
1710 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001711set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712{
1713 buf_T *prevbuf;
1714 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001715 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001716#ifdef FEAT_SYN_HL
1717 long old_tw = curbuf->b_p_tw;
1718#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001719 bufref_T newbufref;
1720 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001721 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
1723 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001724 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001725 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1726 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727
Bram Moolenaarc667da52019-11-30 20:52:27 +01001728 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730
Bram Moolenaarc667da52019-11-30 20:52:27 +01001731 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001733 set_bufref(&prevbufref, prevbuf);
1734 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001736 // Autocommands may delete the current buffer and/or the buffer we want to
1737 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001738 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001739 || (bufref_valid(&prevbufref)
1740 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001741#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001742 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001744 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001746#ifdef FEAT_SYN_HL
1747 if (prevbuf == curwin->w_buffer)
1748 reset_synblock(curwin);
1749#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001751 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001752#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001753 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001755 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001757 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001758 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001759
Bram Moolenaare615db02022-01-20 21:00:54 +00001760 // Do not sync when in Insert mode and the buffer is open in
1761 // another window, might be a timer doing something in another
1762 // window.
1763 if (prevbuf == curbuf
Bram Moolenaar24959102022-05-07 20:01:16 +01001764 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001765 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1767 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001768 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001769 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1770 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001771 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001772 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001773 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001776 // An autocommand may have deleted "buf", already entered it (e.g., when
1777 // it did ":bunload") or aborted the script processing.
1778 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001779 valid = buf_valid(buf);
1780 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001781#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001782 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001784 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001785 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001786 // If the buffer is not valid but curwin->w_buffer is NULL we must
1787 // enter some buffer. Using the last one is hopefully OK.
1788 if (!valid)
1789 enter_buffer(lastbuf);
1790 else
1791 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001792#ifdef FEAT_SYN_HL
1793 if (old_tw != curbuf->b_p_tw)
1794 check_colorcolumn(curwin);
1795#endif
1796 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797}
1798
1799/*
1800 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001801 * Old curbuf must have been abandoned already! This also means "curbuf" may
1802 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001804 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001805enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806{
Bram Moolenaarcfeb8a52022-08-13 14:09:44 +01001807 // when closing the current buffer stop Visual mode
1808 if (VIsual_active
1809#if defined(EXITFREE)
1810 && !entered_free_all_mem
1811#endif
1812 )
1813 end_visual_mode();
1814
Bram Moolenaar010ee962019-09-25 20:37:36 +02001815 // Get the buffer in the current window.
1816 curwin->w_buffer = buf;
1817 curbuf = buf;
1818 ++curbuf->b_nwindows;
1819
1820 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1822 if (!buf->b_help)
1823 get_winopts(buf);
1824#ifdef FEAT_FOLDING
1825 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001826 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001828 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829#endif
1830
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001832 if (curwin->w_p_diff)
1833 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#endif
1835
Bram Moolenaara971b822011-09-14 14:43:25 +02001836#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001837 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001838#endif
1839
Bram Moolenaarc667da52019-11-30 20:52:27 +01001840 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 curwin->w_cursor.lnum = 1;
1842 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001845 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846
Bram Moolenaarc667da52019-11-30 20:52:27 +01001847 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001848 curwin->w_valid = 0;
1849
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001850 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1851 curbuf->b_last_cursor.col, TRUE);
1852
Bram Moolenaarc667da52019-11-30 20:52:27 +01001853 // Make sure the buffer is loaded.
1854 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001855 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001856 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001857 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001858 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001859 if (*curbuf->b_p_ft == NUL)
1860 did_filetype = FALSE;
1861
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001862 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 else
1865 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001866 if (!msg_silent && !shortmess(SHM_FILEINFO))
1867 need_fileinfo = TRUE; // display file info after redraw
1868
1869 // check if file changed
1870 (void)buf_check_timestamp(curbuf, FALSE);
1871
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001873#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1877 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 }
1879
Bram Moolenaarc667da52019-11-30 20:52:27 +01001880 // If autocommands did not change the cursor position, restore cursor lnum
1881 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 if (curwin->w_cursor.lnum == 1 && inindent(0))
1883 buflist_getfpos();
1884
Bram Moolenaarc667da52019-11-30 20:52:27 +01001885 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001887 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001888 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001889 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890
Bram Moolenaar009b2592004-10-24 19:18:58 +00001891#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001892 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001893 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001894#endif
1895
Bram Moolenaarc667da52019-11-30 20:52:27 +01001896 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001897 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898
1899#ifdef FEAT_KEYMAP
1900 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001901 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001903#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001904 // May need to set the spell language. Can only do this after the buffer
1905 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001906 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1907 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001908#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001909#ifdef FEAT_VIMINFO
1910 curbuf->b_last_used = vim_time();
1911#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001912
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001913 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914}
1915
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001916#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1917/*
1918 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001919 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001920 */
1921 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001922do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001923{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001924 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001925 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001926 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001927 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001928 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001929 last_chdir_reason = "autochdir";
1930 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001931}
1932#endif
1933
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001934 void
1935no_write_message(void)
1936{
1937#ifdef FEAT_TERMINAL
1938 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001939 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001940 else
1941#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001942 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001943}
1944
1945 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001946no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001947{
1948#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001949 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001950 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001951 else
1952#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001953 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001954}
1955
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956/*
1957 * functions for dealing with the buffer list
1958 */
1959
1960/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001961 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1962 * only one window. That means it can be re-used.
1963 */
1964 int
1965curbuf_reusable(void)
1966{
1967 return (curbuf != NULL
1968 && curbuf->b_ffname == NULL
1969 && curbuf->b_nwindows <= 1
1970 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaar39803d82019-04-07 12:04:51 +02001971 && !bt_quickfix(curbuf)
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001972 && !curbufIsChanged());
1973}
1974
1975/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 * Add a file name to the buffer list. Return a pointer to the buffer.
1977 * If the same file name already exists return a pointer to that buffer.
1978 * If it does not exist, or if fname == NULL, a new entry is created.
1979 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1980 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1981 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001982 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001983 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1984 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001985 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 * This is the ONLY way to create a new buffer.
1987 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001989buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001990 char_u *ffname_arg, // full path of fname or relative
1991 char_u *sfname_arg, // short fname or NULL
1992 linenr_T lnum, // preferred cursor line
1993 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001995 char_u *ffname = ffname_arg;
1996 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 buf_T *buf;
1998#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001999 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000#endif
2001
Bram Moolenaar480778b2016-07-14 22:09:39 +02002002 if (top_file_num == 1)
2003 hash_init(&buf_hashtab);
2004
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002005 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002008 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 */
2010#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002011 // On Unix we can use inode numbers when the file exists. Works better
2012 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2014 st.st_dev = (dev_T)-1;
2015#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002016 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017#ifdef UNIX
2018 buflist_findname_stat(ffname, &st)
2019#else
2020 buflist_findname(ffname)
2021#endif
2022 ) != NULL)
2023 {
2024 vim_free(ffname);
2025 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002026 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2027 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002028
2029 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002030 // copy the options now, if 'cpo' doesn't have 's' and not done
2031 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002032 buf_copy_options(buf, 0);
2033
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2035 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002036 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002037
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002039 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002041 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002042 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002043 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002044 return NULL;
2045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 }
2047 return buf;
2048 }
2049
2050 /*
2051 * If the current buffer has no name and no contents, use the current
2052 * buffer. Otherwise: Need to allocate a new buffer structure.
2053 *
2054 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002055 * (A spell file buffer is allocated in spell.c, but that's not a normal
2056 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 */
2058 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002059 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 {
2061 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002062 // It's like this buffer is deleted. Watch out for autocommands that
2063 // change curbuf! If that happens, allocate a new buffer anyway.
Charlie Grovesfef44852022-04-19 16:24:12 +01002064 buf_freeall(buf, BFA_WIPE | BFA_DEL);
2065 if (buf != curbuf) // autocommands deleted the buffer!
2066 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002067#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002068 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002069 {
2070 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002072 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 }
2075 if (buf != curbuf || curbuf == NULL)
2076 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002077 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (buf == NULL)
2079 {
2080 vim_free(ffname);
2081 return NULL;
2082 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002083#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002084 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002085 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002086 if (buf->b_vars == NULL)
2087 {
2088 vim_free(ffname);
2089 vim_free(buf);
2090 return NULL;
2091 }
2092 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2093#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002094 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 }
2096
2097 if (ffname != NULL)
2098 {
2099 buf->b_ffname = ffname;
2100 buf->b_sfname = vim_strsave(sfname);
2101 }
2102
2103 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002104 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
2106 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2107 || buf->b_wininfo == NULL)
2108 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002109 if (buf->b_sfname != buf->b_ffname)
2110 VIM_CLEAR(buf->b_sfname);
2111 else
2112 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002113 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 if (buf != curbuf)
2115 free_buffer(buf);
2116 return NULL;
2117 }
2118
2119 if (buf == curbuf)
2120 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002121 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002122
Bram Moolenaarc667da52019-11-30 20:52:27 +01002123 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002124 buf->b_p_initialized = FALSE;
2125 buf_copy_options(buf, BCO_ENTER);
2126
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002128 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 curbuf->b_kmap_state |= KEYMAP_INIT;
2130#endif
2131 }
2132 else
2133 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002134 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002136 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 {
2138 buf->b_prev = NULL;
2139 firstbuf = buf;
2140 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002141 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 {
2143 lastbuf->b_next = buf;
2144 buf->b_prev = lastbuf;
2145 }
2146 lastbuf = buf;
2147
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002148 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2149 {
2150 // Recycle a previously used buffer number. Used for buffers which
2151 // are normally hidden, e.g. in a popup window. Avoids that the
2152 // buffer number grows rapidly.
2153 --buf_reuse.ga_len;
2154 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002155
2156 // Move buffer to the right place in the buffer list.
2157 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2158 {
2159 buf_T *prev = buf->b_prev;
2160
2161 prev->b_next = buf->b_next;
2162 if (prev->b_next != NULL)
2163 prev->b_next->b_prev = prev;
2164 buf->b_next = prev;
2165 buf->b_prev = prev->b_prev;
2166 if (buf->b_prev != NULL)
2167 buf->b_prev->b_next = buf;
2168 prev->b_prev = buf;
2169 if (lastbuf == buf)
2170 lastbuf = prev;
2171 if (firstbuf == prev)
2172 firstbuf = buf;
2173 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002174 }
2175 else
2176 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002177 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002179 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002180 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 {
2182 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002183 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 }
2185 top_file_num = 1;
2186 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002187 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002189 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 buf_copy_options(buf, BCO_ALWAYS);
2191 }
2192
2193 buf->b_wininfo->wi_fpos.lnum = lnum;
2194 buf->b_wininfo->wi_win = curwin;
2195
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002196#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002197 hash_init(&buf->b_s.b_keywtab);
2198 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#endif
2200
2201 buf->b_fname = buf->b_sfname;
2202#ifdef UNIX
2203 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002204 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 else
2206 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002207 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 buf->b_dev = st.st_dev;
2209 buf->b_ino = st.st_ino;
2210 }
2211#endif
2212 buf->b_u_synced = TRUE;
2213 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002214 if (flags & BLN_DUMMY)
2215 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002217 clrallmarks(buf); // clear marks
2218 fmarks_check_names(buf); // check file marks for this file
2219 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 if (!(flags & BLN_DUMMY))
2221 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002222 bufref_T bufref;
2223
Bram Moolenaarc667da52019-11-30 20:52:27 +01002224 // Tricky: these autocommands may change the buffer list. They could
2225 // also split the window with re-using the one empty buffer. This may
2226 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002227 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002228 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002229 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002230 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002232 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002233 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002234 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002235 return NULL;
2236 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002237#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002238 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002241 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242
2243 return buf;
2244}
2245
2246/*
2247 * Free the memory for the options of a buffer.
2248 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2249 * 'fileencoding'.
2250 */
2251 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002252free_buf_options(
2253 buf_T *buf,
2254 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255{
2256 if (free_p_ff)
2257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 clear_string_option(&buf->b_p_bh);
2261 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 }
2263#ifdef FEAT_FIND_ID
2264 clear_string_option(&buf->b_p_def);
2265 clear_string_option(&buf->b_p_inc);
2266# ifdef FEAT_EVAL
2267 clear_string_option(&buf->b_p_inex);
2268# endif
2269#endif
Bram Moolenaar8e145b82022-05-21 20:17:31 +01002270#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 clear_string_option(&buf->b_p_inde);
2272 clear_string_option(&buf->b_p_indk);
2273#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002274#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2275 clear_string_option(&buf->b_p_bexpr);
2276#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002277#if defined(FEAT_CRYPT)
2278 clear_string_option(&buf->b_p_cm);
2279#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002280 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002281#if defined(FEAT_EVAL)
2282 clear_string_option(&buf->b_p_fex);
2283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002285# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002286 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2287 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2288 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002289# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 clear_string_option(&buf->b_p_key);
2291#endif
2292 clear_string_option(&buf->b_p_kp);
2293 clear_string_option(&buf->b_p_mps);
2294 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002295 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002297#ifdef FEAT_VARTABS
2298 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002299 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002300 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002301 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002302 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002303 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002304#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305#ifdef FEAT_KEYMAP
2306 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002307 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 ga_clear(&buf->b_kmap_ga);
2309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311#ifdef FEAT_FOLDING
2312 clear_string_option(&buf->b_p_cms);
2313#endif
2314 clear_string_option(&buf->b_p_nf);
2315#ifdef FEAT_SYN_HL
2316 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002317 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002318#endif
2319#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002320 clear_string_option(&buf->b_s.b_p_spc);
2321 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002322 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002323 buf->b_s.b_cap_prog = NULL;
2324 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002325 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 clear_string_option(&buf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 clear_string_option(&buf->b_p_cink);
2330 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002331 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 clear_string_option(&buf->b_p_cinw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002334#ifdef FEAT_COMPL_FUNC
2335 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002336 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002337 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002338 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002339 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002340 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342#ifdef FEAT_QUICKFIX
2343 clear_string_option(&buf->b_p_gp);
2344 clear_string_option(&buf->b_p_mp);
2345 clear_string_option(&buf->b_p_efm);
2346#endif
2347 clear_string_option(&buf->b_p_ep);
2348 clear_string_option(&buf->b_p_path);
2349 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002350 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002351#ifdef FEAT_EVAL
2352 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002353 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002354#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 clear_string_option(&buf->b_p_dict);
2356 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002357 clear_string_option(&buf->b_p_qe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002359 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002360 clear_string_option(&buf->b_p_lw);
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002361 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002362 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363}
2364
2365/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002366 * Get alternate file "n".
2367 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2368 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 * if (options & GETF_SETMARK) call setpcmark()
2370 * if (options & GETF_ALT) we are jumping to an alternate file.
2371 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2372 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002373 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 */
2375 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002376buflist_getfile(
2377 int n,
2378 linenr_T lnum,
2379 int options,
2380 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381{
2382 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 pos_T *fpos;
2385 colnr_T col;
2386
2387 buf = buflist_findnr(n);
2388 if (buf == NULL)
2389 {
2390 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002391 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002393 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 return FAIL;
2395 }
2396
Bram Moolenaarc667da52019-11-30 20:52:27 +01002397 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 if (buf == curbuf)
2399 return OK;
2400
Bram Moolenaar71223e22022-05-30 15:23:09 +01002401 if (text_or_buf_locked())
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002402 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403
Bram Moolenaarc667da52019-11-30 20:52:27 +01002404 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 if (lnum == 0)
2406 {
2407 fpos = buflist_findfpos(buf);
2408 lnum = fpos->lnum;
2409 col = fpos->col;
2410 }
2411 else
2412 col = 0;
2413
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 if (options & GETF_SWITCH)
2415 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002416 // If 'switchbuf' contains "useopen": jump to first window containing
2417 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002418 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002420
Bram Moolenaarc667da52019-11-30 20:52:27 +01002421 // If 'switchbuf' contains "usetab": jump to first window in any tab
2422 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002423 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002424 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002425
Bram Moolenaarc667da52019-11-30 20:52:27 +01002426 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2427 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002428 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002429 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002431 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002432 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002433 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2434 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002436 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 }
2438 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002441 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2442 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 {
2444 --RedrawingDisabled;
2445
Bram Moolenaarc667da52019-11-30 20:52:27 +01002446 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (!p_sol && col != 0)
2448 {
2449 curwin->w_cursor.col = col;
2450 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 curwin->w_set_curswant = TRUE;
2453 }
2454 return OK;
2455 }
2456 --RedrawingDisabled;
2457 return FAIL;
2458}
2459
2460/*
2461 * go to the last know line number for the current buffer
2462 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002463 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002464buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465{
2466 pos_T *fpos;
2467
2468 fpos = buflist_findfpos(curbuf);
2469
2470 curwin->w_cursor.lnum = fpos->lnum;
2471 check_cursor_lnum();
2472
2473 if (p_sol)
2474 curwin->w_cursor.col = 0;
2475 else
2476 {
2477 curwin->w_cursor.col = fpos->col;
2478 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 curwin->w_set_curswant = TRUE;
2481 }
2482}
2483
Bram Moolenaar81695252004-12-29 20:58:21 +00002484#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2485/*
2486 * Find file in buffer list by name (it has to be for the current window).
2487 * Returns NULL if not found.
2488 */
2489 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002490buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002491{
2492 char_u *ffname;
2493 buf_T *buf = NULL;
2494
Bram Moolenaarc667da52019-11-30 20:52:27 +01002495 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002496 ffname = FullName_save(fname,
2497#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002498 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002499#else
2500 FALSE
2501#endif
2502 );
2503 if (ffname != NULL)
2504 {
2505 buf = buflist_findname(ffname);
2506 vim_free(ffname);
2507 }
2508 return buf;
2509}
2510#endif
2511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512/*
2513 * Find file in buffer list by name (it has to be for the current window).
2514 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002515 * Skips dummy buffers.
2516 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 */
2518 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002519buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520{
2521#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002522 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523
2524 if (mch_stat((char *)ffname, &st) < 0)
2525 st.st_dev = (dev_T)-1;
2526 return buflist_findname_stat(ffname, &st);
2527}
2528
2529/*
2530 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2531 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002532 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 */
2534 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002535buflist_findname_stat(
2536 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002537 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538{
2539#endif
2540 buf_T *buf;
2541
Bram Moolenaarc667da52019-11-30 20:52:27 +01002542 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002543 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002544 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545#ifdef UNIX
2546 , stp
2547#endif
2548 ))
2549 return buf;
2550 return NULL;
2551}
2552
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553/*
2554 * Find file in buffer list by a regexp pattern.
2555 * Return fnum of the found buffer.
2556 * Return < 0 for error.
2557 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002559buflist_findpat(
2560 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002561 char_u *pattern_end, // pointer to first char after pattern
2562 int unlisted, // find unlisted buffers
2563 int diffmode UNUSED, // find diff-mode buffers only
2564 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565{
2566 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 int match = -1;
2568 int find_listed;
2569 char_u *pat;
2570 char_u *patend;
2571 int attempt;
2572 char_u *p;
2573 int toggledollar;
2574
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002575 // "%" is current file, "%%" or "#" is alternate file
2576 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2577 || (in_vim9script() && pattern_end == pattern + 2
2578 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002580 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002582 else
2583 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584#ifdef FEAT_DIFF
2585 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2586 match = -1;
2587#endif
2588 }
2589
2590 /*
2591 * Try four ways of matching a listed buffer:
2592 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002593 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 * attempt == 2: with '$' at end (only match at end)
2595 * attempt == 3: with '^' at start and '$' at end (only full match)
2596 * Repeat this for finding an unlisted buffer if there was no matching
2597 * listed buffer.
2598 */
2599 else
2600 {
2601 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2602 if (pat == NULL)
2603 return -1;
2604 patend = pat + STRLEN(pat) - 1;
2605 toggledollar = (patend > pat && *patend == '$');
2606
Bram Moolenaarc667da52019-11-30 20:52:27 +01002607 // First try finding a listed buffer. If not found and "unlisted"
2608 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 find_listed = TRUE;
2610 for (;;)
2611 {
2612 for (attempt = 0; attempt <= 3; ++attempt)
2613 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002614 regmatch_T regmatch;
2615
Bram Moolenaarc667da52019-11-30 20:52:27 +01002616 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002618 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002620 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002622 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002624 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002625 {
2626 if (regmatch.regprog == NULL)
2627 {
2628 // invalid pattern, possibly after switching engine
2629 vim_free(pat);
2630 return -1;
2631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 if (buf->b_p_bl == find_listed
2633#ifdef FEAT_DIFF
2634 && (!diffmode || diff_mode_buf(buf))
2635#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002636 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002638 if (curtab_only)
2639 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002640 // Ignore the match if the buffer is not open in
2641 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002642 win_T *wp;
2643
Bram Moolenaar29323592016-07-24 22:04:11 +02002644 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002645 if (wp->w_buffer == buf)
2646 break;
2647 if (wp == NULL)
2648 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002649 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002650 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 {
2652 match = -2;
2653 break;
2654 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002655 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 }
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002659 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002660 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 break;
2662 }
2663
Bram Moolenaarc667da52019-11-30 20:52:27 +01002664 // Only search for unlisted buffers if there was no match with
2665 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (!unlisted || !find_listed || match != -1)
2667 break;
2668 find_listed = FALSE;
2669 }
2670
2671 vim_free(pat);
2672 }
2673
2674 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002675 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002677 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 return match;
2679}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
Bram Moolenaar52410572019-10-27 05:12:45 +01002681#ifdef FEAT_VIMINFO
2682typedef struct {
2683 buf_T *buf;
2684 char_u *match;
2685} bufmatch_T;
2686#endif
2687
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688/*
2689 * Find all buffer names that match.
2690 * For command line expansion of ":buf" and ":sbuf".
2691 * Return OK if matches found, FAIL otherwise.
2692 */
2693 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002694ExpandBufnames(
2695 char_u *pat,
2696 int *num_file,
2697 char_u ***file,
2698 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
2700 int count = 0;
2701 buf_T *buf;
2702 int round;
2703 char_u *p;
2704 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002705 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002706#ifdef FEAT_VIMINFO
2707 bufmatch_T *matches = NULL;
2708#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002709 int fuzzy;
2710 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711
Bram Moolenaarc667da52019-11-30 20:52:27 +01002712 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 *file = NULL;
2714
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002715#ifdef FEAT_DIFF
2716 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2717 return FAIL;
2718#endif
2719
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002720 fuzzy = cmdline_fuzzy_complete(pat);
2721
2722 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2723 // expression matching)
2724 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002726 if (*pat == '^')
2727 {
2728 patc = alloc(STRLEN(pat) + 11);
2729 if (patc == NULL)
2730 return FAIL;
2731 STRCPY(patc, "\\(^\\|[\\/]\\)");
2732 STRCPY(patc + 11, pat + 1);
2733 }
2734 else
2735 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002736 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002737
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002738 // attempt == 0: try match with '\<', match at start of word
2739 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002740 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002741 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002742 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002743 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002744
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002745 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002746 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002747 if (attempt > 0 && patc == pat)
2748 break; // there was no anchor, no need to try again
2749 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002752 // round == 1: Count the matches.
2753 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 for (round = 1; round <= 2; ++round)
2755 {
2756 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002757 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002759 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002761#ifdef FEAT_DIFF
2762 if (options & BUF_DIFF_FILTER)
2763 // Skip buffers not suitable for
2764 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002765 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002766 continue;
2767#endif
2768
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002769 if (!fuzzy)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002770 {
2771 if (regmatch.regprog == NULL)
2772 {
2773 // invalid pattern, possibly after recompiling
2774 if (patc != pat)
2775 vim_free(patc);
2776 return FAIL;
2777 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002778 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002779 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002780 else
2781 {
2782 p = NULL;
2783 // first try matching with the short file name
2784 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2785 p = buf->b_sfname;
2786 if (p == NULL)
2787 {
2788 // next try matching with the full path file name
2789 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2790 p = buf->b_ffname;
2791 }
2792 }
2793
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002794 if (p == NULL)
2795 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002796
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002797 if (round == 1)
2798 {
2799 ++count;
2800 continue;
2801 }
2802
2803 if (options & WILD_HOME_REPLACE)
2804 p = home_replace_save(buf, p);
2805 else
2806 p = vim_strsave(p);
2807
2808 if (!fuzzy)
2809 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002810#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002811 if (matches != NULL)
2812 {
2813 matches[count].buf = buf;
2814 matches[count].match = p;
2815 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002817 else
2818#endif
2819 (*file)[count++] = p;
2820 }
2821 else
2822 {
2823 fuzmatch[count].idx = count;
2824 fuzmatch[count].str = p;
2825 fuzmatch[count].score = score;
2826 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 }
2828 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002829 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 break;
2831 if (round == 1)
2832 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002833 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002835 *file = ALLOC_MULT(char_u *, count);
2836 if (*file == NULL)
2837 {
2838 vim_regfree(regmatch.regprog);
2839 if (patc != pat)
2840 vim_free(patc);
2841 return FAIL;
2842 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002843#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002844 if (options & WILD_BUFLASTUSED)
2845 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002846#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002847 }
2848 else
2849 {
2850 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2851 if (fuzmatch == NULL)
2852 {
2853 *num_file = 0;
2854 *file = NULL;
2855 return FAIL;
2856 }
2857 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 }
2859 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002860
2861 if (!fuzzy)
2862 {
2863 vim_regfree(regmatch.regprog);
2864 if (count) // match(es) found, break here
2865 break;
2866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 }
2868
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002869 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002870 vim_free(patc);
2871
Bram Moolenaar52410572019-10-27 05:12:45 +01002872#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002873 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002874 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002875 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002876 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002877 int i;
2878 if (count > 1)
2879 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2880 // if the current buffer is first in the list, place it at the end
2881 if (matches[0].buf == curbuf)
2882 {
2883 for (i = 1; i < count; i++)
2884 (*file)[i-1] = matches[i].match;
2885 (*file)[count-1] = matches[0].match;
2886 }
2887 else
2888 {
2889 for (i = 0; i < count; i++)
2890 (*file)[i] = matches[i].match;
2891 }
2892 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002893 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002894 }
2895 else
2896 {
2897 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2898 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002899 }
2900#endif
2901
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 *num_file = count;
2903 return (count == 0 ? FAIL : OK);
2904}
2905
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906/*
2907 * Check for a match on the file name for buffer "buf" with regprog "prog".
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002908 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 */
2910 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002911buflist_match(
2912 regmatch_T *rmp,
2913 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002914 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915{
2916 char_u *match;
2917
Bram Moolenaarc667da52019-11-30 20:52:27 +01002918 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002919 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaara59f2df2022-05-11 11:42:28 +01002920 if (match == NULL && rmp->regprog != NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002921 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923 return match;
2924}
2925
2926/*
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002927 * Try matching the regexp in "rmp->regprog" with file name "name".
2928 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 * Return "name" when there is a match, NULL when not.
2930 */
2931 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002932fname_match(
2933 regmatch_T *rmp,
2934 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002935 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936{
2937 char_u *match = NULL;
2938 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002940 // extra check for valid arguments
2941 if (name != NULL && rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002943 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002944 rmp->rm_ic = p_fic || ignore_case;
2945 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 match = name;
Bram Moolenaar8e4b76d2022-05-07 11:28:06 +01002947 else if (rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002949 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002951 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 match = name;
2953 vim_free(p);
2954 }
2955 }
2956
2957 return match;
2958}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959
2960/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002961 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 */
2963 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002964buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002966 char_u key[VIM_SIZEOF_INT * 2 + 1];
2967 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968
2969 if (nr == 0)
2970 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002971 sprintf((char *)key, "%x", nr);
2972 hi = hash_find(&buf_hashtab, key);
2973
2974 if (!HASHITEM_EMPTY(hi))
2975 return (buf_T *)(hi->hi_key
2976 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 return NULL;
2978}
2979
2980/*
2981 * Get name of file 'n' in the buffer list.
2982 * When the file has no name an empty string is returned.
2983 * home_replace() is used to shorten the file name (used for marks).
2984 * Returns a pointer to allocated memory, of NULL when failed.
2985 */
2986 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002987buflist_nr2name(
2988 int n,
2989 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002990 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 buf_T *buf;
2993
2994 buf = buflist_findnr(n);
2995 if (buf == NULL)
2996 return NULL;
2997 return home_replace_save(helptail ? buf : NULL,
2998 fullname ? buf->b_ffname : buf->b_fname);
2999}
3000
3001/*
3002 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3003 * When "copy_options" is TRUE save the local window option values.
3004 * When "lnum" is 0 only do the options.
3005 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003006 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003007buflist_setfpos(
3008 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003009 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003010 linenr_T lnum,
3011 colnr_T col,
3012 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013{
3014 wininfo_T *wip;
3015
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003016 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 if (wip->wi_win == win)
3018 break;
3019 if (wip == NULL)
3020 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003021 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003022 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 if (wip == NULL)
3024 return;
3025 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003026 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 lnum = 1;
3028 }
3029 else
3030 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003031 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 if (wip->wi_prev)
3033 wip->wi_prev->wi_next = wip->wi_next;
3034 else
3035 buf->b_wininfo = wip->wi_next;
3036 if (wip->wi_next)
3037 wip->wi_next->wi_prev = wip->wi_prev;
3038 if (copy_options && wip->wi_optset)
3039 {
3040 clear_winopt(&wip->wi_opt);
3041#ifdef FEAT_FOLDING
3042 deleteFoldRecurse(&wip->wi_folds);
3043#endif
3044 }
3045 }
3046 if (lnum != 0)
3047 {
3048 wip->wi_fpos.lnum = lnum;
3049 wip->wi_fpos.col = col;
3050 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003051 if (win != NULL)
3052 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003053 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003055 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3057#ifdef FEAT_FOLDING
3058 wip->wi_fold_manual = win->w_fold_manual;
3059 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3060#endif
3061 wip->wi_optset = TRUE;
3062 }
3063
Bram Moolenaarc667da52019-11-30 20:52:27 +01003064 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 wip->wi_next = buf->b_wininfo;
3066 buf->b_wininfo = wip;
3067 wip->wi_prev = NULL;
3068 if (wip->wi_next)
3069 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070}
3071
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003072#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003073/*
3074 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3075 * page. That's because a diff is local to a tab page.
3076 */
3077 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003078wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003079{
3080 win_T *wp;
3081
3082 if (wip->wi_opt.wo_diff)
3083 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003084 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003085 // return FALSE when it's a window in the current tab page, thus
3086 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003087 if (wip->wi_win == wp)
3088 return FALSE;
3089 return TRUE;
3090 }
3091 return FALSE;
3092}
3093#endif
3094
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095/*
3096 * Find info for the current window in buffer "buf".
3097 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003098 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003099 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3100 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 * Returns NULL when there isn't any info.
3102 */
3103 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003104find_wininfo(
3105 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003106 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003107 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108{
3109 wininfo_T *wip;
3110
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003111 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003112 if (wip->wi_win == curwin
3113#ifdef FEAT_DIFF
3114 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3115#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003116
3117 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003119
Bram Moolenaarc667da52019-11-30 20:52:27 +01003120 // If no wininfo for curwin, use the first in the list (that doesn't have
3121 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003122 // If "need_options" is TRUE skip entries that don't have options set,
3123 // unless the window is editing "buf", so we can copy from the window
3124 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003125 if (wip == NULL)
3126 {
3127#ifdef FEAT_DIFF
3128 if (skip_diff_buffer)
3129 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003130 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003131 if (!wininfo_other_tab_diff(wip)
3132 && (!need_options || wip->wi_optset
3133 || (wip->wi_win != NULL
3134 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003135 break;
3136 }
3137 else
3138#endif
3139 wip = buf->b_wininfo;
3140 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 return wip;
3142}
3143
3144/*
3145 * Reset the local window options to the values last used in this window.
3146 * If the buffer wasn't used in this window before, use the values from
3147 * the most recently used window. If the values were never set, use the
3148 * global values for the window.
3149 */
3150 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003151get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152{
3153 wininfo_T *wip;
3154
3155 clear_winopt(&curwin->w_onebuf_opt);
3156#ifdef FEAT_FOLDING
3157 clearFolding(curwin);
3158#endif
3159
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003160 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003161 if (wip != NULL && wip->wi_win != NULL
3162 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003164 // The buffer is currently displayed in the window: use the actual
3165 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003166 win_T *wp = wip->wi_win;
3167
3168 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3169#ifdef FEAT_FOLDING
3170 curwin->w_fold_manual = wp->w_fold_manual;
3171 curwin->w_foldinvalid = TRUE;
3172 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3173#endif
3174 }
3175 else if (wip != NULL && wip->wi_optset)
3176 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003177 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3179#ifdef FEAT_FOLDING
3180 curwin->w_fold_manual = wip->wi_fold_manual;
3181 curwin->w_foldinvalid = TRUE;
3182 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3183#endif
3184 }
3185 else
3186 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003187 if (wip != NULL)
3188 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189
3190#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003191 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 if (p_fdls >= 0)
3193 curwin->w_p_fdl = p_fdls;
3194#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003195 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196}
3197
3198/*
3199 * Find the position (lnum and col) for the buffer 'buf' for the current
3200 * window.
3201 * Returns a pointer to no_position if no position is found.
3202 */
3203 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003204buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205{
3206 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003207 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003209 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 if (wip != NULL)
3211 return &(wip->wi_fpos);
3212 else
3213 return &no_position;
3214}
3215
3216/*
3217 * Find the lnum for the buffer 'buf' for the current window.
3218 */
3219 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003220buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221{
3222 return buflist_findfpos(buf)->lnum;
3223}
3224
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003226 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003229buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230{
Bram Moolenaar52410572019-10-27 05:12:45 +01003231 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 int len;
3233 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003234 int ro_char;
3235 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003236#ifdef FEAT_TERMINAL
3237 int job_running;
3238 int job_none_open;
3239#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240
Bram Moolenaar52410572019-10-27 05:12:45 +01003241#ifdef FEAT_VIMINFO
3242 garray_T buflist;
3243 buf_T **buflist_data = NULL, **p;
3244
3245 if (vim_strchr(eap->arg, 't'))
3246 {
3247 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003248 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003249 {
3250 if (ga_grow(&buflist, 1) == OK)
3251 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3252 }
3253
3254 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3255 sizeof(buf_T *), buf_compare);
3256
Bram Moolenaar3b991522019-11-06 23:26:20 +01003257 buflist_data = (buf_T **)buflist.ga_data;
3258 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003259 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003260 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003261
Bram Moolenaar3b991522019-11-06 23:26:20 +01003262 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003263 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3264 : buf->b_next)
3265#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003269#ifdef FEAT_TERMINAL
3270 job_running = term_job_running(buf->b_term);
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003271 job_none_open = term_none_open(buf->b_term);
Bram Moolenaar0751f512018-03-29 16:37:16 +02003272#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003273 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003274 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3275 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3276 || (vim_strchr(eap->arg, '+')
3277 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3278 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003279 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003280 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003281 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3282#ifdef FEAT_TERMINAL
3283 || (vim_strchr(eap->arg, 'R')
3284 && (!job_running || (job_running && job_none_open)))
3285 || (vim_strchr(eap->arg, '?')
3286 && (!job_running || (job_running && !job_none_open)))
3287 || (vim_strchr(eap->arg, 'F')
3288 && (job_running || buf->b_term == NULL))
3289#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003290 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3291 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3292 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3293 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3294 || (vim_strchr(eap->arg, '#')
3295 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003298 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 else
3300 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003301 if (message_filtered(NameBuff))
3302 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003304 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3305 : (bufIsChanged(buf) ? '+' : ' ');
3306#ifdef FEAT_TERMINAL
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003307 if (job_running)
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003308 {
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003309 if (job_none_open)
Bram Moolenaar4033c552017-09-16 20:54:51 +02003310 ro_char = '?';
3311 else
3312 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003313 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3314 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003315 }
3316 else if (buf->b_term != NULL)
3317 ro_char = 'F';
3318 else
3319#endif
3320 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3321
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003322 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003323 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 buf->b_fnum,
3325 buf->b_p_bl ? ' ' : 'u',
3326 buf == curbuf ? '%' :
3327 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3328 buf->b_ml.ml_mfp == NULL ? ' ' :
3329 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003330 ro_char,
3331 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003332 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003333 if (len > IOSIZE - 20)
3334 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335
Bram Moolenaarc667da52019-11-30 20:52:27 +01003336 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 i = 40 - vim_strsize(IObuff);
3338 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003340 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003341#ifdef FEAT_VIMINFO
3342 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3343 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3344 else
3345#endif
3346 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3347 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003348 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003350 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 ui_breakcheck();
3352 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003353
3354#ifdef FEAT_VIMINFO
3355 if (buflist_data)
3356 ga_clear(&buflist);
3357#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359
3360/*
3361 * Get file name and line number for file 'fnum'.
3362 * Used by DoOneCmd() for translating '%' and '#'.
3363 * Used by insert_reg() and cmdline_paste() for '#' register.
3364 * Return FAIL if not found, OK for success.
3365 */
3366 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003367buflist_name_nr(
3368 int fnum,
3369 char_u **fname,
3370 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371{
3372 buf_T *buf;
3373
3374 buf = buflist_findnr(fnum);
3375 if (buf == NULL || buf->b_fname == NULL)
3376 return FAIL;
3377
3378 *fname = buf->b_fname;
3379 *lnum = buflist_findlnum(buf);
3380
3381 return OK;
3382}
3383
3384/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003385 * Set the file name for "buf"' to "ffname_arg", short file name to
3386 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 * The file name with the full path is also remembered, for when :cd is used.
3388 * Returns FAIL for failure (file name already in use by other buffer)
3389 * OK otherwise.
3390 */
3391 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003392setfname(
3393 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003394 char_u *ffname_arg,
3395 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003396 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003398 char_u *ffname = ffname_arg;
3399 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003400 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003402 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403#endif
3404
3405 if (ffname == NULL || *ffname == NUL)
3406 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003407 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003408 if (buf->b_sfname != buf->b_ffname)
3409 VIM_CLEAR(buf->b_sfname);
3410 else
3411 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003412 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413#ifdef UNIX
3414 st.st_dev = (dev_T)-1;
3415#endif
3416 }
3417 else
3418 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003419 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3420 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 return FAIL;
3422
3423 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003424 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 * - if the buffer is loaded, fail
3426 * - if the buffer is not loaded, delete it from the list
3427 */
3428#ifdef UNIX
3429 if (mch_stat((char *)ffname, &st) < 0)
3430 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003431#endif
3432 if (!(buf->b_flags & BF_DUMMY))
3433#ifdef UNIX
3434 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003436 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437#endif
3438 if (obuf != NULL && obuf != buf)
3439 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003440 win_T *win;
3441 tabpage_T *tab;
3442 int in_use = FALSE;
3443
3444 // during startup a window may use a buffer that is not loaded yet
3445 FOR_ALL_TAB_WINDOWS(tab, win)
3446 if (win->w_buffer == obuf)
3447 in_use = TRUE;
3448
3449 // it's loaded or used in a window, fail
3450 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 {
3452 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003453 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 vim_free(ffname);
3455 return FAIL;
3456 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003457 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003458 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 }
3460 sfname = vim_strsave(sfname);
3461 if (ffname == NULL || sfname == NULL)
3462 {
3463 vim_free(sfname);
3464 vim_free(ffname);
3465 return FAIL;
3466 }
3467#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003468 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003470 if (buf->b_sfname != buf->b_ffname)
3471 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 buf->b_ffname = ffname;
3474 buf->b_sfname = sfname;
3475 }
3476 buf->b_fname = buf->b_sfname;
3477#ifdef UNIX
3478 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003479 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 else
3481 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003482 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 buf->b_dev = st.st_dev;
3484 buf->b_ino = st.st_ino;
3485 }
3486#endif
3487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489
3490 buf_name_changed(buf);
3491 return OK;
3492}
3493
3494/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003495 * Crude way of changing the name of a buffer. Use with care!
3496 * The name should be relative to the current directory.
3497 */
3498 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003499buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003500{
3501 buf_T *buf;
3502
3503 buf = buflist_findnr(fnum);
3504 if (buf != NULL)
3505 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003506 if (buf->b_sfname != buf->b_ffname)
3507 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003508 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003509 buf->b_ffname = vim_strsave(name);
3510 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003511 // Allocate ffname and expand into full path. Also resolves .lnk
3512 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003513 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003514 buf->b_fname = buf->b_sfname;
3515 }
3516}
3517
3518/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 * Take care of what needs to be done when the name of buffer "buf" has
3520 * changed.
3521 */
3522 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003523buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524{
3525 /*
3526 * If the file name changed, also change the name of the swapfile
3527 */
3528 if (buf->b_ml.ml_mfp != NULL)
3529 ml_setname(buf);
3530
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003531#ifdef FEAT_TERMINAL
3532 if (buf->b_term != NULL)
3533 term_clear_status_text(buf->b_term);
3534#endif
3535
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003537 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003538 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003539 status_redraw_all(); // status lines need to be redrawn
3540 fmarks_check_names(buf); // check named file marks
3541 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542}
3543
3544/*
3545 * set alternate file name for current window
3546 *
3547 * Used by do_one_cmd(), do_write() and do_ecmd().
3548 * Return the buffer.
3549 */
3550 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003551setaltfname(
3552 char_u *ffname,
3553 char_u *sfname,
3554 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555{
3556 buf_T *buf;
3557
Bram Moolenaarc667da52019-11-30 20:52:27 +01003558 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003560 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 curwin->w_alt_fnum = buf->b_fnum;
3562 return buf;
3563}
3564
3565/*
3566 * Get alternate file name for current window.
3567 * Return NULL if there isn't any, and give error message if requested.
3568 */
3569 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003570getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003571 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572{
3573 char_u *fname;
3574 linenr_T dummy;
3575
3576 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3577 {
3578 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003579 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 return NULL;
3581 }
3582 return fname;
3583}
3584
3585/*
3586 * Add a file name to the buflist and return its number.
3587 * Uses same flags as buflist_new(), except BLN_DUMMY.
3588 *
3589 * used by qf_init(), main() and doarglist()
3590 */
3591 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003592buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593{
3594 buf_T *buf;
3595
3596 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3597 if (buf != NULL)
3598 return buf->b_fnum;
3599 return 0;
3600}
3601
3602#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3603/*
3604 * Adjust slashes in file names. Called after 'shellslash' was set.
3605 */
3606 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003607buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608{
3609 buf_T *bp;
3610
Bram Moolenaar29323592016-07-24 22:04:11 +02003611 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 {
3613 if (bp->b_ffname != NULL)
3614 slash_adjust(bp->b_ffname);
3615 if (bp->b_sfname != NULL)
3616 slash_adjust(bp->b_sfname);
3617 }
3618}
3619#endif
3620
3621/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003622 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 * Also save the local window option values.
3624 */
3625 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003626buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003628 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629}
3630
3631/*
3632 * Return TRUE if 'ffname' is not the same file as current file.
3633 * Fname must have a full path (expanded by mch_FullName()).
3634 */
3635 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003636otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637{
3638 return otherfile_buf(curbuf, ffname
3639#ifdef UNIX
3640 , NULL
3641#endif
3642 );
3643}
3644
3645 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003646otherfile_buf(
3647 buf_T *buf,
3648 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003650 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003652 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003654 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3656 return TRUE;
3657 if (fnamecmp(ffname, buf->b_ffname) == 0)
3658 return FALSE;
3659#ifdef UNIX
3660 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003661 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662
Bram Moolenaarc667da52019-11-30 20:52:27 +01003663 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 if (stp == NULL)
3665 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003666 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 st.st_dev = (dev_T)-1;
3668 stp = &st;
3669 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003670 // Use dev/ino to check if the files are the same, even when the names
3671 // are different (possible with links). Still need to compare the
3672 // name above, for when the file doesn't exist yet.
3673 // Problem: The dev/ino changes when a file is deleted (and created
3674 // again) and remains the same when renamed/moved. We don't want to
3675 // mch_stat() each buffer each time, that would be too slow. Get the
3676 // dev/ino again when they appear to match, but not when they appear
3677 // to be different: Could skip a buffer when it's actually the same
3678 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 if (buf_same_ino(buf, stp))
3680 {
3681 buf_setino(buf);
3682 if (buf_same_ino(buf, stp))
3683 return FALSE;
3684 }
3685 }
3686#endif
3687 return TRUE;
3688}
3689
3690#if defined(UNIX) || defined(PROTO)
3691/*
3692 * Set inode and device number for a buffer.
3693 * Must always be called when b_fname is changed!.
3694 */
3695 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003696buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003698 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699
3700 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3701 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003702 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 buf->b_dev = st.st_dev;
3704 buf->b_ino = st.st_ino;
3705 }
3706 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003707 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708}
3709
3710/*
3711 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3712 */
3713 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003714buf_same_ino(
3715 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003716 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003718 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 && stp->st_dev == buf->b_dev
3720 && stp->st_ino == buf->b_ino);
3721}
3722#endif
3723
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003724/*
3725 * Print info about the current buffer.
3726 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003728fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003729 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003730 int shorthelp,
3731 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732{
3733 char_u *name;
3734 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003735 char *p;
3736 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003737 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003739 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 if (buffer == NULL)
3741 return;
3742
Bram Moolenaarc667da52019-11-30 20:52:27 +01003743 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003745 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 p = buffer + STRLEN(buffer);
3747 }
3748 else
3749 p = buffer;
3750
3751 *p++ = '"';
3752 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003753 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 else
3755 {
3756 if (!fullname && curbuf->b_fname != NULL)
3757 name = curbuf->b_fname;
3758 else
3759 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003760 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 (int)(IOSIZE - (p - buffer)), TRUE);
3762 }
3763
Bram Moolenaar32526b32019-01-19 17:43:09 +01003764 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 curbufIsChanged() ? (shortmess(SHM_MOD)
3766 ? " [+]" : _(" [Modified]")) : " ",
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01003767 (curbuf->b_flags & BF_NOTEDITED) && !bt_dontwrite(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 ? _("[Not edited]") : "",
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01003769 (curbuf->b_flags & BF_NEW) && !bt_dontwrite(curbuf)
Bram Moolenaar722e5052020-06-12 22:31:00 +02003770 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003772 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 : _("[readonly]")) : "",
3774 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3775 || curbuf->b_p_ro) ?
3776 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003777 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3778 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 if (curwin->w_cursor.lnum > 1000000L)
3780 n = (int)(((long)curwin->w_cursor.lnum) /
3781 ((long)curbuf->b_ml.ml_line_count / 100L));
3782 else
3783 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3784 (long)curbuf->b_ml.ml_line_count);
3785 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003786 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787#ifdef FEAT_CMDL_INFO
3788 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003789 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003790 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003791 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3792 curbuf->b_ml.ml_line_count),
3793 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794#endif
3795 else
3796 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003797 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 _("line %ld of %ld --%d%%-- col "),
3799 (long)curwin->w_cursor.lnum,
3800 (long)curbuf->b_ml.ml_line_count,
3801 n);
3802 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003803 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003804 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3806 }
3807
Bram Moolenaar32526b32019-01-19 17:43:09 +01003808 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3809 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810
3811 if (dont_truncate)
3812 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003813 // Temporarily set msg_scroll to avoid the message being truncated.
3814 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 msg_start();
3816 n = msg_scroll;
3817 msg_scroll = TRUE;
3818 msg(buffer);
3819 msg_scroll = n;
3820 }
3821 else
3822 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003823 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003825 // Need to repeat the message after redrawing when:
3826 // - When restart_edit is set (otherwise there will be a delay
3827 // before redrawing).
3828 // - When the screen was scrolled but there is no wait-return
3829 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003830 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 }
3832
3833 vim_free(buffer);
3834}
3835
3836 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003837col_print(
3838 char_u *buf,
3839 size_t buflen,
3840 int col,
3841 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842{
3843 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003844 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003846 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847}
3848
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849static char_u *lasttitle = NULL;
3850static char_u *lasticon = NULL;
3851
Bram Moolenaar84a93082018-06-16 22:58:15 +02003852/*
3853 * Put the file name in the title bar and icon of the window.
3854 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003856maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857{
3858 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003859 char_u *title_str = NULL;
3860 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 int maxlen = 0;
3862 int len;
3863 int mustset;
3864 char_u buf[IOSIZE];
3865 int off;
3866
3867 if (!redrawing())
3868 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003869 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 need_maketitle = TRUE;
3871 return;
3872 }
3873
3874 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003875 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003876 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877
3878 if (p_title)
3879 {
3880 if (p_titlelen > 0)
3881 {
3882 maxlen = p_titlelen * Columns / 100;
3883 if (maxlen < 10)
3884 maxlen = 10;
3885 }
3886
Bram Moolenaar84a93082018-06-16 22:58:15 +02003887 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 if (*p_titlestring != NUL)
3889 {
3890#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003891 if (stl_syntax & STL_IN_TITLE)
3892 {
3893 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003894 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003895
3896# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003897 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003898# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003899 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003900 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003901 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003902 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003903 set_string_option_direct((char_u *)"titlestring", -1,
3904 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 else
3907#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003908 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 }
3910 else
3911 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003912 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913
Bram Moolenaar2c666692012-09-05 13:30:40 +02003914#define SPACE_FOR_FNAME (IOSIZE - 100)
3915#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003916#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003918 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003919#ifdef FEAT_TERMINAL
3920 else if (curbuf->b_term != NULL)
3921 {
3922 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3923 SPACE_FOR_FNAME);
3924 }
3925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 else
3927 {
3928 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003929 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 }
3932
Bram Moolenaar21554412017-07-24 21:44:43 +02003933#ifdef FEAT_TERMINAL
3934 if (curbuf->b_term == NULL)
3935#endif
3936 switch (bufIsChanged(curbuf)
3937 + (curbuf->b_p_ro * 2)
3938 + (!curbuf->b_p_ma * 4))
3939 {
3940 case 1: STRCAT(buf, " +"); break;
3941 case 2: STRCAT(buf, " ="); break;
3942 case 3: STRCAT(buf, " =+"); break;
3943 case 4:
3944 case 6: STRCAT(buf, " -"); break;
3945 case 5:
3946 case 7: STRCAT(buf, " -+"); break;
3947 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948
Bram Moolenaar21554412017-07-24 21:44:43 +02003949 if (curbuf->b_fname != NULL
3950#ifdef FEAT_TERMINAL
3951 && curbuf->b_term == NULL
3952#endif
3953 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003955 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 off = (int)STRLEN(buf);
3957 buf[off++] = ' ';
3958 buf[off++] = '(';
3959 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003960 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003962 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 if (isalpha(buf[off]) && buf[off + 1] == ':')
3964 off += 2;
3965#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003966 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003967 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003969 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003970 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003971 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003972 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003976
Bram Moolenaarc667da52019-11-30 20:52:27 +01003977 // Translate unprintable chars and concatenate. Keep some
3978 // room for the server name. When there is no room (very long
3979 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003980 if (off < SPACE_FOR_DIR)
3981 {
3982 p = transstr(buf + off);
3983 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3984 vim_free(p);
3985 }
3986 else
3987 {
3988 vim_strncpy(buf + off, (char_u *)"...",
3989 (size_t)(SPACE_FOR_ARGNR - off));
3990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 STRCAT(buf, ")");
3992 }
3993
Bram Moolenaar2c666692012-09-05 13:30:40 +02003994 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995
3996#if defined(FEAT_CLIENTSERVER)
3997 if (serverName != NULL)
3998 {
3999 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004000 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 }
4002 else
4003#endif
4004 STRCAT(buf, " - VIM");
4005
4006 if (maxlen > 0)
4007 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004008 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004009 if (vim_strsize(buf) > maxlen)
4010 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 }
4012 }
4013 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004014 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015
4016 if (p_icon)
4017 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004018 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 if (*p_iconstring != NUL)
4020 {
4021#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004022 if (stl_syntax & STL_IN_ICON)
4023 {
4024 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004025 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004026
4027# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004028 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004029# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004030 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004031 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004032 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004033 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004034 set_string_option_direct((char_u *)"iconstring", -1,
4035 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 else
4038#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004039 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 }
4041 else
4042 {
4043 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004044 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004045 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004046 p = gettail(curbuf->b_ffname);
4047 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004048 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004049 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 if (len > 100)
4051 {
4052 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004054 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004055 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004057 STRCPY(icon_str, p);
4058 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 }
4060 }
4061
Bram Moolenaar84a93082018-06-16 22:58:15 +02004062 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063
4064 if (mustset)
4065 resettitle();
4066}
4067
4068/*
4069 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4070 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004071 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 */
4073 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004074value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075{
4076 if ((str == NULL) != (*last == NULL)
4077 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4078 {
4079 vim_free(*last);
4080 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004081 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004083 mch_restore_title(
4084 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004087 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004089 return TRUE;
4090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 }
4092 return FALSE;
4093}
4094
4095/*
4096 * Put current window title back (used after calling a shell)
4097 */
4098 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004099resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100{
4101 mch_settitle(lasttitle, lasticon);
4102}
Bram Moolenaarea408852005-06-25 22:49:46 +00004103
4104# if defined(EXITFREE) || defined(PROTO)
4105 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004106free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004107{
4108 vim_free(lasttitle);
4109 vim_free(lasticon);
4110}
4111# endif
4112
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004114#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004115
4116/*
4117 * Used for building in the status line.
4118 */
4119typedef struct
4120{
4121 char_u *stl_start;
4122 int stl_minwid;
4123 int stl_maxwid;
4124 enum {
4125 Normal,
4126 Empty,
4127 Group,
4128 Middle,
4129 Highlight,
4130 TabPage,
4131 Trunc
4132 } stl_type;
4133} stl_item_T;
4134
4135static size_t stl_items_len = 20; // Initial value, grows as needed.
4136static stl_item_T *stl_items = NULL;
4137static int *stl_groupitem = NULL;
4138static stl_hlrec_T *stl_hltab = NULL;
4139static stl_hlrec_T *stl_tabtab = NULL;
4140
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004142 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 * Return length of string in screen cells.
4144 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004145 * Normally works for window "wp", except when working for 'tabline' then it
4146 * is "curwin".
4147 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 * Items are drawn interspersed with the text that surrounds it
4149 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4150 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4151 *
4152 * If maxwidth is not zero, the string will be filled at any middle marker
4153 * or truncated if too long, fillchar is used for all whitespace.
4154 */
4155 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004156build_stl_str_hl(
4157 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004158 char_u *out, // buffer to write into != NameBuff
4159 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004160 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004161 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004162 int fillchar,
4163 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004164 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4165 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166{
Bram Moolenaar10772302019-01-20 18:25:54 +01004167 linenr_T lnum;
4168 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 char_u *p;
4170 char_u *s;
4171 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004172 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004174 win_T *save_curwin;
4175 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004176 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177#endif
4178 int empty_line;
4179 colnr_T virtcol;
4180 long l;
4181 long n;
4182 int prevchar_isflag;
4183 int prevchar_isitem;
4184 int itemisflag;
4185 int fillable;
4186 char_u *str;
4187 long num;
4188 int width;
4189 int itemcnt;
4190 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004191 int group_end_userhl;
4192 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004194#ifdef FEAT_EVAL
4195 int evaldepth;
4196#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 int minwid;
4198 int maxwid;
4199 int zeropad;
4200 char_u base;
4201 char_u opt;
4202#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004203 char_u buf_tmp[TMPLEN];
4204 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004205 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004206 stl_hlrec_T *sp;
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004207 int save_redraw_not_allowed = redraw_not_allowed;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004208 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004209
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004210 // When inside update_screen() we do not want redrawing a statusline,
4211 // ruler, title, etc. to trigger another redraw, it may cause an endless
4212 // loop.
4213 if (updating_screen)
4214 redraw_not_allowed = TRUE;
4215
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004216 if (stl_items == NULL)
4217 {
4218 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4219 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004220
4221 // Allocate one more, because the last element is used to indicate the
4222 // end of the list.
4223 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4224 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004225 }
4226
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004227#ifdef FEAT_EVAL
4228 /*
4229 * When the format starts with "%!" then evaluate it as an expression and
4230 * use the result as the actual format string.
4231 */
4232 if (fmt[0] == '%' && fmt[1] == '!')
4233 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004234 typval_T tv;
4235
4236 tv.v_type = VAR_NUMBER;
4237 tv.vval.v_number = wp->w_id;
4238 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4239
Bram Moolenaar9530b582022-01-22 13:39:08 +00004240 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004241 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004242 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004243
4244 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004245 }
4246#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247
4248 if (fillchar == 0)
4249 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004250
Bram Moolenaar10772302019-01-20 18:25:54 +01004251 // The cursor in windows other than the current one isn't always
4252 // up-to-date, esp. because of autocommands and timers.
4253 lnum = wp->w_cursor.lnum;
4254 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4255 {
4256 lnum = wp->w_buffer->b_ml.ml_line_count;
4257 wp->w_cursor.lnum = lnum;
4258 }
4259
4260 // Get line & check if empty (cursorpos will show "0-1"). Note that
4261 // p will become invalid when getting another buffer line.
4262 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004263 empty_line = (*p == NUL);
4264
Bram Moolenaar10772302019-01-20 18:25:54 +01004265 // Get the byte value now, in case we need it below. This is more efficient
4266 // than making a copy of the line.
4267 len = STRLEN(p);
4268 if (wp->w_cursor.col > (colnr_T)len)
4269 {
4270 // Line may have changed since checking the cursor column, or the lnum
4271 // was adjusted above.
4272 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004273 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004274 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004275 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004276 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004277 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278
4279 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004280#ifdef FEAT_EVAL
4281 evaldepth = 0;
4282#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 p = out;
4284 curitem = 0;
4285 prevchar_isflag = TRUE;
4286 prevchar_isitem = FALSE;
zeertzjq122dea72022-07-27 15:48:45 +01004287 for (s = usefmt; *s != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004289 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004290 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004291 size_t new_len = stl_items_len * 3 / 2;
4292 stl_item_T *new_items;
4293 int *new_groupitem;
4294 stl_hlrec_T *new_hlrec;
4295
4296 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4297 if (new_items == NULL)
4298 break;
4299 stl_items = new_items;
4300 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4301 if (new_groupitem == NULL)
4302 break;
4303 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004304 new_hlrec = vim_realloc(stl_hltab,
4305 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004306 if (new_hlrec == NULL)
4307 break;
4308 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004309 new_hlrec = vim_realloc(stl_tabtab,
4310 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004311 if (new_hlrec == NULL)
4312 break;
4313 stl_tabtab = new_hlrec;
4314 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004315 }
4316
zeertzjq122dea72022-07-27 15:48:45 +01004317 if (*s != '%')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 prevchar_isflag = prevchar_isitem = FALSE;
4319
4320 /*
4321 * Handle up to the next '%' or the end.
4322 */
4323 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4324 *p++ = *s++;
4325 if (*s == NUL || p + 1 >= out + outlen)
4326 break;
4327
4328 /*
4329 * Handle one '%' item.
4330 */
4331 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004332 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004333 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 if (*s == '%')
4335 {
4336 if (p + 1 >= out + outlen)
4337 break;
4338 *p++ = *s++;
4339 prevchar_isflag = prevchar_isitem = FALSE;
4340 continue;
4341 }
4342 if (*s == STL_MIDDLEMARK)
4343 {
4344 s++;
4345 if (groupdepth > 0)
4346 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004347 stl_items[curitem].stl_type = Middle;
4348 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 continue;
4350 }
4351 if (*s == STL_TRUNCMARK)
4352 {
4353 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004354 stl_items[curitem].stl_type = Trunc;
4355 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 continue;
4357 }
4358 if (*s == ')')
4359 {
4360 s++;
4361 if (groupdepth < 1)
4362 continue;
4363 groupdepth--;
4364
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004365 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 *p = NUL;
4367 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004368 if (curitem > stl_groupitem[groupdepth] + 1
4369 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004371 // remove group if all items are empty and highlight group
4372 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004373 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004374 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004375 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004376 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004377 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004378 group_start_userhl = group_end_userhl =
4379 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004380 break;
4381 }
4382 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004383 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004384 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004385 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004387 if (stl_items[n].stl_type == Highlight)
4388 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004389 }
4390 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004392 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 p = t;
4394 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004395 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004396 {
4397 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004398 if (stl_items[n].stl_type == Highlight)
4399 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004400 // adjust the start position of TabPage to the next
4401 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004402 if (stl_items[n].stl_type == TabPage)
4403 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004404 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 }
4406 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004407 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004409 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 if (has_mbyte)
4411 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004412 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004414 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 {
4416 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004417 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 }
4419 }
4420 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004421 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4422 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
4424 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004425 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004427
4428 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004429 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004430 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431
Bram Moolenaarc667da52019-11-30 20:52:27 +01004432 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004433 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 {
LemonBoy57ff5262022-05-09 21:03:47 +01004435 // Minus one for the leading '<' added above.
4436 stl_items[l].stl_start -= n - 1;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004437 if (stl_items[l].stl_start < t)
4438 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 }
4440 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004441 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004443 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004444 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 if (n < 0)
4446 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004447 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 n = 0 - n;
4449 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004450 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 }
4452 else
4453 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004454 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004455 l = (n - l) * MB_CHAR2LEN(fillchar);
4456 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004458 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004460 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4461 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004463 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 }
4465 }
4466 continue;
4467 }
4468 minwid = 0;
4469 maxwid = 9999;
4470 zeropad = FALSE;
4471 l = 1;
4472 if (*s == '0')
4473 {
4474 s++;
4475 zeropad = TRUE;
4476 }
4477 if (*s == '-')
4478 {
4479 s++;
4480 l = -1;
4481 }
4482 if (VIM_ISDIGIT(*s))
4483 {
4484 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004485 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 minwid = 0;
4487 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004488 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004490 stl_items[curitem].stl_type = Highlight;
4491 stl_items[curitem].stl_start = p;
4492 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 s++;
4494 curitem++;
4495 continue;
4496 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004497 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4498 {
4499 if (*s == STL_TABCLOSENR)
4500 {
4501 if (minwid == 0)
4502 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004503 // %X ends the close label, go back to the previously
4504 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004505 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004506 if (stl_items[n].stl_type == TabPage
4507 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004508 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004509 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004510 break;
4511 }
4512 }
4513 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004514 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004515 minwid = - minwid;
4516 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004517 stl_items[curitem].stl_type = TabPage;
4518 stl_items[curitem].stl_start = p;
4519 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004520 s++;
4521 curitem++;
4522 continue;
4523 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 if (*s == '.')
4525 {
4526 s++;
4527 if (VIM_ISDIGIT(*s))
4528 {
4529 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004530 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 maxwid = 50;
4532 }
4533 }
4534 minwid = (minwid > 50 ? 50 : minwid) * l;
4535 if (*s == '(')
4536 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004537 stl_groupitem[groupdepth++] = curitem;
4538 stl_items[curitem].stl_type = Group;
4539 stl_items[curitem].stl_start = p;
4540 stl_items[curitem].stl_minwid = minwid;
4541 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 s++;
4543 curitem++;
4544 continue;
4545 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004546#ifdef FEAT_EVAL
4547 // Denotes end of expanded %{} block
4548 if (*s == '}' && evaldepth > 0)
4549 {
4550 s++;
4551 evaldepth--;
4552 continue;
4553 }
4554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 if (vim_strchr(STL_ALL, *s) == NULL)
4556 {
4557 s++;
4558 continue;
4559 }
4560 opt = *s++;
4561
Bram Moolenaarc667da52019-11-30 20:52:27 +01004562 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 base = 'D';
4564 itemisflag = FALSE;
4565 fillable = TRUE;
4566 num = -1;
4567 str = NULL;
4568 switch (opt)
4569 {
4570 case STL_FILEPATH:
4571 case STL_FULLPATH:
4572 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004573 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004575 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 else
4577 {
4578 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004579 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4581 }
4582 trans_characters(NameBuff, MAXPATHL);
4583 if (opt != STL_FILENAME)
4584 str = NameBuff;
4585 else
4586 str = gettail(NameBuff);
4587 break;
4588
Bram Moolenaarc667da52019-11-30 20:52:27 +01004589 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004590 {
4591#ifdef FEAT_EVAL
4592 char_u *block_start = s - 1;
4593#endif
4594 int reevaluate = (*s == '%');
4595
4596 if (reevaluate)
4597 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 itemisflag = TRUE;
4599 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004600 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4601 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004603 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 break;
4605 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004606 if (reevaluate)
4607 p[-1] = 0; // remove the % at the end of %{% expr %}
4608 else
4609 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004612 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4613 "%d", curbuf->b_fnum);
4614 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4615 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4616 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004618 save_curbuf = curbuf;
4619 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004620 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 curwin = wp;
4622 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004623 // Visual mode is only valid in the current window.
4624 if (curwin != save_curwin)
4625 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626
Bram Moolenaar9530b582022-01-22 13:39:08 +00004627 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004629 curwin = save_curwin;
4630 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004631 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004632 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004633 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634
4635 if (str != NULL && *str != 0)
4636 {
4637 if (*skipdigits(str) == NUL)
4638 {
4639 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004640 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 itemisflag = FALSE;
4642 }
4643 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004644
4645 // If the output of the expression needs to be evaluated
4646 // replace the %{} block with the result of evaluation
4647 if (reevaluate && str != NULL && *str != 0
4648 && strchr((const char *)str, '%') != NULL
4649 && evaldepth < MAX_STL_EVAL_DEPTH)
4650 {
4651 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4652 size_t str_length = strlen((const char *)str);
4653 size_t fmt_length = strlen((const char *)s);
4654 size_t new_fmt_len = parsed_usefmt
4655 + str_length + fmt_length + 3;
4656 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4657 char_u *new_fmt_p = new_fmt;
4658
4659 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4660 + parsed_usefmt;
4661 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4662 + str_length;
4663 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4664 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4665 + fmt_length;
4666 *new_fmt_p = 0;
4667 new_fmt_p = NULL;
4668
4669 if (usefmt != fmt)
4670 vim_free(usefmt);
4671 VIM_CLEAR(str);
4672 usefmt = new_fmt;
4673 s = usefmt + parsed_usefmt;
4674 evaldepth++;
4675 continue;
4676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677#endif
4678 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004679 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 case STL_LINE:
4681 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4682 ? 0L : (long)(wp->w_cursor.lnum);
4683 break;
4684
4685 case STL_NUMLINES:
4686 num = wp->w_buffer->b_ml.ml_line_count;
4687 break;
4688
4689 case STL_COLUMN:
Bram Moolenaar24959102022-05-07 20:01:16 +01004690 num = (State & MODE_INSERT) == 0 && empty_line
4691 ? 0 : (int)wp->w_cursor.col + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 break;
4693
4694 case STL_VIRTCOL:
4695 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004696 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004697 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 if (opt == STL_VIRTCOL_ALT
Bram Moolenaar24959102022-05-07 20:01:16 +01004699 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0
4700 && empty_line ? 0 : (int)wp->w_cursor.col + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 break;
4702 num = (long)virtcol;
4703 break;
4704
4705 case STL_PERCENTAGE:
4706 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4707 (long)wp->w_buffer->b_ml.ml_line_count);
4708 break;
4709
4710 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004711 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004712 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 break;
4714
4715 case STL_ARGLISTSTAT:
4716 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004717 buf_tmp[0] = 0;
4718 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4719 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 break;
4721
4722 case STL_KEYMAP:
4723 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004724 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4725 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 break;
4727 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004728#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004729 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730#else
4731 num = 0;
4732#endif
4733 break;
4734
4735 case STL_BUFNO:
4736 num = wp->w_buffer->b_fnum;
4737 break;
4738
4739 case STL_OFFSET_X:
4740 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004741 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 case STL_OFFSET:
4743#ifdef FEAT_BYTEOFF
4744 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
Bram Moolenaar24959102022-05-07 20:01:16 +01004745 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0
4746 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line
4747 ? 0 : (int)wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748#endif
4749 break;
4750
4751 case STL_BYTEVAL_X:
4752 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004753 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004755 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 if (num == NL)
4757 num = 0;
4758 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4759 num = NL;
4760 break;
4761
4762 case STL_ROFLAG:
4763 case STL_ROFLAG_ALT:
4764 itemisflag = TRUE;
4765 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004766 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 break;
4768
4769 case STL_HELPFLAG:
4770 case STL_HELPFLAG_ALT:
4771 itemisflag = TRUE;
4772 if (wp->w_buffer->b_help)
4773 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004774 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 break;
4776
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 case STL_FILETYPE:
4778 if (*wp->w_buffer->b_p_ft != NUL
4779 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4780 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004781 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004782 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004783 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 }
4785 break;
4786
4787 case STL_FILETYPE_ALT:
4788 itemisflag = TRUE;
4789 if (*wp->w_buffer->b_p_ft != NUL
4790 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4791 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004792 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004793 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004794 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004796 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 }
4798 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799
Bram Moolenaar4033c552017-09-16 20:54:51 +02004800#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 case STL_PREVIEWFLAG:
4802 case STL_PREVIEWFLAG_ALT:
4803 itemisflag = TRUE;
4804 if (wp->w_p_pvw)
4805 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4806 : _("[Preview]"));
4807 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004808
4809 case STL_QUICKFIX:
4810 if (bt_quickfix(wp->w_buffer))
4811 str = (char_u *)(wp->w_llist_ref
4812 ? _(msg_loclist)
4813 : _(msg_qflist));
4814 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815#endif
4816
4817 case STL_MODIFIED:
4818 case STL_MODIFIED_ALT:
4819 itemisflag = TRUE;
4820 switch ((opt == STL_MODIFIED_ALT)
4821 + bufIsChanged(wp->w_buffer) * 2
4822 + (!wp->w_buffer->b_p_ma) * 4)
4823 {
4824 case 2: str = (char_u *)"[+]"; break;
4825 case 3: str = (char_u *)",+"; break;
4826 case 4: str = (char_u *)"[-]"; break;
4827 case 5: str = (char_u *)",-"; break;
4828 case 6: str = (char_u *)"[+-]"; break;
4829 case 7: str = (char_u *)",+-"; break;
4830 }
4831 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004832
4833 case STL_HIGHLIGHT:
4834 t = s;
4835 while (*s != '#' && *s != NUL)
4836 ++s;
4837 if (*s == '#')
4838 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004839 stl_items[curitem].stl_type = Highlight;
4840 stl_items[curitem].stl_start = p;
4841 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004842 curitem++;
4843 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004844 if (*s != NUL)
4845 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004846 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 }
4848
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004849 stl_items[curitem].stl_start = p;
4850 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 if (str != NULL && *str)
4852 {
4853 t = str;
4854 if (itemisflag)
4855 {
4856 if ((t[0] && t[1])
4857 && ((!prevchar_isitem && *t == ',')
4858 || (prevchar_isflag && *t == ' ')))
4859 t++;
4860 prevchar_isflag = TRUE;
4861 }
4862 l = vim_strsize(t);
4863 if (l > 0)
4864 prevchar_isitem = TRUE;
4865 if (l > maxwid)
4866 {
4867 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 if (has_mbyte)
4869 {
4870 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004871 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 }
4873 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 l -= byte2cells(*t++);
4875 if (p + 1 >= out + outlen)
4876 break;
4877 *p++ = '<';
4878 }
4879 if (minwid > 0)
4880 {
4881 for (; l < minwid && p + 1 < out + outlen; l++)
4882 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004883 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4885 *p++ = ' ';
4886 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004887 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 }
4889 minwid = 0;
4890 }
4891 else
4892 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004893 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004895 // Change a space by fillchar, unless fillchar is '-' and a
4896 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004897 if (fillable && *t == ' '
4898 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4899 MB_CHAR2BYTES(fillchar, p);
4900 else
4901 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 }
4903 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004904 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 }
4906 else if (num >= 0)
4907 {
4908 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4909 char_u nstr[20];
4910
4911 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004912 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 prevchar_isitem = TRUE;
4914 t = nstr;
4915 if (opt == STL_VIRTCOL_ALT)
4916 {
4917 *t++ = '-';
4918 minwid--;
4919 }
4920 *t++ = '%';
4921 if (zeropad)
4922 *t++ = '0';
4923 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004924 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 *t = 0;
4926
4927 for (n = num, l = 1; n >= nbase; n /= nbase)
4928 l++;
4929 if (opt == STL_VIRTCOL_ALT)
4930 l++;
4931 if (l > maxwid)
4932 {
4933 l += 2;
4934 n = l - maxwid;
4935 while (l-- > maxwid)
4936 num /= nbase;
4937 *t++ = '>';
4938 *t++ = '%';
4939 *t = t[-3];
4940 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004941 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4942 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 }
4944 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004945 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4946 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 p += STRLEN(p);
4948 }
4949 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004950 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004952 if (num >= 0 || (!itemisflag && str != NULL && *str != NUL))
4953 prevchar_isflag = FALSE; // Item not NULL, but not a flag
4954 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 if (opt == STL_VIM_EXPR)
4956 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 curitem++;
4958 }
4959 *p = NUL;
4960 itemcnt = curitem;
4961
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004962#ifdef FEAT_EVAL
4963 if (usefmt != fmt)
4964 vim_free(usefmt);
4965#endif
4966
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 width = vim_strsize(out);
4968 if (maxwidth > 0 && width > maxwidth)
4969 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004970 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 l = 0;
4972 if (itemcnt == 0)
4973 s = out;
4974 else
4975 {
4976 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004977 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004979 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004980 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 break;
4982 }
4983 if (l == itemcnt)
4984 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004985 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004986 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 l = 0;
4988 }
4989 }
4990
4991 if (width - vim_strsize(s) >= maxwidth)
4992 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004993 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 if (has_mbyte)
4995 {
4996 s = out;
4997 width = 0;
4998 for (;;)
4999 {
5000 width += ptr2cells(s);
5001 if (width >= maxwidth)
5002 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005003 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005005 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005007 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 }
5009 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 s = out + maxwidth - 1;
5011 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005012 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 break;
5014 itemcnt = l;
5015 *s++ = '>';
5016 *s = 0;
5017 }
5018 else
5019 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 if (has_mbyte)
5021 {
5022 n = 0;
5023 while (width >= maxwidth)
5024 {
5025 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005026 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
5028 }
5029 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 n = width - maxwidth + 1;
5031 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005032 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 *s = '<';
5034
Bram Moolenaarc667da52019-11-30 20:52:27 +01005035 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 while (++width < maxwidth)
5037 {
5038 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005039 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 *s = NUL;
5041 }
5042
Bram Moolenaarc667da52019-11-30 20:52:27 +01005043 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 for (; l < itemcnt; l++)
5045 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005046 if (stl_items[l].stl_start - n >= s)
5047 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005049 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 }
5051 }
5052 width = maxwidth;
5053 }
5054 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5055 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005056 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005058 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 break;
5060 if (l < itemcnt)
5061 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005062 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5063 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005064 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005065 for (s = stl_items[l].stl_start; s < p;)
5066 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005068 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 width = maxwidth;
5070 }
5071 }
5072
Bram Moolenaarc667da52019-11-30 20:52:27 +01005073 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005074 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005076 *hltab = stl_hltab;
5077 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 for (l = 0; l < itemcnt; l++)
5079 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005080 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005082 sp->start = stl_items[l].stl_start;
5083 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005084 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 }
5086 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005087 sp->start = NULL;
5088 sp->userhl = 0;
5089 }
5090
Bram Moolenaarc667da52019-11-30 20:52:27 +01005091 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005092 if (tabtab != NULL)
5093 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005094 *tabtab = stl_tabtab;
5095 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005096 for (l = 0; l < itemcnt; l++)
5097 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005098 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005099 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005100 sp->start = stl_items[l].stl_start;
5101 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005102 sp++;
5103 }
5104 }
5105 sp->start = NULL;
5106 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 }
5108
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01005109 redraw_not_allowed = save_redraw_not_allowed;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005110
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005111 // A user function may reset KeyTyped, restore it.
5112 KeyTyped = save_KeyTyped;
5113
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 return width;
5115}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005116#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005118#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5119 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005121 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5122 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 */
5124 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005125get_rel_pos(
5126 win_T *wp,
5127 char_u *buf,
5128 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005130 long above; // number of lines above window
5131 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132
Bram Moolenaarc667da52019-11-30 20:52:27 +01005133 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005134 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 above = wp->w_topline - 1;
5136#ifdef FEAT_DIFF
5137 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005138 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005139 above = 0; // All buffer lines are displayed and there is an
5140 // indication of filler lines, that can be considered
5141 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142#endif
5143 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5144 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005145 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5146 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005148 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005150 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 ? (int)(above / ((above + below) / 100L))
5152 : (int)(above * 100L / (above + below)));
5153}
5154#endif
5155
5156/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005157 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 * Return TRUE if it was appended.
5159 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005160 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005161append_arg_number(
5162 win_T *wp,
5163 char_u *buf,
5164 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005165 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166{
5167 char_u *p;
5168
Bram Moolenaarc667da52019-11-30 20:52:27 +01005169 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 return FALSE;
5171
Bram Moolenaarc667da52019-11-30 20:52:27 +01005172 p = buf + STRLEN(buf); // go to the end of the buffer
5173 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 return FALSE;
5175 *p++ = ' ';
5176 *p++ = '(';
5177 if (add_file)
5178 {
5179 STRCPY(p, "file ");
5180 p += 5;
5181 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005182 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5183 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5185 return TRUE;
5186}
5187
5188/*
5189 * If fname is not a full path, make it a full path.
5190 * Returns pointer to allocated memory (NULL for failure).
5191 */
5192 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005193fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194{
5195 /*
5196 * Force expanding the path always for Unix, because symbolic links may
5197 * mess up the full path name, even though it starts with a '/'.
5198 * Also expand when there is ".." in the file name, try to remove it,
5199 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005200 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 * For MS-Windows also expand names like "longna~1" to "longname".
5202 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005203#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 return FullName_save(fname, TRUE);
5205#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005206 if (!vim_isAbsName(fname)
5207 || strstr((char *)fname, "..") != NULL
5208 || strstr((char *)fname, "//") != NULL
5209# ifdef BACKSLASH_IN_FILENAME
5210 || strstr((char *)fname, "\\\\") != NULL
5211# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005212# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005214# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 )
5216 return FullName_save(fname, FALSE);
5217
5218 fname = vim_strsave(fname);
5219
Bram Moolenaar9b942202007-10-03 12:31:33 +00005220# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005221 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005222 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005223# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224
5225 return fname;
5226#endif
5227}
5228
5229/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005230 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5231 * "*ffname" becomes a pointer to allocated memory (or NULL).
5232 * When resolving a link both "*sfname" and "*ffname" will point to the same
5233 * allocated memory.
5234 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005235 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005238fname_expand(
5239 buf_T *buf UNUSED,
5240 char_u **ffname,
5241 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005243 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005245 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005247 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248
5249#ifdef FEAT_SHORTCUT
5250 if (!buf->b_p_bin)
5251 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005252 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005254 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005255 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005256 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 {
5258 vim_free(*ffname);
5259 *ffname = rfname;
5260 *sfname = rfname;
5261 }
5262 }
5263#endif
5264}
5265
5266/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 * Open a window for a number of buffers.
5268 */
5269 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005270ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271{
5272 buf_T *buf;
5273 win_T *wp, *wpnext;
5274 int split_ret = OK;
5275 int p_ea_save;
5276 int open_wins = 0;
5277 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005278 int count; // Maximum number of windows to open.
5279 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005280 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005281 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282
Bram Moolenaarc667da52019-11-30 20:52:27 +01005283 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 count = 9999;
5285 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005286 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5288 all = FALSE;
5289 else
5290 all = TRUE;
5291
5292 setpcmark();
5293
5294#ifdef FEAT_GUI
5295 need_mouse_correct = TRUE;
5296#endif
5297
5298 /*
5299 * Close superfluous windows (two windows for the same buffer).
5300 * Also close windows that are not full-width.
5301 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005302 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005303 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005304 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005306 tpnext = curtab->tp_next;
5307 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005309 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005310 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005311 || ((cmdmod.cmod_split & WSP_VERT)
5312 ? wp->w_height + wp->w_status_height < Rows - p_ch
5313 - tabline_height()
5314 : wp->w_width != Columns)
5315 || (had_tab > 0 && wp != firstwin))
5316 && !ONE_WINDOW
5317 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5318 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005319 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005320 if (win_close(wp, FALSE) == FAIL)
5321 break;
5322 // Just in case an autocommand does something strange with
5323 // windows: start all over...
5324 wpnext = firstwin;
5325 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005326 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005327 }
5328 else
5329 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005331
Bram Moolenaarc667da52019-11-30 20:52:27 +01005332 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005333 if (had_tab == 0 || tpnext == NULL)
5334 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005335 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 }
5337
5338 /*
5339 * Go through the buffer list. When a buffer doesn't have a window yet,
5340 * open one. Otherwise move the window to the right position.
5341 * Watch out for autocommands that delete buffers or windows!
5342 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005343 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5348 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005349 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5351 continue;
5352
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005353 if (had_tab != 0)
5354 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005355 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005356 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005357 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005358 else
5359 wp = NULL;
5360 }
5361 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005362 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005363 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005364 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005365 if (wp->w_buffer == buf)
5366 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005367 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005368 if (wp != NULL)
5369 win_move_after(wp, curwin);
5370 }
5371
5372 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005374 bufref_T bufref;
5375
5376 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005377
Bram Moolenaarc667da52019-11-30 20:52:27 +01005378 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005380 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5382 ++open_wins;
5383 p_ea = p_ea_save;
5384 if (split_ret == FAIL)
5385 continue;
5386
Bram Moolenaarc667da52019-11-30 20:52:27 +01005387 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005390 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005392 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 break;
5395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 if (swap_exists_action == SEA_QUIT)
5397 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005398#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005399 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005400
Bram Moolenaarc667da52019-11-30 20:52:27 +01005401 // Reset the error/interrupt/exception state here so that
5402 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005403 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005404#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005405
Bram Moolenaarc667da52019-11-30 20:52:27 +01005406 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 win_close(curwin, TRUE);
5408 --open_wins;
5409 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005410 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005411
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005412#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005413 // Restore the error/interrupt/exception state if not
5414 // discarded by a new aborting error, interrupt, or uncaught
5415 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005416 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005417#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 }
5419 else
5420 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 }
5422
5423 ui_breakcheck();
5424 if (got_int)
5425 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005426 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 break;
5428 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005429#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005430 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005431 if (aborting())
5432 break;
5433#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005434 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005435 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005436 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005439 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441
5442 /*
5443 * Close superfluous windows.
5444 */
5445 for (wp = lastwin; open_wins > count; )
5446 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005447 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 if (!win_valid(wp))
5450 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005451 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 wp = lastwin;
5453 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005454 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005456 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 --open_wins;
5458 wp = lastwin;
5459 }
5460 else
5461 {
5462 wp = wp->w_prev;
5463 if (wp == NULL)
5464 break;
5465 }
5466 }
5467}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005470static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005471
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472/*
5473 * do_modelines() - process mode lines for the current file
5474 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005475 * "flags" can be:
5476 * OPT_WINONLY only set options local to window
5477 * OPT_NOWIN don't set options local to window
5478 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 * Returns immediately if the "ml" option isn't set.
5480 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005482do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005484 linenr_T lnum;
5485 int nmlines;
5486 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487
5488 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5489 return;
5490
Bram Moolenaarc667da52019-11-30 20:52:27 +01005491 // Disallow recursive entry here. Can happen when executing a modeline
5492 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 if (entered)
5494 return;
5495
5496 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005497 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005499 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 nmlines = 0;
5501
Hu Jialun9dcd3492021-08-28 20:42:50 +02005502 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005504 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 nmlines = 0;
5506 --entered;
5507}
5508
Bram Moolenaarc667da52019-11-30 20:52:27 +01005509#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511/*
5512 * chk_modeline() - check a single line for a mode string
5513 * Return FAIL if an error encountered.
5514 */
5515 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005516chk_modeline(
5517 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005518 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519{
5520 char_u *s;
5521 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005522 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 int prev;
5524 int vers;
5525 int end;
5526 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005527 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005528
Bram Moolenaare31ee862020-01-07 20:59:34 +01005529 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530
5531 prev = -1;
5532 for (s = ml_get(lnum); *s != NUL; ++s)
5533 {
5534 if (prev == -1 || vim_isspace(prev))
5535 {
5536 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5537 || STRNCMP(s, "vi:", (size_t)3) == 0)
5538 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005539 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005540 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 {
5542 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5543 e = s + 4;
5544 else
5545 e = s + 3;
5546 vers = getdigits(&e);
5547 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005548 && (s[0] != 'V'
5549 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 && (s[3] == ':'
5551 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5552 || (VIM_VERSION_100 < vers && s[3] == '<')
5553 || (VIM_VERSION_100 > vers && s[3] == '>')
5554 || (VIM_VERSION_100 == vers && s[3] == '=')))
5555 break;
5556 }
5557 }
5558 prev = *s;
5559 }
5560
5561 if (*s)
5562 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005563 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 ++s;
5565 while (s[-1] != ':');
5566
Bram Moolenaarc667da52019-11-30 20:52:27 +01005567 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 if (linecopy == NULL)
5569 return FAIL;
5570
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005571 // prepare for emsg()
5572 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005573 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574
5575 end = FALSE;
5576 while (end == FALSE)
5577 {
5578 s = skipwhite(s);
5579 if (*s == NUL)
5580 break;
5581
5582 /*
5583 * Find end of set command: ':' or end of line.
5584 * Skip over "\:", replacing it with ":".
5585 */
5586 for (e = s; *e != ':' && *e != NUL; ++e)
5587 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005588 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589 if (*e == NUL)
5590 end = TRUE;
5591
5592 /*
5593 * If there is a "set" command, require a terminating ':' and
5594 * ignore the stuff after the ':'.
5595 * "vi:set opt opt opt: foo" -- foo not interpreted
5596 * "vi:opt opt opt: foo" -- foo interpreted
5597 * Accept "se" for compatibility with Elvis.
5598 */
5599 if (STRNCMP(s, "set ", (size_t)4) == 0
5600 || STRNCMP(s, "se ", (size_t)3) == 0)
5601 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005602 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 break;
5604 end = TRUE;
5605 s = vim_strchr(s, ' ') + 1;
5606 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005607 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608
Bram Moolenaarc667da52019-11-30 20:52:27 +01005609 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005611 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005612
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005613 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005614 current_sctx.sc_version = 1;
5615#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005616 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005617 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005618 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005620
Bram Moolenaar5958f952018-11-20 04:25:21 +01005621 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005622 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005623
Bram Moolenaara3227e22006-03-08 21:32:40 +00005624 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005625
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005626 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005627 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005628 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 break;
5630 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005631 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 }
5633
Bram Moolenaare31ee862020-01-07 20:59:34 +01005634 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005635 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 vim_free(linecopy);
5637 }
5638 return retval;
5639}
5640
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005641/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005642 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5643 */
5644 int
5645bt_normal(buf_T *buf)
5646{
5647 return buf != NULL && buf->b_p_bt[0] == NUL;
5648}
5649
5650/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005651 * Return TRUE if "buf" is the quickfix buffer.
5652 */
5653 int
5654bt_quickfix(buf_T *buf)
5655{
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005656#ifdef FEAT_QUICKFIX
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005657 return buf != NULL && buf->b_p_bt[0] == 'q';
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005658#else
5659 return FALSE;
Bram Moolenaar113e1072019-01-20 15:30:40 +01005660#endif
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005661}
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005662
5663/*
5664 * Return TRUE if "buf" is a terminal buffer.
5665 */
5666 int
5667bt_terminal(buf_T *buf)
5668{
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005669#if defined(FEAT_TERMINAL)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005670 return buf != NULL && buf->b_p_bt[0] == 't';
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005671#else
5672 return FALSE;
Bram Moolenaar113e1072019-01-20 15:30:40 +01005673#endif
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +01005674}
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005675
5676/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005677 * Return TRUE if "buf" is a help buffer.
5678 */
5679 int
5680bt_help(buf_T *buf)
5681{
5682 return buf != NULL && buf->b_help;
5683}
5684
5685/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005686 * Return TRUE if "buf" is a prompt buffer.
5687 */
5688 int
5689bt_prompt(buf_T *buf)
5690{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005691 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5692}
5693
Dominique Pelle748b3082022-01-08 12:41:16 +00005694#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005695/*
5696 * Return TRUE if "buf" is a buffer for a popup window.
5697 */
5698 int
5699bt_popup(buf_T *buf)
5700{
5701 return buf != NULL && buf->b_p_bt != NULL
5702 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005703}
Dominique Pelle748b3082022-01-08 12:41:16 +00005704#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005705
5706/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005707 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5708 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005709 */
5710 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005711bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005712{
5713 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5714 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005715 || buf->b_p_bt[0] == 't'
5716 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005717}
5718
Dominique Pelle748b3082022-01-08 12:41:16 +00005719#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005720/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005721 * Return TRUE if "buf" has 'buftype' set to "nofile".
5722 */
5723 int
5724bt_nofile(buf_T *buf)
5725{
5726 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5727}
Dominique Pelle748b3082022-01-08 12:41:16 +00005728#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005729
5730/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005731 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5732 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005733 */
5734 int
5735bt_dontwrite(buf_T *buf)
5736{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005737 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005738 || buf->b_p_bt[0] == 't'
5739 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005740}
5741
5742 int
5743bt_dontwrite_msg(buf_T *buf)
5744{
5745 if (bt_dontwrite(buf))
5746 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005747 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005748 return TRUE;
5749 }
5750 return FALSE;
5751}
5752
5753/*
5754 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5755 * and 'bufhidden'.
5756 */
5757 int
5758buf_hide(buf_T *buf)
5759{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005760 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005761 switch (buf->b_p_bh[0])
5762 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005763 case 'u': // "unload"
5764 case 'w': // "wipe"
5765 case 'd': return FALSE; // "delete"
5766 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005767 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005768 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005769}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770
5771/*
5772 * Return special buffer name.
5773 * Returns NULL when the buffer has a normal file name.
5774 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005775 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005776buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005778#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005780 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005781 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005782 * Differentiate between the quickfix and location list buffers using
5783 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005784 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005785 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005786 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005787 else
5788 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005791
Bram Moolenaarc667da52019-11-30 20:52:27 +01005792 // There is no _file_ when 'buftype' is "nofile", b_sfname
5793 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005794 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005796#ifdef FEAT_TERMINAL
5797 if (buf->b_term != NULL)
5798 return term_get_status_text(buf->b_term);
5799#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005800 if (buf->b_fname != NULL)
5801 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005802#ifdef FEAT_JOB_CHANNEL
5803 if (bt_prompt(buf))
5804 return (char_u *)_("[Prompt]");
5805#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005806#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005807 if (bt_popup(buf))
5808 return (char_u *)_("[Popup]");
5809#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005810 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005812
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005814 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 return NULL;
5816}
5817
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005819 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5820 */
5821 char_u *
5822buf_get_fname(buf_T *buf)
5823{
5824 if (buf->b_fname == NULL)
5825 return (char_u *)_("[No Name]");
5826 return buf->b_fname;
5827}
5828
5829/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5831 */
5832 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005833set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834{
5835 if (on != curbuf->b_p_bl)
5836 {
5837 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 if (on)
5839 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5840 else
5841 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 }
5843}
5844
5845/*
5846 * Read the file for "buf" again and check if the contents changed.
5847 * Return TRUE if it changed or this could not be checked.
5848 */
5849 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005850buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851{
5852 buf_T *newbuf;
5853 int differ = TRUE;
5854 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 exarg_T ea;
5857
Bram Moolenaarc667da52019-11-30 20:52:27 +01005858 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5860 if (newbuf == NULL)
5861 return TRUE;
5862
Bram Moolenaarc667da52019-11-30 20:52:27 +01005863 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 if (prep_exarg(&ea, buf) == FAIL)
5865 {
5866 wipe_buffer(newbuf, FALSE);
5867 return TRUE;
5868 }
5869
Bram Moolenaarc667da52019-11-30 20:52:27 +01005870 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872
Bram Moolenaar4770d092006-01-12 23:22:24 +00005873 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 && readfile(buf->b_ffname, buf->b_fname,
5875 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5876 &ea, READ_NEW | READ_DUMMY) == OK)
5877 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005878 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5880 {
5881 differ = FALSE;
5882 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5883 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5884 {
5885 differ = TRUE;
5886 break;
5887 }
5888 }
5889 }
5890 vim_free(ea.cmd);
5891
Bram Moolenaarc667da52019-11-30 20:52:27 +01005892 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894
Bram Moolenaarc667da52019-11-30 20:52:27 +01005895 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 wipe_buffer(newbuf, FALSE);
5897
5898 return differ;
5899}
5900
5901/*
5902 * Wipe out a buffer and decrement the last buffer number if it was used for
5903 * this buffer. Call this to wipe out a temp buffer that does not contain any
5904 * marks.
5905 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005907wipe_buffer(
5908 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005909 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910{
5911 if (buf->b_fnum == top_file_num - 1)
5912 --top_file_num;
5913
Bram Moolenaarc667da52019-11-30 20:52:27 +01005914 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005915 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005916
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005917 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005918
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005920 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921}