blob: cfed0f327cd58c8d5a2b4a690a3b8b691b340c70 [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
1329 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1330# ifdef FEAT_TERMINAL
1331 && !bt_terminal(buf)
1332#endif
1333 )
1334 return OK;
1335#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336
1337#ifdef FEAT_GUI
1338 need_mouse_correct = TRUE;
1339#endif
1340
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001342 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 */
1344 if (unload)
1345 {
1346 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001347 bufref_T bufref;
1348
Bram Moolenaar94f01952018-09-01 15:30:03 +02001349 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001350 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001351
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001352 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353
Bram Moolenaarc667da52019-11-30 20:52:27 +01001354 // When unloading or deleting a buffer that's already unloaded and
1355 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001356 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1357 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return FAIL;
1359
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001360 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001362#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001363 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
1365 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001366 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001367 // Autocommand deleted buffer, oops! It's not changed
1368 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001370 // If it's still changed fail silently, the dialog already
1371 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001372 if (bufIsChanged(buf))
1373 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001375 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001376#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 {
Bram Moolenaar40bcec12021-12-05 22:19:27 +00001378 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 buf->b_fnum);
1380 return FAIL;
1381 }
1382 }
1383
Bram Moolenaarc667da52019-11-30 20:52:27 +01001384 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001385 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001386 end_visual_mode();
1387
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001388 // If deleting the last (listed) buffer, make it empty.
1389 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001390 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 if (bp->b_p_bl && bp != buf)
1392 break;
1393 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001394 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001396 // If the deleted buffer is the current one, close the current window
1397 // (unless it's the only window). Repeat this so long as we end up in
1398 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001399 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001400 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001401 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001402 {
1403 if (win_close(curwin, FALSE) == FAIL)
1404 break;
1405 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001407 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 if (buf != curbuf)
1409 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001410 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001411 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001412 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 return OK;
1414 }
1415
1416 /*
1417 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001418 * There should be another, otherwise it would have been handled
1419 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001420 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 * Then prefer the buffer we most recently visited.
1422 * Else try to find one that is loaded, after the current buffer,
1423 * then before the current buffer.
1424 * Finally use any buffer.
1425 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001426 buf = NULL; // selected buffer
1427 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001428 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1429 buf = au_new_curbuf.br_buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001430 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 {
1432 int jumpidx;
1433
1434 jumpidx = curwin->w_jumplistidx - 1;
1435 if (jumpidx < 0)
1436 jumpidx = curwin->w_jumplistlen - 1;
1437
1438 forward = jumpidx;
1439 while (jumpidx != curwin->w_jumplistidx)
1440 {
1441 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1442 if (buf != NULL)
1443 {
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001444 // Skip current and unlisted bufs. Also skip a quickfix
1445 // buffer, it might be deleted soon.
1446 if (buf == curbuf || !buf->b_p_bl
1447#if defined(FEAT_QUICKFIX)
1448 || bt_quickfix(buf)
1449#endif
1450 )
1451 buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 else if (buf->b_ml.ml_mfp == NULL)
1453 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001454 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 if (bp == NULL)
1456 bp = buf;
1457 buf = NULL;
1458 }
1459 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001460 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001462 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1464 break;
1465 if (--jumpidx < 0)
1466 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001467 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 break;
1469 }
1470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471
Bram Moolenaarc667da52019-11-30 20:52:27 +01001472 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 {
1474 forward = TRUE;
1475 buf = curbuf->b_next;
1476 for (;;)
1477 {
1478 if (buf == NULL)
1479 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001480 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 break;
1482 buf = curbuf->b_prev;
1483 forward = FALSE;
1484 continue;
1485 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001486 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001487 if (buf->b_help == curbuf->b_help && buf->b_p_bl
1488#if defined(FEAT_QUICKFIX)
1489 && !bt_quickfix(buf)
1490#endif
1491 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001493 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001495 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 bp = buf;
1497 }
1498 if (forward)
1499 buf = buf->b_next;
1500 else
1501 buf = buf->b_prev;
1502 }
1503 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001504 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001506 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001508 FOR_ALL_BUFFERS(buf)
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001509 if (buf->b_p_bl && buf != curbuf
1510#if defined(FEAT_QUICKFIX)
1511 && !bt_quickfix(buf)
1512#endif
1513 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 break;
1515 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001516 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 {
1518 if (curbuf->b_next != NULL)
1519 buf = curbuf->b_next;
1520 else
1521 buf = curbuf->b_prev;
Bram Moolenaare3537ae2022-02-08 15:05:20 +00001522#if defined(FEAT_QUICKFIX)
1523 if (bt_quickfix(buf))
1524 buf = NULL;
1525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 }
1527 }
1528
Bram Moolenaara02471e2014-01-10 16:43:14 +01001529 if (buf == NULL)
1530 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001531 // Autocommands must have wiped out all other buffers. Only option
1532 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001533 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001534 }
1535
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001537 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001539 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001541 // If 'switchbuf' contains "useopen": jump to first window containing
1542 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001543 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001544 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001545 // If 'switchbuf' contains "usetab": jump to first window in any tab
1546 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001547 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 return OK;
1549 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 return FAIL;
1551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552
Bram Moolenaarc667da52019-11-30 20:52:27 +01001553 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (buf == curbuf)
1555 return OK;
1556
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001557 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001558 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 {
1560#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001561 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001563 bufref_T bufref;
1564
1565 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001567 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001568 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 }
1571 if (bufIsChanged(curbuf))
1572#endif
1573 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001574 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 return FAIL;
1576 }
1577 }
1578
Bram Moolenaarc667da52019-11-30 20:52:27 +01001579 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 set_curbuf(buf, action);
1581
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001583 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001585#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001586 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 return FAIL;
1588#endif
1589
1590 return OK;
1591}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001593 int
1594do_buffer(
1595 int action,
1596 int start,
1597 int dir, // FORWARD or BACKWARD
1598 int count, // buffer number or number of buffers
1599 int forceit) // TRUE when using !
1600{
1601 return do_buffer_ext(action, start, dir, count,
1602 forceit ? DOBUF_FORCEIT : 0);
1603}
1604
1605/*
1606 * do_bufdel() - delete or unload buffer(s)
1607 *
1608 * addr_count == 0: ":bdel" - delete current buffer
1609 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1610 * buffer "end_bnr", then any other arguments.
1611 * addr_count == 2: ":N,N bdel" - delete buffers in range
1612 *
1613 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1614 * DOBUF_DEL (":bdel")
1615 *
1616 * Returns error message or NULL
1617 */
1618 char *
1619do_bufdel(
1620 int command,
1621 char_u *arg, // pointer to extra arguments
1622 int addr_count,
1623 int start_bnr, // first buffer number in a range
1624 int end_bnr, // buffer nr or last buffer nr in a range
1625 int forceit)
1626{
1627 int do_current = 0; // delete current buffer?
1628 int deleted = 0; // number of buffers deleted
1629 char *errormsg = NULL; // return value
1630 int bnr; // buffer number
1631 char_u *p;
1632
1633 if (addr_count == 0)
1634 {
1635 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1636 }
1637 else
1638 {
1639 if (addr_count == 2)
1640 {
1641 if (*arg) // both range and argument is not allowed
Bram Moolenaar74409f62022-01-01 15:58:22 +00001642 return ex_errmsg(e_trailing_characters_str, arg);
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001643 bnr = start_bnr;
1644 }
1645 else // addr_count == 1
1646 bnr = end_bnr;
1647
1648 for ( ;!got_int; ui_breakcheck())
1649 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001650 // Delete the current buffer last, otherwise when the
1651 // current buffer is deleted, the next buffer becomes
1652 // the current one and will be loaded, which may then
1653 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001654 if (bnr == curbuf->b_fnum)
1655 do_current = bnr;
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001656 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr,
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001657 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1658 ++deleted;
1659
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001660 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001661 if (addr_count == 2)
1662 {
1663 if (++bnr > end_bnr)
1664 break;
1665 }
1666 else // addr_count == 1
1667 {
1668 arg = skipwhite(arg);
1669 if (*arg == NUL)
1670 break;
1671 if (!VIM_ISDIGIT(*arg))
1672 {
1673 p = skiptowhite_esc(arg);
1674 bnr = buflist_findpat(arg, p,
1675 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1676 FALSE, FALSE);
1677 if (bnr < 0) // failed
1678 break;
1679 arg = p;
1680 }
1681 else
1682 bnr = getdigits(&arg);
1683 }
1684 }
1685 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1686 FORWARD, do_current, forceit) == OK)
1687 ++deleted;
1688
1689 if (deleted == 0)
1690 {
1691 if (command == DOBUF_UNLOAD)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001692 STRCPY(IObuff, _(e_no_buffers_were_unloaded));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001693 else if (command == DOBUF_DEL)
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001694 STRCPY(IObuff, _(e_no_buffers_were_deleted));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001695 else
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001696 STRCPY(IObuff, _(e_no_buffers_were_wiped_out));
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001697 errormsg = (char *)IObuff;
1698 }
1699 else if (deleted >= p_report)
1700 {
1701 if (command == DOBUF_UNLOAD)
1702 smsg(NGETTEXT("%d buffer unloaded",
1703 "%d buffers unloaded", deleted), deleted);
1704 else if (command == DOBUF_DEL)
1705 smsg(NGETTEXT("%d buffer deleted",
1706 "%d buffers deleted", deleted), deleted);
1707 else
1708 smsg(NGETTEXT("%d buffer wiped out",
1709 "%d buffers wiped out", deleted), deleted);
1710 }
1711 }
1712
1713
1714 return errormsg;
1715}
1716
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717/*
1718 * Set current buffer to "buf". Executes autocommands and closes current
1719 * buffer. "action" tells how to close the current buffer:
1720 * DOBUF_GOTO free or hide it
1721 * DOBUF_SPLIT nothing
1722 * DOBUF_UNLOAD unload it
1723 * DOBUF_DEL delete it
1724 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001725 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 */
1727 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001728set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729{
1730 buf_T *prevbuf;
1731 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001732 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001733#ifdef FEAT_SYN_HL
1734 long old_tw = curbuf->b_p_tw;
1735#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001736 bufref_T newbufref;
1737 bufref_T prevbufref;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001738 int valid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739
1740 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001741 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001742 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1743 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744
Bram Moolenaarc667da52019-11-30 20:52:27 +01001745 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
Bram Moolenaarc667da52019-11-30 20:52:27 +01001748 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001750 set_bufref(&prevbufref, prevbuf);
1751 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001753 // Autocommands may delete the current buffer and/or the buffer we want to
1754 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001755 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001756 || (bufref_valid(&prevbufref)
1757 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001758#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001759 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001761 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001763#ifdef FEAT_SYN_HL
1764 if (prevbuf == curwin->w_buffer)
1765 reset_synblock(curwin);
1766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001768 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001769#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001770 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001772 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001774 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001775 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001776
Bram Moolenaare615db02022-01-20 21:00:54 +00001777 // Do not sync when in Insert mode and the buffer is open in
1778 // another window, might be a timer doing something in another
1779 // window.
1780 if (prevbuf == curbuf
Bram Moolenaar24959102022-05-07 20:01:16 +01001781 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001782 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1784 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001785 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001786 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1787 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001788 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001789 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001790 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001793 // An autocommand may have deleted "buf", already entered it (e.g., when
1794 // it did ":bunload") or aborted the script processing.
1795 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001796 valid = buf_valid(buf);
1797 if ((valid && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001798#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001799 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001801 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001802 {
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00001803 // If the buffer is not valid but curwin->w_buffer is NULL we must
1804 // enter some buffer. Using the last one is hopefully OK.
1805 if (!valid)
1806 enter_buffer(lastbuf);
1807 else
1808 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001809#ifdef FEAT_SYN_HL
1810 if (old_tw != curbuf->b_p_tw)
1811 check_colorcolumn(curwin);
1812#endif
1813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814}
1815
1816/*
1817 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001818 * Old curbuf must have been abandoned already! This also means "curbuf" may
1819 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001821 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001822enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823{
Bram Moolenaarcfeb8a52022-08-13 14:09:44 +01001824 // when closing the current buffer stop Visual mode
1825 if (VIsual_active
1826#if defined(EXITFREE)
1827 && !entered_free_all_mem
1828#endif
1829 )
1830 end_visual_mode();
1831
Bram Moolenaar010ee962019-09-25 20:37:36 +02001832 // Get the buffer in the current window.
1833 curwin->w_buffer = buf;
1834 curbuf = buf;
1835 ++curbuf->b_nwindows;
1836
1837 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1839 if (!buf->b_help)
1840 get_winopts(buf);
1841#ifdef FEAT_FOLDING
1842 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001843 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001845 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846#endif
1847
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001849 if (curwin->w_p_diff)
1850 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#endif
1852
Bram Moolenaara971b822011-09-14 14:43:25 +02001853#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001854 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001855#endif
1856
Bram Moolenaarc667da52019-11-30 20:52:27 +01001857 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 curwin->w_cursor.lnum = 1;
1859 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001862 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863
Bram Moolenaarc667da52019-11-30 20:52:27 +01001864 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001865 curwin->w_valid = 0;
1866
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001867 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1868 curbuf->b_last_cursor.col, TRUE);
1869
Bram Moolenaarc667da52019-11-30 20:52:27 +01001870 // Make sure the buffer is loaded.
1871 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001872 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001873 // If there is no filetype, allow for detecting one. Esp. useful for
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001874 // ":ball" used in an autocommand. If there already is a filetype we
Bram Moolenaarc667da52019-11-30 20:52:27 +01001875 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001876 if (*curbuf->b_p_ft == NUL)
1877 did_filetype = FALSE;
1878
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001879 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 else
1882 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001883 if (!msg_silent && !shortmess(SHM_FILEINFO))
1884 need_fileinfo = TRUE; // display file info after redraw
1885
1886 // check if file changed
1887 (void)buf_check_timestamp(curbuf, FALSE);
1888
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001890#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1894 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 }
1896
Bram Moolenaarc667da52019-11-30 20:52:27 +01001897 // If autocommands did not change the cursor position, restore cursor lnum
1898 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (curwin->w_cursor.lnum == 1 && inindent(0))
1900 buflist_getfpos();
1901
Bram Moolenaarc667da52019-11-30 20:52:27 +01001902 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001904 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001905 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001906 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907
Bram Moolenaar009b2592004-10-24 19:18:58 +00001908#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001909 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001910 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001911#endif
1912
Bram Moolenaarc667da52019-11-30 20:52:27 +01001913 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001914 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
1916#ifdef FEAT_KEYMAP
1917 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001918 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001920#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001921 // May need to set the spell language. Can only do this after the buffer
1922 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001923 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1924 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001925#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001926#ifdef FEAT_VIMINFO
1927 curbuf->b_last_used = vim_time();
1928#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001929
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001930 redraw_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931}
1932
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001933#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1934/*
1935 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001936 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001937 */
1938 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001939do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001940{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001941 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001942 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001943 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001944 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001945 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001946 last_chdir_reason = "autochdir";
1947 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001948}
1949#endif
1950
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001951 void
1952no_write_message(void)
1953{
1954#ifdef FEAT_TERMINAL
1955 if (term_job_running(curbuf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001956 emsg(_(e_job_still_running_add_bang_to_end_the_job));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001957 else
1958#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001959 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001960}
1961
1962 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001963no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001964{
1965#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001966 if (term_job_running(buf->b_term))
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001967 emsg(_(e_job_still_running));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001968 else
1969#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001970 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001971}
1972
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973/*
1974 * functions for dealing with the buffer list
1975 */
1976
1977/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001978 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1979 * only one window. That means it can be re-used.
1980 */
1981 int
1982curbuf_reusable(void)
1983{
1984 return (curbuf != NULL
1985 && curbuf->b_ffname == NULL
1986 && curbuf->b_nwindows <= 1
1987 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001988#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001989 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001990#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001991 && !curbufIsChanged());
1992}
1993
1994/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 * Add a file name to the buffer list. Return a pointer to the buffer.
1996 * If the same file name already exists return a pointer to that buffer.
1997 * If it does not exist, or if fname == NULL, a new entry is created.
1998 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1999 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
2000 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002001 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02002002 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
2003 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002004 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 * This is the ONLY way to create a new buffer.
2006 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002008buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002009 char_u *ffname_arg, // full path of fname or relative
2010 char_u *sfname_arg, // short fname or NULL
2011 linenr_T lnum, // preferred cursor line
2012 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002014 char_u *ffname = ffname_arg;
2015 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 buf_T *buf;
2017#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002018 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019#endif
2020
Bram Moolenaar480778b2016-07-14 22:09:39 +02002021 if (top_file_num == 1)
2022 hash_init(&buf_hashtab);
2023
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002024 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025
2026 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002027 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 */
2029#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002030 // On Unix we can use inode numbers when the file exists. Works better
2031 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2033 st.st_dev = (dev_T)-1;
2034#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002035 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036#ifdef UNIX
2037 buflist_findname_stat(ffname, &st)
2038#else
2039 buflist_findname(ffname)
2040#endif
2041 ) != NULL)
2042 {
2043 vim_free(ffname);
2044 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002045 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2046 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002047
2048 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002049 // copy the options now, if 'cpo' doesn't have 's' and not done
2050 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002051 buf_copy_options(buf, 0);
2052
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2054 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002055 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002056
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002058 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002060 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002061 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002062 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002063 return NULL;
2064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 }
2066 return buf;
2067 }
2068
2069 /*
2070 * If the current buffer has no name and no contents, use the current
2071 * buffer. Otherwise: Need to allocate a new buffer structure.
2072 *
2073 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002074 * (A spell file buffer is allocated in spell.c, but that's not a normal
2075 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 */
2077 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002078 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 {
2080 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002081 // It's like this buffer is deleted. Watch out for autocommands that
2082 // change curbuf! If that happens, allocate a new buffer anyway.
Charlie Grovesfef44852022-04-19 16:24:12 +01002083 buf_freeall(buf, BFA_WIPE | BFA_DEL);
2084 if (buf != curbuf) // autocommands deleted the buffer!
2085 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002086#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002087 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002088 {
2089 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 }
2094 if (buf != curbuf || curbuf == NULL)
2095 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002096 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 if (buf == NULL)
2098 {
2099 vim_free(ffname);
2100 return NULL;
2101 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002102#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002103 // init b: variables
Yegappan Lakshmanan72bb47e2022-04-03 11:22:38 +01002104 buf->b_vars = dict_alloc_id(aid_newbuf_bvars);
Bram Moolenaar429fa852013-04-15 12:27:36 +02002105 if (buf->b_vars == NULL)
2106 {
2107 vim_free(ffname);
2108 vim_free(buf);
2109 return NULL;
2110 }
2111 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2112#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002113 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 }
2115
2116 if (ffname != NULL)
2117 {
2118 buf->b_ffname = ffname;
2119 buf->b_sfname = vim_strsave(sfname);
2120 }
2121
2122 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002123 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124
2125 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2126 || buf->b_wininfo == NULL)
2127 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002128 if (buf->b_sfname != buf->b_ffname)
2129 VIM_CLEAR(buf->b_sfname);
2130 else
2131 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002132 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 if (buf != curbuf)
2134 free_buffer(buf);
2135 return NULL;
2136 }
2137
2138 if (buf == curbuf)
2139 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002140 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002141
Bram Moolenaarc667da52019-11-30 20:52:27 +01002142 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002143 buf->b_p_initialized = FALSE;
2144 buf_copy_options(buf, BCO_ENTER);
2145
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002147 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 curbuf->b_kmap_state |= KEYMAP_INIT;
2149#endif
2150 }
2151 else
2152 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002153 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002155 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 {
2157 buf->b_prev = NULL;
2158 firstbuf = buf;
2159 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002160 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
2162 lastbuf->b_next = buf;
2163 buf->b_prev = lastbuf;
2164 }
2165 lastbuf = buf;
2166
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002167 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2168 {
2169 // Recycle a previously used buffer number. Used for buffers which
2170 // are normally hidden, e.g. in a popup window. Avoids that the
2171 // buffer number grows rapidly.
2172 --buf_reuse.ga_len;
2173 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002174
2175 // Move buffer to the right place in the buffer list.
2176 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2177 {
2178 buf_T *prev = buf->b_prev;
2179
2180 prev->b_next = buf->b_next;
2181 if (prev->b_next != NULL)
2182 prev->b_next->b_prev = prev;
2183 buf->b_next = prev;
2184 buf->b_prev = prev->b_prev;
2185 if (buf->b_prev != NULL)
2186 buf->b_prev->b_next = buf;
2187 prev->b_prev = buf;
2188 if (lastbuf == buf)
2189 lastbuf = prev;
2190 if (firstbuf == prev)
2191 firstbuf = buf;
2192 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002193 }
2194 else
2195 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002196 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002198 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002199 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
2201 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002202 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 }
2204 top_file_num = 1;
2205 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002206 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002208 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 buf_copy_options(buf, BCO_ALWAYS);
2210 }
2211
2212 buf->b_wininfo->wi_fpos.lnum = lnum;
2213 buf->b_wininfo->wi_win = curwin;
2214
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002215#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002216 hash_init(&buf->b_s.b_keywtab);
2217 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#endif
2219
2220 buf->b_fname = buf->b_sfname;
2221#ifdef UNIX
2222 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002223 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 else
2225 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002226 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 buf->b_dev = st.st_dev;
2228 buf->b_ino = st.st_ino;
2229 }
2230#endif
2231 buf->b_u_synced = TRUE;
2232 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002233 if (flags & BLN_DUMMY)
2234 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002236 clrallmarks(buf); // clear marks
2237 fmarks_check_names(buf); // check file marks for this file
2238 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (!(flags & BLN_DUMMY))
2240 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002241 bufref_T bufref;
2242
Bram Moolenaarc667da52019-11-30 20:52:27 +01002243 // Tricky: these autocommands may change the buffer list. They could
2244 // also split the window with re-using the one empty buffer. This may
2245 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002246 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002247 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002248 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002249 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002251 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002252 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002253 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002254 return NULL;
2255 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002256#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002257 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
2262 return buf;
2263}
2264
2265/*
2266 * Free the memory for the options of a buffer.
2267 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2268 * 'fileencoding'.
2269 */
2270 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002271free_buf_options(
2272 buf_T *buf,
2273 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 if (free_p_ff)
2276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 clear_string_option(&buf->b_p_bh);
2280 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 }
2282#ifdef FEAT_FIND_ID
2283 clear_string_option(&buf->b_p_def);
2284 clear_string_option(&buf->b_p_inc);
2285# ifdef FEAT_EVAL
2286 clear_string_option(&buf->b_p_inex);
2287# endif
2288#endif
Bram Moolenaar8e145b82022-05-21 20:17:31 +01002289#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 clear_string_option(&buf->b_p_inde);
2291 clear_string_option(&buf->b_p_indk);
2292#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002293#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2294 clear_string_option(&buf->b_p_bexpr);
2295#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002296#if defined(FEAT_CRYPT)
2297 clear_string_option(&buf->b_p_cm);
2298#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002299 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002300#if defined(FEAT_EVAL)
2301 clear_string_option(&buf->b_p_fex);
2302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002304# ifdef FEAT_SODIUM
K.Takata1a8825d2022-01-19 13:32:57 +00002305 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) &&
2306 (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2307 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002308# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 clear_string_option(&buf->b_p_key);
2310#endif
2311 clear_string_option(&buf->b_p_kp);
2312 clear_string_option(&buf->b_p_mps);
2313 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002314 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002316#ifdef FEAT_VARTABS
2317 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002318 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002319 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaar9b4a80a2022-02-01 13:54:17 +00002320 VIM_CLEAR(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002321 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002322 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002323#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324#ifdef FEAT_KEYMAP
2325 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002326 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 ga_clear(&buf->b_kmap_ga);
2328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#ifdef FEAT_FOLDING
2331 clear_string_option(&buf->b_p_cms);
2332#endif
2333 clear_string_option(&buf->b_p_nf);
2334#ifdef FEAT_SYN_HL
2335 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002336 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002337#endif
2338#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002339 clear_string_option(&buf->b_s.b_p_spc);
2340 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002341 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002342 buf->b_s.b_cap_prog = NULL;
2343 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002344 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345#endif
2346#ifdef FEAT_SEARCHPATH
2347 clear_string_option(&buf->b_p_sua);
2348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 clear_string_option(&buf->b_p_cink);
2351 clear_string_option(&buf->b_p_cino);
Tom Praschan3506cf32022-04-07 12:39:08 +01002352 clear_string_option(&buf->b_p_cinsd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 clear_string_option(&buf->b_p_cinw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002355#ifdef FEAT_COMPL_FUNC
2356 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002357 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002358 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002359 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002360 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002361 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002362#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363#ifdef FEAT_QUICKFIX
2364 clear_string_option(&buf->b_p_gp);
2365 clear_string_option(&buf->b_p_mp);
2366 clear_string_option(&buf->b_p_efm);
2367#endif
2368 clear_string_option(&buf->b_p_ep);
2369 clear_string_option(&buf->b_p_path);
2370 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002371 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002372#ifdef FEAT_EVAL
2373 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002374 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002375#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 clear_string_option(&buf->b_p_dict);
2377 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002378 clear_string_option(&buf->b_p_qe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002380 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002381 clear_string_option(&buf->b_p_lw);
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002382 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002383 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384}
2385
2386/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002387 * Get alternate file "n".
2388 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2389 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 * if (options & GETF_SETMARK) call setpcmark()
2391 * if (options & GETF_ALT) we are jumping to an alternate file.
2392 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2393 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002394 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 */
2396 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002397buflist_getfile(
2398 int n,
2399 linenr_T lnum,
2400 int options,
2401 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402{
2403 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 pos_T *fpos;
2406 colnr_T col;
2407
2408 buf = buflist_findnr(n);
2409 if (buf == NULL)
2410 {
2411 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002412 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 else
Bram Moolenaare1242042021-12-16 20:56:57 +00002414 semsg(_(e_buffer_nr_not_found), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 return FAIL;
2416 }
2417
Bram Moolenaarc667da52019-11-30 20:52:27 +01002418 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 if (buf == curbuf)
2420 return OK;
2421
Bram Moolenaar71223e22022-05-30 15:23:09 +01002422 if (text_or_buf_locked())
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002423 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424
Bram Moolenaarc667da52019-11-30 20:52:27 +01002425 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 if (lnum == 0)
2427 {
2428 fpos = buflist_findfpos(buf);
2429 lnum = fpos->lnum;
2430 col = fpos->col;
2431 }
2432 else
2433 col = 0;
2434
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 if (options & GETF_SWITCH)
2436 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002437 // If 'switchbuf' contains "useopen": jump to first window containing
2438 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002439 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002441
Bram Moolenaarc667da52019-11-30 20:52:27 +01002442 // If 'switchbuf' contains "usetab": jump to first window in any tab
2443 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002444 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002445 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002446
Bram Moolenaarc667da52019-11-30 20:52:27 +01002447 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2448 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002449 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002450 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002452 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002453 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002454 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2455 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002457 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 }
2459 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460
2461 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002462 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2463 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 {
2465 --RedrawingDisabled;
2466
Bram Moolenaarc667da52019-11-30 20:52:27 +01002467 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 if (!p_sol && col != 0)
2469 {
2470 curwin->w_cursor.col = col;
2471 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 curwin->w_set_curswant = TRUE;
2474 }
2475 return OK;
2476 }
2477 --RedrawingDisabled;
2478 return FAIL;
2479}
2480
2481/*
2482 * go to the last know line number for the current buffer
2483 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002484 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002485buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486{
2487 pos_T *fpos;
2488
2489 fpos = buflist_findfpos(curbuf);
2490
2491 curwin->w_cursor.lnum = fpos->lnum;
2492 check_cursor_lnum();
2493
2494 if (p_sol)
2495 curwin->w_cursor.col = 0;
2496 else
2497 {
2498 curwin->w_cursor.col = fpos->col;
2499 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 curwin->w_set_curswant = TRUE;
2502 }
2503}
2504
Bram Moolenaar81695252004-12-29 20:58:21 +00002505#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2506/*
2507 * Find file in buffer list by name (it has to be for the current window).
2508 * Returns NULL if not found.
2509 */
2510 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002511buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002512{
2513 char_u *ffname;
2514 buf_T *buf = NULL;
2515
Bram Moolenaarc667da52019-11-30 20:52:27 +01002516 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002517 ffname = FullName_save(fname,
2518#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002519 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002520#else
2521 FALSE
2522#endif
2523 );
2524 if (ffname != NULL)
2525 {
2526 buf = buflist_findname(ffname);
2527 vim_free(ffname);
2528 }
2529 return buf;
2530}
2531#endif
2532
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533/*
2534 * Find file in buffer list by name (it has to be for the current window).
2535 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002536 * Skips dummy buffers.
2537 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 */
2539 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002540buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002543 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544
2545 if (mch_stat((char *)ffname, &st) < 0)
2546 st.st_dev = (dev_T)-1;
2547 return buflist_findname_stat(ffname, &st);
2548}
2549
2550/*
2551 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2552 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002553 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 */
2555 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002556buflist_findname_stat(
2557 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002558 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559{
2560#endif
2561 buf_T *buf;
2562
Bram Moolenaarc667da52019-11-30 20:52:27 +01002563 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002564 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002565 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566#ifdef UNIX
2567 , stp
2568#endif
2569 ))
2570 return buf;
2571 return NULL;
2572}
2573
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574/*
2575 * Find file in buffer list by a regexp pattern.
2576 * Return fnum of the found buffer.
2577 * Return < 0 for error.
2578 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002580buflist_findpat(
2581 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002582 char_u *pattern_end, // pointer to first char after pattern
2583 int unlisted, // find unlisted buffers
2584 int diffmode UNUSED, // find diff-mode buffers only
2585 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
2587 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 int match = -1;
2589 int find_listed;
2590 char_u *pat;
2591 char_u *patend;
2592 int attempt;
2593 char_u *p;
2594 int toggledollar;
2595
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002596 // "%" is current file, "%%" or "#" is alternate file
2597 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2598 || (in_vim9script() && pattern_end == pattern + 2
2599 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002601 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002603 else
2604 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605#ifdef FEAT_DIFF
2606 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2607 match = -1;
2608#endif
2609 }
2610
2611 /*
2612 * Try four ways of matching a listed buffer:
2613 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002614 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 * attempt == 2: with '$' at end (only match at end)
2616 * attempt == 3: with '^' at start and '$' at end (only full match)
2617 * Repeat this for finding an unlisted buffer if there was no matching
2618 * listed buffer.
2619 */
2620 else
2621 {
2622 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2623 if (pat == NULL)
2624 return -1;
2625 patend = pat + STRLEN(pat) - 1;
2626 toggledollar = (patend > pat && *patend == '$');
2627
Bram Moolenaarc667da52019-11-30 20:52:27 +01002628 // First try finding a listed buffer. If not found and "unlisted"
2629 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 find_listed = TRUE;
2631 for (;;)
2632 {
2633 for (attempt = 0; attempt <= 3; ++attempt)
2634 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002635 regmatch_T regmatch;
2636
Bram Moolenaarc667da52019-11-30 20:52:27 +01002637 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002639 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002641 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002643 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002645 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002646 {
2647 if (regmatch.regprog == NULL)
2648 {
2649 // invalid pattern, possibly after switching engine
2650 vim_free(pat);
2651 return -1;
2652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 if (buf->b_p_bl == find_listed
2654#ifdef FEAT_DIFF
2655 && (!diffmode || diff_mode_buf(buf))
2656#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002657 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002659 if (curtab_only)
2660 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002661 // Ignore the match if the buffer is not open in
2662 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002663 win_T *wp;
2664
Bram Moolenaar29323592016-07-24 22:04:11 +02002665 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002666 if (wp->w_buffer == buf)
2667 break;
2668 if (wp == NULL)
2669 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002670 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002671 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 {
2673 match = -2;
2674 break;
2675 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002676 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 }
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002680 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002681 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 break;
2683 }
2684
Bram Moolenaarc667da52019-11-30 20:52:27 +01002685 // Only search for unlisted buffers if there was no match with
2686 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 if (!unlisted || !find_listed || match != -1)
2688 break;
2689 find_listed = FALSE;
2690 }
2691
2692 vim_free(pat);
2693 }
2694
2695 if (match == -2)
Bram Moolenaare1242042021-12-16 20:56:57 +00002696 semsg(_(e_more_than_one_match_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 else if (match < 0)
Bram Moolenaare1242042021-12-16 20:56:57 +00002698 semsg(_(e_no_matching_buffer_for_str), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 return match;
2700}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
Bram Moolenaar52410572019-10-27 05:12:45 +01002702#ifdef FEAT_VIMINFO
2703typedef struct {
2704 buf_T *buf;
2705 char_u *match;
2706} bufmatch_T;
2707#endif
2708
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709/*
2710 * Find all buffer names that match.
2711 * For command line expansion of ":buf" and ":sbuf".
2712 * Return OK if matches found, FAIL otherwise.
2713 */
2714 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002715ExpandBufnames(
2716 char_u *pat,
2717 int *num_file,
2718 char_u ***file,
2719 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720{
2721 int count = 0;
2722 buf_T *buf;
2723 int round;
2724 char_u *p;
2725 int attempt;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002726 char_u *patc = NULL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002727#ifdef FEAT_VIMINFO
2728 bufmatch_T *matches = NULL;
2729#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002730 int fuzzy;
2731 fuzmatch_str_T *fuzmatch = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732
Bram Moolenaarc667da52019-11-30 20:52:27 +01002733 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 *file = NULL;
2735
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002736#ifdef FEAT_DIFF
2737 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2738 return FAIL;
2739#endif
2740
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002741 fuzzy = cmdline_fuzzy_complete(pat);
2742
2743 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular
2744 // expression matching)
2745 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002747 if (*pat == '^')
2748 {
2749 patc = alloc(STRLEN(pat) + 11);
2750 if (patc == NULL)
2751 return FAIL;
2752 STRCPY(patc, "\\(^\\|[\\/]\\)");
2753 STRCPY(patc + 11, pat + 1);
2754 }
2755 else
2756 patc = pat;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002757 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00002758
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002759 // attempt == 0: try match with '\<', match at start of word
2760 // attempt == 1: try match without '\<', match anywhere
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002761 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002762 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002763 regmatch_T regmatch;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002764 int score = 0;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002765
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002766 if (!fuzzy)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002767 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002768 if (attempt > 0 && patc == pat)
2769 break; // there was no anchor, no need to try again
2770 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002773 // round == 1: Count the matches.
2774 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 for (round = 1; round <= 2; ++round)
2776 {
2777 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002778 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002780 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002782#ifdef FEAT_DIFF
2783 if (options & BUF_DIFF_FILTER)
2784 // Skip buffers not suitable for
2785 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002786 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002787 continue;
2788#endif
2789
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002790 if (!fuzzy)
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002791 {
2792 if (regmatch.regprog == NULL)
2793 {
2794 // invalid pattern, possibly after recompiling
2795 if (patc != pat)
2796 vim_free(patc);
2797 return FAIL;
2798 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002799 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002800 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002801 else
2802 {
2803 p = NULL;
2804 // first try matching with the short file name
2805 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0)
2806 p = buf->b_sfname;
2807 if (p == NULL)
2808 {
2809 // next try matching with the full path file name
2810 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0)
2811 p = buf->b_ffname;
2812 }
2813 }
2814
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002815 if (p == NULL)
2816 continue;
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002817
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002818 if (round == 1)
2819 {
2820 ++count;
2821 continue;
2822 }
2823
2824 if (options & WILD_HOME_REPLACE)
2825 p = home_replace_save(buf, p);
2826 else
2827 p = vim_strsave(p);
2828
2829 if (!fuzzy)
2830 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002831#ifdef FEAT_VIMINFO
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002832 if (matches != NULL)
2833 {
2834 matches[count].buf = buf;
2835 matches[count].match = p;
2836 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 }
Yegappan Lakshmanan5de4c432022-02-28 13:28:38 +00002838 else
2839#endif
2840 (*file)[count++] = p;
2841 }
2842 else
2843 {
2844 fuzmatch[count].idx = count;
2845 fuzmatch[count].str = p;
2846 fuzmatch[count].score = score;
2847 count++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 }
2849 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002850 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 break;
2852 if (round == 1)
2853 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002854 if (!fuzzy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002856 *file = ALLOC_MULT(char_u *, count);
2857 if (*file == NULL)
2858 {
2859 vim_regfree(regmatch.regprog);
2860 if (patc != pat)
2861 vim_free(patc);
2862 return FAIL;
2863 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002864#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002865 if (options & WILD_BUFLASTUSED)
2866 matches = ALLOC_MULT(bufmatch_T, count);
Bram Moolenaar52410572019-10-27 05:12:45 +01002867#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002868 }
2869 else
2870 {
2871 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count);
2872 if (fuzmatch == NULL)
2873 {
2874 *num_file = 0;
2875 *file = NULL;
2876 return FAIL;
2877 }
2878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 }
2880 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002881
2882 if (!fuzzy)
2883 {
2884 vim_regfree(regmatch.regprog);
2885 if (count) // match(es) found, break here
2886 break;
2887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 }
2889
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002890 if (!fuzzy && patc != pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002891 vim_free(patc);
2892
Bram Moolenaar52410572019-10-27 05:12:45 +01002893#ifdef FEAT_VIMINFO
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002894 if (!fuzzy)
Bram Moolenaar52410572019-10-27 05:12:45 +01002895 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002896 if (matches != NULL)
Bram Moolenaar52410572019-10-27 05:12:45 +01002897 {
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002898 int i;
2899 if (count > 1)
2900 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2901 // if the current buffer is first in the list, place it at the end
2902 if (matches[0].buf == curbuf)
2903 {
2904 for (i = 1; i < count; i++)
2905 (*file)[i-1] = matches[i].match;
2906 (*file)[count-1] = matches[0].match;
2907 }
2908 else
2909 {
2910 for (i = 0; i < count; i++)
2911 (*file)[i] = matches[i].match;
2912 }
2913 vim_free(matches);
Bram Moolenaar52410572019-10-27 05:12:45 +01002914 }
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002915 }
2916 else
2917 {
2918 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL)
2919 return FAIL;
Bram Moolenaar52410572019-10-27 05:12:45 +01002920 }
2921#endif
2922
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 *num_file = count;
2924 return (count == 0 ? FAIL : OK);
2925}
2926
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927/*
2928 * Check for a match on the file name for buffer "buf" with regprog "prog".
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002929 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 */
2931 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002932buflist_match(
2933 regmatch_T *rmp,
2934 buf_T *buf,
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;
2938
Bram Moolenaarc667da52019-11-30 20:52:27 +01002939 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002940 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaara59f2df2022-05-11 11:42:28 +01002941 if (match == NULL && rmp->regprog != NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002942 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
2944 return match;
2945}
2946
2947/*
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002948 * Try matching the regexp in "rmp->regprog" with file name "name".
2949 * Note that rmp->regprog may become NULL when switching regexp engine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 * Return "name" when there is a match, NULL when not.
2951 */
2952 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002953fname_match(
2954 regmatch_T *rmp,
2955 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002956 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957{
2958 char_u *match = NULL;
2959 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960
Bram Moolenaarb62dc5e2022-05-15 14:50:12 +01002961 // extra check for valid arguments
2962 if (name != NULL && rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002964 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002965 rmp->rm_ic = p_fic || ignore_case;
2966 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 match = name;
Bram Moolenaar8e4b76d2022-05-07 11:28:06 +01002968 else if (rmp->regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002970 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002972 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 match = name;
2974 vim_free(p);
2975 }
2976 }
2977
2978 return match;
2979}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980
2981/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002982 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 */
2984 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002985buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002987 char_u key[VIM_SIZEOF_INT * 2 + 1];
2988 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989
2990 if (nr == 0)
2991 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002992 sprintf((char *)key, "%x", nr);
2993 hi = hash_find(&buf_hashtab, key);
2994
2995 if (!HASHITEM_EMPTY(hi))
2996 return (buf_T *)(hi->hi_key
2997 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 return NULL;
2999}
3000
3001/*
3002 * Get name of file 'n' in the buffer list.
3003 * When the file has no name an empty string is returned.
3004 * home_replace() is used to shorten the file name (used for marks).
3005 * Returns a pointer to allocated memory, of NULL when failed.
3006 */
3007 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003008buflist_nr2name(
3009 int n,
3010 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003011 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012{
3013 buf_T *buf;
3014
3015 buf = buflist_findnr(n);
3016 if (buf == NULL)
3017 return NULL;
3018 return home_replace_save(helptail ? buf : NULL,
3019 fullname ? buf->b_ffname : buf->b_fname);
3020}
3021
3022/*
3023 * Set the "lnum" and "col" for the buffer "buf" and the current window.
3024 * When "copy_options" is TRUE save the local window option values.
3025 * When "lnum" is 0 only do the options.
3026 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02003027 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003028buflist_setfpos(
3029 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003030 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01003031 linenr_T lnum,
3032 colnr_T col,
3033 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034{
3035 wininfo_T *wip;
3036
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003037 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 if (wip->wi_win == win)
3039 break;
3040 if (wip == NULL)
3041 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003042 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003043 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 if (wip == NULL)
3045 return;
3046 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003047 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 lnum = 1;
3049 }
3050 else
3051 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003052 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 if (wip->wi_prev)
3054 wip->wi_prev->wi_next = wip->wi_next;
3055 else
3056 buf->b_wininfo = wip->wi_next;
3057 if (wip->wi_next)
3058 wip->wi_next->wi_prev = wip->wi_prev;
3059 if (copy_options && wip->wi_optset)
3060 {
3061 clear_winopt(&wip->wi_opt);
3062#ifdef FEAT_FOLDING
3063 deleteFoldRecurse(&wip->wi_folds);
3064#endif
3065 }
3066 }
3067 if (lnum != 0)
3068 {
3069 wip->wi_fpos.lnum = lnum;
3070 wip->wi_fpos.col = col;
3071 }
LemonBoydb0ea7f2022-04-10 17:59:26 +01003072 if (win != NULL)
3073 wip->wi_changelistidx = win->w_changelistidx;
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003074 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003076 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3078#ifdef FEAT_FOLDING
3079 wip->wi_fold_manual = win->w_fold_manual;
3080 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3081#endif
3082 wip->wi_optset = TRUE;
3083 }
3084
Bram Moolenaarc667da52019-11-30 20:52:27 +01003085 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 wip->wi_next = buf->b_wininfo;
3087 buf->b_wininfo = wip;
3088 wip->wi_prev = NULL;
3089 if (wip->wi_next)
3090 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091}
3092
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003093#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003094/*
3095 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3096 * page. That's because a diff is local to a tab page.
3097 */
3098 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003099wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003100{
3101 win_T *wp;
3102
3103 if (wip->wi_opt.wo_diff)
3104 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003105 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003106 // return FALSE when it's a window in the current tab page, thus
3107 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003108 if (wip->wi_win == wp)
3109 return FALSE;
3110 return TRUE;
3111 }
3112 return FALSE;
3113}
3114#endif
3115
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116/*
3117 * Find info for the current window in buffer "buf".
3118 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003119 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003120 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3121 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 * Returns NULL when there isn't any info.
3123 */
3124 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003125find_wininfo(
3126 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003127 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003128 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129{
3130 wininfo_T *wip;
3131
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003132 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003133 if (wip->wi_win == curwin
3134#ifdef FEAT_DIFF
3135 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3136#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003137
3138 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003140
Bram Moolenaarc667da52019-11-30 20:52:27 +01003141 // If no wininfo for curwin, use the first in the list (that doesn't have
3142 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003143 // If "need_options" is TRUE skip entries that don't have options set,
3144 // unless the window is editing "buf", so we can copy from the window
3145 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003146 if (wip == NULL)
3147 {
3148#ifdef FEAT_DIFF
3149 if (skip_diff_buffer)
3150 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003151 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003152 if (!wininfo_other_tab_diff(wip)
3153 && (!need_options || wip->wi_optset
3154 || (wip->wi_win != NULL
3155 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003156 break;
3157 }
3158 else
3159#endif
3160 wip = buf->b_wininfo;
3161 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 return wip;
3163}
3164
3165/*
3166 * Reset the local window options to the values last used in this window.
3167 * If the buffer wasn't used in this window before, use the values from
3168 * the most recently used window. If the values were never set, use the
3169 * global values for the window.
3170 */
3171 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003172get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
3174 wininfo_T *wip;
3175
3176 clear_winopt(&curwin->w_onebuf_opt);
3177#ifdef FEAT_FOLDING
3178 clearFolding(curwin);
3179#endif
3180
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003181 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003182 if (wip != NULL && wip->wi_win != NULL
3183 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003185 // The buffer is currently displayed in the window: use the actual
3186 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003187 win_T *wp = wip->wi_win;
3188
3189 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3190#ifdef FEAT_FOLDING
3191 curwin->w_fold_manual = wp->w_fold_manual;
3192 curwin->w_foldinvalid = TRUE;
3193 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3194#endif
3195 }
3196 else if (wip != NULL && wip->wi_optset)
3197 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003198 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3200#ifdef FEAT_FOLDING
3201 curwin->w_fold_manual = wip->wi_fold_manual;
3202 curwin->w_foldinvalid = TRUE;
3203 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3204#endif
3205 }
3206 else
3207 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
LemonBoydb0ea7f2022-04-10 17:59:26 +01003208 if (wip != NULL)
3209 curwin->w_changelistidx = wip->wi_changelistidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210
3211#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003212 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 if (p_fdls >= 0)
3214 curwin->w_p_fdl = p_fdls;
3215#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003216 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217}
3218
3219/*
3220 * Find the position (lnum and col) for the buffer 'buf' for the current
3221 * window.
3222 * Returns a pointer to no_position if no position is found.
3223 */
3224 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003225buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226{
3227 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003228 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003230 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (wip != NULL)
3232 return &(wip->wi_fpos);
3233 else
3234 return &no_position;
3235}
3236
3237/*
3238 * Find the lnum for the buffer 'buf' for the current window.
3239 */
3240 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003241buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242{
3243 return buflist_findfpos(buf)->lnum;
3244}
3245
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003247 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003250buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251{
Bram Moolenaar52410572019-10-27 05:12:45 +01003252 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 int len;
3254 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003255 int ro_char;
3256 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003257#ifdef FEAT_TERMINAL
3258 int job_running;
3259 int job_none_open;
3260#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261
Bram Moolenaar52410572019-10-27 05:12:45 +01003262#ifdef FEAT_VIMINFO
3263 garray_T buflist;
3264 buf_T **buflist_data = NULL, **p;
3265
3266 if (vim_strchr(eap->arg, 't'))
3267 {
3268 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003269 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003270 {
3271 if (ga_grow(&buflist, 1) == OK)
3272 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3273 }
3274
3275 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3276 sizeof(buf_T *), buf_compare);
3277
Bram Moolenaar3b991522019-11-06 23:26:20 +01003278 buflist_data = (buf_T **)buflist.ga_data;
3279 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003280 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003281 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003282
Bram Moolenaar3b991522019-11-06 23:26:20 +01003283 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003284 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3285 : buf->b_next)
3286#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003290#ifdef FEAT_TERMINAL
3291 job_running = term_job_running(buf->b_term);
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003292 job_none_open = term_none_open(buf->b_term);
Bram Moolenaar0751f512018-03-29 16:37:16 +02003293#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003294 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003295 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3296 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3297 || (vim_strchr(eap->arg, '+')
3298 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3299 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003300 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003301 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003302 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3303#ifdef FEAT_TERMINAL
3304 || (vim_strchr(eap->arg, 'R')
3305 && (!job_running || (job_running && job_none_open)))
3306 || (vim_strchr(eap->arg, '?')
3307 && (!job_running || (job_running && !job_none_open)))
3308 || (vim_strchr(eap->arg, 'F')
3309 && (job_running || buf->b_term == NULL))
3310#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003311 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3312 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3313 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3314 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3315 || (vim_strchr(eap->arg, '#')
3316 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003319 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 else
3321 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003322 if (message_filtered(NameBuff))
3323 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003325 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3326 : (bufIsChanged(buf) ? '+' : ' ');
3327#ifdef FEAT_TERMINAL
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003328 if (job_running)
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003329 {
Bram Moolenaar9e636b92022-05-29 22:37:05 +01003330 if (job_none_open)
Bram Moolenaar4033c552017-09-16 20:54:51 +02003331 ro_char = '?';
3332 else
3333 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003334 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3335 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003336 }
3337 else if (buf->b_term != NULL)
3338 ro_char = 'F';
3339 else
3340#endif
3341 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3342
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003343 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003344 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 buf->b_fnum,
3346 buf->b_p_bl ? ' ' : 'u',
3347 buf == curbuf ? '%' :
3348 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3349 buf->b_ml.ml_mfp == NULL ? ' ' :
3350 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003351 ro_char,
3352 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003353 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003354 if (len > IOSIZE - 20)
3355 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356
Bram Moolenaarc667da52019-11-30 20:52:27 +01003357 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 i = 40 - vim_strsize(IObuff);
3359 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003361 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003362#ifdef FEAT_VIMINFO
3363 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3364 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3365 else
3366#endif
3367 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3368 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003369 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003371 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 ui_breakcheck();
3373 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003374
3375#ifdef FEAT_VIMINFO
3376 if (buflist_data)
3377 ga_clear(&buflist);
3378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380
3381/*
3382 * Get file name and line number for file 'fnum'.
3383 * Used by DoOneCmd() for translating '%' and '#'.
3384 * Used by insert_reg() and cmdline_paste() for '#' register.
3385 * Return FAIL if not found, OK for success.
3386 */
3387 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003388buflist_name_nr(
3389 int fnum,
3390 char_u **fname,
3391 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392{
3393 buf_T *buf;
3394
3395 buf = buflist_findnr(fnum);
3396 if (buf == NULL || buf->b_fname == NULL)
3397 return FAIL;
3398
3399 *fname = buf->b_fname;
3400 *lnum = buflist_findlnum(buf);
3401
3402 return OK;
3403}
3404
3405/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003406 * Set the file name for "buf"' to "ffname_arg", short file name to
3407 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 * The file name with the full path is also remembered, for when :cd is used.
3409 * Returns FAIL for failure (file name already in use by other buffer)
3410 * OK otherwise.
3411 */
3412 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003413setfname(
3414 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003415 char_u *ffname_arg,
3416 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003417 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003419 char_u *ffname = ffname_arg;
3420 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003421 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003423 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424#endif
3425
3426 if (ffname == NULL || *ffname == NUL)
3427 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003428 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003429 if (buf->b_sfname != buf->b_ffname)
3430 VIM_CLEAR(buf->b_sfname);
3431 else
3432 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003433 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434#ifdef UNIX
3435 st.st_dev = (dev_T)-1;
3436#endif
3437 }
3438 else
3439 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003440 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3441 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 return FAIL;
3443
3444 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003445 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 * - if the buffer is loaded, fail
3447 * - if the buffer is not loaded, delete it from the list
3448 */
3449#ifdef UNIX
3450 if (mch_stat((char *)ffname, &st) < 0)
3451 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003452#endif
3453 if (!(buf->b_flags & BF_DUMMY))
3454#ifdef UNIX
3455 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003457 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458#endif
3459 if (obuf != NULL && obuf != buf)
3460 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003461 win_T *win;
3462 tabpage_T *tab;
3463 int in_use = FALSE;
3464
3465 // during startup a window may use a buffer that is not loaded yet
3466 FOR_ALL_TAB_WINDOWS(tab, win)
3467 if (win->w_buffer == obuf)
3468 in_use = TRUE;
3469
3470 // it's loaded or used in a window, fail
3471 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 {
3473 if (message)
Bram Moolenaare1242042021-12-16 20:56:57 +00003474 emsg(_(e_buffer_with_this_name_already_exists));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 vim_free(ffname);
3476 return FAIL;
3477 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003478 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003479 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 }
3481 sfname = vim_strsave(sfname);
3482 if (ffname == NULL || sfname == NULL)
3483 {
3484 vim_free(sfname);
3485 vim_free(ffname);
3486 return FAIL;
3487 }
3488#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003489 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003491 if (buf->b_sfname != buf->b_ffname)
3492 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 buf->b_ffname = ffname;
3495 buf->b_sfname = sfname;
3496 }
3497 buf->b_fname = buf->b_sfname;
3498#ifdef UNIX
3499 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003500 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 else
3502 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003503 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 buf->b_dev = st.st_dev;
3505 buf->b_ino = st.st_ino;
3506 }
3507#endif
3508
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510
3511 buf_name_changed(buf);
3512 return OK;
3513}
3514
3515/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003516 * Crude way of changing the name of a buffer. Use with care!
3517 * The name should be relative to the current directory.
3518 */
3519 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003520buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003521{
3522 buf_T *buf;
3523
3524 buf = buflist_findnr(fnum);
3525 if (buf != NULL)
3526 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003527 if (buf->b_sfname != buf->b_ffname)
3528 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003529 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003530 buf->b_ffname = vim_strsave(name);
3531 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003532 // Allocate ffname and expand into full path. Also resolves .lnk
3533 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003534 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003535 buf->b_fname = buf->b_sfname;
3536 }
3537}
3538
3539/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 * Take care of what needs to be done when the name of buffer "buf" has
3541 * changed.
3542 */
3543 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003544buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545{
3546 /*
3547 * If the file name changed, also change the name of the swapfile
3548 */
3549 if (buf->b_ml.ml_mfp != NULL)
3550 ml_setname(buf);
3551
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003552#ifdef FEAT_TERMINAL
3553 if (buf->b_term != NULL)
3554 term_clear_status_text(buf->b_term);
3555#endif
3556
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003558 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003559 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003560 status_redraw_all(); // status lines need to be redrawn
3561 fmarks_check_names(buf); // check named file marks
3562 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563}
3564
3565/*
3566 * set alternate file name for current window
3567 *
3568 * Used by do_one_cmd(), do_write() and do_ecmd().
3569 * Return the buffer.
3570 */
3571 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003572setaltfname(
3573 char_u *ffname,
3574 char_u *sfname,
3575 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576{
3577 buf_T *buf;
3578
Bram Moolenaarc667da52019-11-30 20:52:27 +01003579 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003581 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 curwin->w_alt_fnum = buf->b_fnum;
3583 return buf;
3584}
3585
3586/*
3587 * Get alternate file name for current window.
3588 * Return NULL if there isn't any, and give error message if requested.
3589 */
3590 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003591getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003592 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593{
3594 char_u *fname;
3595 linenr_T dummy;
3596
3597 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3598 {
3599 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003600 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 return NULL;
3602 }
3603 return fname;
3604}
3605
3606/*
3607 * Add a file name to the buflist and return its number.
3608 * Uses same flags as buflist_new(), except BLN_DUMMY.
3609 *
3610 * used by qf_init(), main() and doarglist()
3611 */
3612 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003613buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614{
3615 buf_T *buf;
3616
3617 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3618 if (buf != NULL)
3619 return buf->b_fnum;
3620 return 0;
3621}
3622
3623#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3624/*
3625 * Adjust slashes in file names. Called after 'shellslash' was set.
3626 */
3627 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003628buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629{
3630 buf_T *bp;
3631
Bram Moolenaar29323592016-07-24 22:04:11 +02003632 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 {
3634 if (bp->b_ffname != NULL)
3635 slash_adjust(bp->b_ffname);
3636 if (bp->b_sfname != NULL)
3637 slash_adjust(bp->b_sfname);
3638 }
3639}
3640#endif
3641
3642/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003643 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 * Also save the local window option values.
3645 */
3646 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003647buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003649 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650}
3651
3652/*
3653 * Return TRUE if 'ffname' is not the same file as current file.
3654 * Fname must have a full path (expanded by mch_FullName()).
3655 */
3656 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003657otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658{
3659 return otherfile_buf(curbuf, ffname
3660#ifdef UNIX
3661 , NULL
3662#endif
3663 );
3664}
3665
3666 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003667otherfile_buf(
3668 buf_T *buf,
3669 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003671 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003673 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003675 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3677 return TRUE;
3678 if (fnamecmp(ffname, buf->b_ffname) == 0)
3679 return FALSE;
3680#ifdef UNIX
3681 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003682 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683
Bram Moolenaarc667da52019-11-30 20:52:27 +01003684 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 if (stp == NULL)
3686 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003687 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 st.st_dev = (dev_T)-1;
3689 stp = &st;
3690 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003691 // Use dev/ino to check if the files are the same, even when the names
3692 // are different (possible with links). Still need to compare the
3693 // name above, for when the file doesn't exist yet.
3694 // Problem: The dev/ino changes when a file is deleted (and created
3695 // again) and remains the same when renamed/moved. We don't want to
3696 // mch_stat() each buffer each time, that would be too slow. Get the
3697 // dev/ino again when they appear to match, but not when they appear
3698 // to be different: Could skip a buffer when it's actually the same
3699 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 if (buf_same_ino(buf, stp))
3701 {
3702 buf_setino(buf);
3703 if (buf_same_ino(buf, stp))
3704 return FALSE;
3705 }
3706 }
3707#endif
3708 return TRUE;
3709}
3710
3711#if defined(UNIX) || defined(PROTO)
3712/*
3713 * Set inode and device number for a buffer.
3714 * Must always be called when b_fname is changed!.
3715 */
3716 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003717buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003719 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720
3721 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3722 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003723 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 buf->b_dev = st.st_dev;
3725 buf->b_ino = st.st_ino;
3726 }
3727 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003728 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729}
3730
3731/*
3732 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3733 */
3734 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003735buf_same_ino(
3736 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003737 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003739 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 && stp->st_dev == buf->b_dev
3741 && stp->st_ino == buf->b_ino);
3742}
3743#endif
3744
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003745/*
3746 * Print info about the current buffer.
3747 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003749fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003750 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003751 int shorthelp,
3752 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753{
3754 char_u *name;
3755 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003756 char *p;
3757 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003758 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003760 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 if (buffer == NULL)
3762 return;
3763
Bram Moolenaarc667da52019-11-30 20:52:27 +01003764 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003766 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 p = buffer + STRLEN(buffer);
3768 }
3769 else
3770 p = buffer;
3771
3772 *p++ = '"';
3773 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003774 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 else
3776 {
3777 if (!fullname && curbuf->b_fname != NULL)
3778 name = curbuf->b_fname;
3779 else
3780 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003781 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 (int)(IOSIZE - (p - buffer)), TRUE);
3783 }
3784
Bram Moolenaar32526b32019-01-19 17:43:09 +01003785 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 curbufIsChanged() ? (shortmess(SHM_MOD)
3787 ? " [+]" : _(" [Modified]")) : " ",
3788 (curbuf->b_flags & BF_NOTEDITED)
3789#ifdef FEAT_QUICKFIX
3790 && !bt_dontwrite(curbuf)
3791#endif
3792 ? _("[Not edited]") : "",
3793 (curbuf->b_flags & BF_NEW)
3794#ifdef FEAT_QUICKFIX
3795 && !bt_dontwrite(curbuf)
3796#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003797 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003799 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 : _("[readonly]")) : "",
3801 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3802 || curbuf->b_p_ro) ?
3803 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003804 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3805 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 if (curwin->w_cursor.lnum > 1000000L)
3807 n = (int)(((long)curwin->w_cursor.lnum) /
3808 ((long)curbuf->b_ml.ml_line_count / 100L));
3809 else
3810 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3811 (long)curbuf->b_ml.ml_line_count);
3812 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003813 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814#ifdef FEAT_CMDL_INFO
3815 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003816 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003817 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003818 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3819 curbuf->b_ml.ml_line_count),
3820 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821#endif
3822 else
3823 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003824 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 _("line %ld of %ld --%d%%-- col "),
3826 (long)curwin->w_cursor.lnum,
3827 (long)curbuf->b_ml.ml_line_count,
3828 n);
3829 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003830 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003831 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3833 }
3834
Bram Moolenaar32526b32019-01-19 17:43:09 +01003835 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3836 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837
3838 if (dont_truncate)
3839 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003840 // Temporarily set msg_scroll to avoid the message being truncated.
3841 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 msg_start();
3843 n = msg_scroll;
3844 msg_scroll = TRUE;
3845 msg(buffer);
3846 msg_scroll = n;
3847 }
3848 else
3849 {
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003850 p = msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003852 // Need to repeat the message after redrawing when:
3853 // - When restart_edit is set (otherwise there will be a delay
3854 // before redrawing).
3855 // - When the screen was scrolled but there is no wait-return
3856 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003857 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 }
3859
3860 vim_free(buffer);
3861}
3862
3863 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003864col_print(
3865 char_u *buf,
3866 size_t buflen,
3867 int col,
3868 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869{
3870 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003871 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003873 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874}
3875
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876static char_u *lasttitle = NULL;
3877static char_u *lasticon = NULL;
3878
Bram Moolenaar84a93082018-06-16 22:58:15 +02003879/*
3880 * Put the file name in the title bar and icon of the window.
3881 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003883maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884{
3885 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003886 char_u *title_str = NULL;
3887 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 int maxlen = 0;
3889 int len;
3890 int mustset;
3891 char_u buf[IOSIZE];
3892 int off;
3893
3894 if (!redrawing())
3895 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003896 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 need_maketitle = TRUE;
3898 return;
3899 }
3900
3901 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003902 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003903 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904
3905 if (p_title)
3906 {
3907 if (p_titlelen > 0)
3908 {
3909 maxlen = p_titlelen * Columns / 100;
3910 if (maxlen < 10)
3911 maxlen = 10;
3912 }
3913
Bram Moolenaar84a93082018-06-16 22:58:15 +02003914 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 if (*p_titlestring != NUL)
3916 {
3917#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003918 if (stl_syntax & STL_IN_TITLE)
3919 {
3920 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003921 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003922
3923# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003924 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003925# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003926 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003927 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003928 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003929 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003930 set_string_option_direct((char_u *)"titlestring", -1,
3931 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 else
3934#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003935 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 }
3937 else
3938 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003939 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940
Bram Moolenaar2c666692012-09-05 13:30:40 +02003941#define SPACE_FOR_FNAME (IOSIZE - 100)
3942#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003943#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003945 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003946#ifdef FEAT_TERMINAL
3947 else if (curbuf->b_term != NULL)
3948 {
3949 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3950 SPACE_FOR_FNAME);
3951 }
3952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 else
3954 {
3955 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003956 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 }
3959
Bram Moolenaar21554412017-07-24 21:44:43 +02003960#ifdef FEAT_TERMINAL
3961 if (curbuf->b_term == NULL)
3962#endif
3963 switch (bufIsChanged(curbuf)
3964 + (curbuf->b_p_ro * 2)
3965 + (!curbuf->b_p_ma * 4))
3966 {
3967 case 1: STRCAT(buf, " +"); break;
3968 case 2: STRCAT(buf, " ="); break;
3969 case 3: STRCAT(buf, " =+"); break;
3970 case 4:
3971 case 6: STRCAT(buf, " -"); break;
3972 case 5:
3973 case 7: STRCAT(buf, " -+"); break;
3974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975
Bram Moolenaar21554412017-07-24 21:44:43 +02003976 if (curbuf->b_fname != NULL
3977#ifdef FEAT_TERMINAL
3978 && curbuf->b_term == NULL
3979#endif
3980 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003982 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 off = (int)STRLEN(buf);
3984 buf[off++] = ' ';
3985 buf[off++] = '(';
3986 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003987 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003989 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 if (isalpha(buf[off]) && buf[off + 1] == ':')
3991 off += 2;
3992#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003993 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003994 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003996 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003997 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003998 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003999 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02004000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004003
Bram Moolenaarc667da52019-11-30 20:52:27 +01004004 // Translate unprintable chars and concatenate. Keep some
4005 // room for the server name. When there is no room (very long
4006 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02004007 if (off < SPACE_FOR_DIR)
4008 {
4009 p = transstr(buf + off);
4010 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
4011 vim_free(p);
4012 }
4013 else
4014 {
4015 vim_strncpy(buf + off, (char_u *)"...",
4016 (size_t)(SPACE_FOR_ARGNR - off));
4017 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 STRCAT(buf, ")");
4019 }
4020
Bram Moolenaar2c666692012-09-05 13:30:40 +02004021 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022
4023#if defined(FEAT_CLIENTSERVER)
4024 if (serverName != NULL)
4025 {
4026 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02004027 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 }
4029 else
4030#endif
4031 STRCAT(buf, " - VIM");
4032
4033 if (maxlen > 0)
4034 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004035 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01004036 if (vim_strsize(buf) > maxlen)
4037 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 }
4039 }
4040 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004041 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
4043 if (p_icon)
4044 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02004045 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 if (*p_iconstring != NUL)
4047 {
4048#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00004049 if (stl_syntax & STL_IN_ICON)
4050 {
4051 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01004052 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004053
4054# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00004055 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004056# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004057 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004058 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004059 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01004060 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00004061 set_string_option_direct((char_u *)"iconstring", -1,
4062 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 else
4065#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004066 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 }
4068 else
4069 {
4070 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004071 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004072 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004073 p = gettail(curbuf->b_ffname);
4074 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004075 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004076 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 if (len > 100)
4078 {
4079 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004081 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004082 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004084 STRCPY(icon_str, p);
4085 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 }
4087 }
4088
Bram Moolenaar84a93082018-06-16 22:58:15 +02004089 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090
4091 if (mustset)
4092 resettitle();
4093}
4094
4095/*
4096 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4097 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004098 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 */
4100 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004101value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102{
4103 if ((str == NULL) != (*last == NULL)
4104 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4105 {
4106 vim_free(*last);
4107 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004108 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004110 mch_restore_title(
4111 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004114 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004116 return TRUE;
4117 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 }
4119 return FALSE;
4120}
4121
4122/*
4123 * Put current window title back (used after calling a shell)
4124 */
4125 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004126resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127{
4128 mch_settitle(lasttitle, lasticon);
4129}
Bram Moolenaarea408852005-06-25 22:49:46 +00004130
4131# if defined(EXITFREE) || defined(PROTO)
4132 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004133free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004134{
4135 vim_free(lasttitle);
4136 vim_free(lasticon);
4137}
4138# endif
4139
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004141#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004142
4143/*
4144 * Used for building in the status line.
4145 */
4146typedef struct
4147{
4148 char_u *stl_start;
4149 int stl_minwid;
4150 int stl_maxwid;
4151 enum {
4152 Normal,
4153 Empty,
4154 Group,
4155 Middle,
4156 Highlight,
4157 TabPage,
4158 Trunc
4159 } stl_type;
4160} stl_item_T;
4161
4162static size_t stl_items_len = 20; // Initial value, grows as needed.
4163static stl_item_T *stl_items = NULL;
4164static int *stl_groupitem = NULL;
4165static stl_hlrec_T *stl_hltab = NULL;
4166static stl_hlrec_T *stl_tabtab = NULL;
4167
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004169 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 * Return length of string in screen cells.
4171 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004172 * Normally works for window "wp", except when working for 'tabline' then it
4173 * is "curwin".
4174 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 * Items are drawn interspersed with the text that surrounds it
4176 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4177 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4178 *
4179 * If maxwidth is not zero, the string will be filled at any middle marker
4180 * or truncated if too long, fillchar is used for all whitespace.
4181 */
4182 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004183build_stl_str_hl(
4184 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004185 char_u *out, // buffer to write into != NameBuff
4186 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004187 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004188 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004189 int fillchar,
4190 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004191 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4192 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193{
Bram Moolenaar10772302019-01-20 18:25:54 +01004194 linenr_T lnum;
4195 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 char_u *p;
4197 char_u *s;
4198 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004199 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004201 win_T *save_curwin;
4202 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004203 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204#endif
4205 int empty_line;
4206 colnr_T virtcol;
4207 long l;
4208 long n;
4209 int prevchar_isflag;
4210 int prevchar_isitem;
4211 int itemisflag;
4212 int fillable;
4213 char_u *str;
4214 long num;
4215 int width;
4216 int itemcnt;
4217 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004218 int group_end_userhl;
4219 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004221#ifdef FEAT_EVAL
4222 int evaldepth;
4223#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 int minwid;
4225 int maxwid;
4226 int zeropad;
4227 char_u base;
4228 char_u opt;
4229#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004230 char_u buf_tmp[TMPLEN];
4231 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004232 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004233 stl_hlrec_T *sp;
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004234 int save_redraw_not_allowed = redraw_not_allowed;
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00004235 int save_KeyTyped = KeyTyped;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004236
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004237 // When inside update_screen() we do not want redrawing a statusline,
4238 // ruler, title, etc. to trigger another redraw, it may cause an endless
4239 // loop.
4240 if (updating_screen)
4241 redraw_not_allowed = TRUE;
4242
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004243 if (stl_items == NULL)
4244 {
4245 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4246 stl_groupitem = ALLOC_MULT(int, stl_items_len);
Brandon Richardsona493b652022-02-19 11:45:03 +00004247
4248 // Allocate one more, because the last element is used to indicate the
4249 // end of the list.
4250 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
4251 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004252 }
4253
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004254#ifdef FEAT_EVAL
4255 /*
4256 * When the format starts with "%!" then evaluate it as an expression and
4257 * use the result as the actual format string.
4258 */
4259 if (fmt[0] == '%' && fmt[1] == '!')
4260 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004261 typval_T tv;
4262
4263 tv.v_type = VAR_NUMBER;
4264 tv.vval.v_number = wp->w_id;
4265 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4266
Bram Moolenaar9530b582022-01-22 13:39:08 +00004267 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004268 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004269 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004270
4271 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004272 }
4273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
4275 if (fillchar == 0)
4276 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004277
Bram Moolenaar10772302019-01-20 18:25:54 +01004278 // The cursor in windows other than the current one isn't always
4279 // up-to-date, esp. because of autocommands and timers.
4280 lnum = wp->w_cursor.lnum;
4281 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4282 {
4283 lnum = wp->w_buffer->b_ml.ml_line_count;
4284 wp->w_cursor.lnum = lnum;
4285 }
4286
4287 // Get line & check if empty (cursorpos will show "0-1"). Note that
4288 // p will become invalid when getting another buffer line.
4289 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004290 empty_line = (*p == NUL);
4291
Bram Moolenaar10772302019-01-20 18:25:54 +01004292 // Get the byte value now, in case we need it below. This is more efficient
4293 // than making a copy of the line.
4294 len = STRLEN(p);
4295 if (wp->w_cursor.col > (colnr_T)len)
4296 {
4297 // Line may have changed since checking the cursor column, or the lnum
4298 // was adjusted above.
4299 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004300 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004301 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004302 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004303 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004304 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305
4306 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004307#ifdef FEAT_EVAL
4308 evaldepth = 0;
4309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 p = out;
4311 curitem = 0;
4312 prevchar_isflag = TRUE;
4313 prevchar_isitem = FALSE;
zeertzjq122dea72022-07-27 15:48:45 +01004314 for (s = usefmt; *s != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004316 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004317 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004318 size_t new_len = stl_items_len * 3 / 2;
4319 stl_item_T *new_items;
4320 int *new_groupitem;
4321 stl_hlrec_T *new_hlrec;
4322
4323 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4324 if (new_items == NULL)
4325 break;
4326 stl_items = new_items;
4327 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4328 if (new_groupitem == NULL)
4329 break;
4330 stl_groupitem = new_groupitem;
Brandon Richardsona493b652022-02-19 11:45:03 +00004331 new_hlrec = vim_realloc(stl_hltab,
4332 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004333 if (new_hlrec == NULL)
4334 break;
4335 stl_hltab = new_hlrec;
Brandon Richardsona493b652022-02-19 11:45:03 +00004336 new_hlrec = vim_realloc(stl_tabtab,
4337 sizeof(stl_hlrec_T) * (new_len + 1));
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004338 if (new_hlrec == NULL)
4339 break;
4340 stl_tabtab = new_hlrec;
4341 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004342 }
4343
zeertzjq122dea72022-07-27 15:48:45 +01004344 if (*s != '%')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 prevchar_isflag = prevchar_isitem = FALSE;
4346
4347 /*
4348 * Handle up to the next '%' or the end.
4349 */
4350 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4351 *p++ = *s++;
4352 if (*s == NUL || p + 1 >= out + outlen)
4353 break;
4354
4355 /*
4356 * Handle one '%' item.
4357 */
4358 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004359 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004360 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 if (*s == '%')
4362 {
4363 if (p + 1 >= out + outlen)
4364 break;
4365 *p++ = *s++;
4366 prevchar_isflag = prevchar_isitem = FALSE;
4367 continue;
4368 }
4369 if (*s == STL_MIDDLEMARK)
4370 {
4371 s++;
4372 if (groupdepth > 0)
4373 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004374 stl_items[curitem].stl_type = Middle;
4375 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 continue;
4377 }
4378 if (*s == STL_TRUNCMARK)
4379 {
4380 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004381 stl_items[curitem].stl_type = Trunc;
4382 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 continue;
4384 }
4385 if (*s == ')')
4386 {
4387 s++;
4388 if (groupdepth < 1)
4389 continue;
4390 groupdepth--;
4391
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004392 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 *p = NUL;
4394 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004395 if (curitem > stl_groupitem[groupdepth] + 1
4396 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004398 // remove group if all items are empty and highlight group
4399 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004400 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004401 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004402 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004403 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004404 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004405 group_start_userhl = group_end_userhl =
4406 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004407 break;
4408 }
4409 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004410 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004411 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004412 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004414 if (stl_items[n].stl_type == Highlight)
4415 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004416 }
4417 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004419 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 p = t;
4421 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004422 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004423 {
4424 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004425 if (stl_items[n].stl_type == Highlight)
4426 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004427 // adjust the start position of TabPage to the next
4428 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004429 if (stl_items[n].stl_type == TabPage)
4430 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004431 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 }
4433 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004434 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004436 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 if (has_mbyte)
4438 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004439 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004441 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 {
4443 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004444 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 }
4446 }
4447 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004448 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4449 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450
4451 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004452 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004454
4455 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004456 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004457 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458
Bram Moolenaarc667da52019-11-30 20:52:27 +01004459 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004460 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 {
LemonBoy57ff5262022-05-09 21:03:47 +01004462 // Minus one for the leading '<' added above.
4463 stl_items[l].stl_start -= n - 1;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004464 if (stl_items[l].stl_start < t)
4465 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 }
4467 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004468 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004470 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004471 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 if (n < 0)
4473 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004474 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 n = 0 - n;
4476 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004477 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 }
4479 else
4480 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004481 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004482 l = (n - l) * MB_CHAR2LEN(fillchar);
4483 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004485 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004487 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4488 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004490 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 }
4492 }
4493 continue;
4494 }
4495 minwid = 0;
4496 maxwid = 9999;
4497 zeropad = FALSE;
4498 l = 1;
4499 if (*s == '0')
4500 {
4501 s++;
4502 zeropad = TRUE;
4503 }
4504 if (*s == '-')
4505 {
4506 s++;
4507 l = -1;
4508 }
4509 if (VIM_ISDIGIT(*s))
4510 {
4511 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004512 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 minwid = 0;
4514 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004515 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004517 stl_items[curitem].stl_type = Highlight;
4518 stl_items[curitem].stl_start = p;
4519 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 s++;
4521 curitem++;
4522 continue;
4523 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004524 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4525 {
4526 if (*s == STL_TABCLOSENR)
4527 {
4528 if (minwid == 0)
4529 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004530 // %X ends the close label, go back to the previously
4531 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004532 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004533 if (stl_items[n].stl_type == TabPage
4534 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004535 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004536 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004537 break;
4538 }
4539 }
4540 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004541 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004542 minwid = - minwid;
4543 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004544 stl_items[curitem].stl_type = TabPage;
4545 stl_items[curitem].stl_start = p;
4546 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004547 s++;
4548 curitem++;
4549 continue;
4550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 if (*s == '.')
4552 {
4553 s++;
4554 if (VIM_ISDIGIT(*s))
4555 {
4556 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004557 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 maxwid = 50;
4559 }
4560 }
4561 minwid = (minwid > 50 ? 50 : minwid) * l;
4562 if (*s == '(')
4563 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004564 stl_groupitem[groupdepth++] = curitem;
4565 stl_items[curitem].stl_type = Group;
4566 stl_items[curitem].stl_start = p;
4567 stl_items[curitem].stl_minwid = minwid;
4568 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 s++;
4570 curitem++;
4571 continue;
4572 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004573#ifdef FEAT_EVAL
4574 // Denotes end of expanded %{} block
4575 if (*s == '}' && evaldepth > 0)
4576 {
4577 s++;
4578 evaldepth--;
4579 continue;
4580 }
4581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 if (vim_strchr(STL_ALL, *s) == NULL)
4583 {
4584 s++;
4585 continue;
4586 }
4587 opt = *s++;
4588
Bram Moolenaarc667da52019-11-30 20:52:27 +01004589 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 base = 'D';
4591 itemisflag = FALSE;
4592 fillable = TRUE;
4593 num = -1;
4594 str = NULL;
4595 switch (opt)
4596 {
4597 case STL_FILEPATH:
4598 case STL_FULLPATH:
4599 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004600 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004602 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 else
4604 {
4605 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004606 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4608 }
4609 trans_characters(NameBuff, MAXPATHL);
4610 if (opt != STL_FILENAME)
4611 str = NameBuff;
4612 else
4613 str = gettail(NameBuff);
4614 break;
4615
Bram Moolenaarc667da52019-11-30 20:52:27 +01004616 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004617 {
4618#ifdef FEAT_EVAL
4619 char_u *block_start = s - 1;
4620#endif
4621 int reevaluate = (*s == '%');
4622
4623 if (reevaluate)
4624 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 itemisflag = TRUE;
4626 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004627 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4628 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004630 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 break;
4632 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004633 if (reevaluate)
4634 p[-1] = 0; // remove the % at the end of %{% expr %}
4635 else
4636 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004639 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4640 "%d", curbuf->b_fnum);
4641 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4642 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4643 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004645 save_curbuf = curbuf;
4646 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004647 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 curwin = wp;
4649 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004650 // Visual mode is only valid in the current window.
4651 if (curwin != save_curwin)
4652 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653
Bram Moolenaar9530b582022-01-22 13:39:08 +00004654 str = eval_to_string_safe(p, use_sandbox, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004656 curwin = save_curwin;
4657 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004658 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004659 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004660 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
4662 if (str != NULL && *str != 0)
4663 {
4664 if (*skipdigits(str) == NUL)
4665 {
4666 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004667 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 itemisflag = FALSE;
4669 }
4670 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004671
4672 // If the output of the expression needs to be evaluated
4673 // replace the %{} block with the result of evaluation
4674 if (reevaluate && str != NULL && *str != 0
4675 && strchr((const char *)str, '%') != NULL
4676 && evaldepth < MAX_STL_EVAL_DEPTH)
4677 {
4678 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4679 size_t str_length = strlen((const char *)str);
4680 size_t fmt_length = strlen((const char *)s);
4681 size_t new_fmt_len = parsed_usefmt
4682 + str_length + fmt_length + 3;
4683 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4684 char_u *new_fmt_p = new_fmt;
4685
4686 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4687 + parsed_usefmt;
4688 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4689 + str_length;
4690 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4691 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4692 + fmt_length;
4693 *new_fmt_p = 0;
4694 new_fmt_p = NULL;
4695
4696 if (usefmt != fmt)
4697 vim_free(usefmt);
4698 VIM_CLEAR(str);
4699 usefmt = new_fmt;
4700 s = usefmt + parsed_usefmt;
4701 evaldepth++;
4702 continue;
4703 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704#endif
4705 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004706 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 case STL_LINE:
4708 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4709 ? 0L : (long)(wp->w_cursor.lnum);
4710 break;
4711
4712 case STL_NUMLINES:
4713 num = wp->w_buffer->b_ml.ml_line_count;
4714 break;
4715
4716 case STL_COLUMN:
Bram Moolenaar24959102022-05-07 20:01:16 +01004717 num = (State & MODE_INSERT) == 0 && empty_line
4718 ? 0 : (int)wp->w_cursor.col + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 break;
4720
4721 case STL_VIRTCOL:
4722 case STL_VIRTCOL_ALT:
zeertzjq0f112052022-01-14 20:11:38 +00004723 virtcol = wp->w_virtcol + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004724 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 if (opt == STL_VIRTCOL_ALT
Bram Moolenaar24959102022-05-07 20:01:16 +01004726 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0
4727 && empty_line ? 0 : (int)wp->w_cursor.col + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 break;
4729 num = (long)virtcol;
4730 break;
4731
4732 case STL_PERCENTAGE:
4733 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4734 (long)wp->w_buffer->b_ml.ml_line_count);
4735 break;
4736
4737 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004738 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004739 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 break;
4741
4742 case STL_ARGLISTSTAT:
4743 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004744 buf_tmp[0] = 0;
4745 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4746 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 break;
4748
4749 case STL_KEYMAP:
4750 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004751 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4752 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 break;
4754 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004755#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004756 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757#else
4758 num = 0;
4759#endif
4760 break;
4761
4762 case STL_BUFNO:
4763 num = wp->w_buffer->b_fnum;
4764 break;
4765
4766 case STL_OFFSET_X:
4767 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004768 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 case STL_OFFSET:
4770#ifdef FEAT_BYTEOFF
4771 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
Bram Moolenaar24959102022-05-07 20:01:16 +01004772 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0
4773 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line
4774 ? 0 : (int)wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775#endif
4776 break;
4777
4778 case STL_BYTEVAL_X:
4779 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004780 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004782 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 if (num == NL)
4784 num = 0;
4785 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4786 num = NL;
4787 break;
4788
4789 case STL_ROFLAG:
4790 case STL_ROFLAG_ALT:
4791 itemisflag = TRUE;
4792 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004793 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 break;
4795
4796 case STL_HELPFLAG:
4797 case STL_HELPFLAG_ALT:
4798 itemisflag = TRUE;
4799 if (wp->w_buffer->b_help)
4800 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004801 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 break;
4803
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 case STL_FILETYPE:
4805 if (*wp->w_buffer->b_p_ft != NUL
4806 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4807 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004808 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004809 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004810 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 }
4812 break;
4813
4814 case STL_FILETYPE_ALT:
4815 itemisflag = TRUE;
4816 if (*wp->w_buffer->b_p_ft != NUL
4817 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4818 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004819 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004820 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004821 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004823 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 }
4825 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826
Bram Moolenaar4033c552017-09-16 20:54:51 +02004827#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 case STL_PREVIEWFLAG:
4829 case STL_PREVIEWFLAG_ALT:
4830 itemisflag = TRUE;
4831 if (wp->w_p_pvw)
4832 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4833 : _("[Preview]"));
4834 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004835
4836 case STL_QUICKFIX:
4837 if (bt_quickfix(wp->w_buffer))
4838 str = (char_u *)(wp->w_llist_ref
4839 ? _(msg_loclist)
4840 : _(msg_qflist));
4841 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842#endif
4843
4844 case STL_MODIFIED:
4845 case STL_MODIFIED_ALT:
4846 itemisflag = TRUE;
4847 switch ((opt == STL_MODIFIED_ALT)
4848 + bufIsChanged(wp->w_buffer) * 2
4849 + (!wp->w_buffer->b_p_ma) * 4)
4850 {
4851 case 2: str = (char_u *)"[+]"; break;
4852 case 3: str = (char_u *)",+"; break;
4853 case 4: str = (char_u *)"[-]"; break;
4854 case 5: str = (char_u *)",-"; break;
4855 case 6: str = (char_u *)"[+-]"; break;
4856 case 7: str = (char_u *)",+-"; break;
4857 }
4858 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004859
4860 case STL_HIGHLIGHT:
4861 t = s;
4862 while (*s != '#' && *s != NUL)
4863 ++s;
4864 if (*s == '#')
4865 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004866 stl_items[curitem].stl_type = Highlight;
4867 stl_items[curitem].stl_start = p;
4868 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004869 curitem++;
4870 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004871 if (*s != NUL)
4872 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004873 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 }
4875
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004876 stl_items[curitem].stl_start = p;
4877 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 if (str != NULL && *str)
4879 {
4880 t = str;
4881 if (itemisflag)
4882 {
4883 if ((t[0] && t[1])
4884 && ((!prevchar_isitem && *t == ',')
4885 || (prevchar_isflag && *t == ' ')))
4886 t++;
4887 prevchar_isflag = TRUE;
4888 }
4889 l = vim_strsize(t);
4890 if (l > 0)
4891 prevchar_isitem = TRUE;
4892 if (l > maxwid)
4893 {
4894 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 if (has_mbyte)
4896 {
4897 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004898 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 }
4900 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 l -= byte2cells(*t++);
4902 if (p + 1 >= out + outlen)
4903 break;
4904 *p++ = '<';
4905 }
4906 if (minwid > 0)
4907 {
4908 for (; l < minwid && p + 1 < out + outlen; l++)
4909 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004910 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4912 *p++ = ' ';
4913 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004914 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 }
4916 minwid = 0;
4917 }
4918 else
4919 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004920 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004922 // Change a space by fillchar, unless fillchar is '-' and a
4923 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004924 if (fillable && *t == ' '
4925 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4926 MB_CHAR2BYTES(fillchar, p);
4927 else
4928 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 }
4930 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004931 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 }
4933 else if (num >= 0)
4934 {
4935 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4936 char_u nstr[20];
4937
4938 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004939 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 prevchar_isitem = TRUE;
4941 t = nstr;
4942 if (opt == STL_VIRTCOL_ALT)
4943 {
4944 *t++ = '-';
4945 minwid--;
4946 }
4947 *t++ = '%';
4948 if (zeropad)
4949 *t++ = '0';
4950 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004951 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 *t = 0;
4953
4954 for (n = num, l = 1; n >= nbase; n /= nbase)
4955 l++;
4956 if (opt == STL_VIRTCOL_ALT)
4957 l++;
4958 if (l > maxwid)
4959 {
4960 l += 2;
4961 n = l - maxwid;
4962 while (l-- > maxwid)
4963 num /= nbase;
4964 *t++ = '>';
4965 *t++ = '%';
4966 *t = t[-3];
4967 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004968 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4969 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 }
4971 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004972 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4973 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 p += STRLEN(p);
4975 }
4976 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004977 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01004979 if (num >= 0 || (!itemisflag && str != NULL && *str != NUL))
4980 prevchar_isflag = FALSE; // Item not NULL, but not a flag
4981 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 if (opt == STL_VIM_EXPR)
4983 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 curitem++;
4985 }
4986 *p = NUL;
4987 itemcnt = curitem;
4988
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004989#ifdef FEAT_EVAL
4990 if (usefmt != fmt)
4991 vim_free(usefmt);
4992#endif
4993
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 width = vim_strsize(out);
4995 if (maxwidth > 0 && width > maxwidth)
4996 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004997 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 l = 0;
4999 if (itemcnt == 0)
5000 s = out;
5001 else
5002 {
5003 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005004 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005006 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005007 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 break;
5009 }
5010 if (l == itemcnt)
5011 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005012 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005013 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 l = 0;
5015 }
5016 }
5017
5018 if (width - vim_strsize(s) >= maxwidth)
5019 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005020 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 if (has_mbyte)
5022 {
5023 s = out;
5024 width = 0;
5025 for (;;)
5026 {
5027 width += ptr2cells(s);
5028 if (width >= maxwidth)
5029 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005030 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005032 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005034 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 }
5036 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 s = out + maxwidth - 1;
5038 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005039 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 break;
5041 itemcnt = l;
5042 *s++ = '>';
5043 *s = 0;
5044 }
5045 else
5046 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 if (has_mbyte)
5048 {
5049 n = 0;
5050 while (width >= maxwidth)
5051 {
5052 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005053 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 }
5055 }
5056 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 n = width - maxwidth + 1;
5058 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00005059 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 *s = '<';
5061
Bram Moolenaarc667da52019-11-30 20:52:27 +01005062 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 while (++width < maxwidth)
5064 {
5065 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005066 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 *s = NUL;
5068 }
5069
Bram Moolenaarc667da52019-11-30 20:52:27 +01005070 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 for (; l < itemcnt; l++)
5072 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005073 if (stl_items[l].stl_start - n >= s)
5074 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005076 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 }
5078 }
5079 width = maxwidth;
5080 }
5081 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5082 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005083 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005085 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 break;
5087 if (l < itemcnt)
5088 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005089 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5090 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005091 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005092 for (s = stl_items[l].stl_start; s < p;)
5093 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005095 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 width = maxwidth;
5097 }
5098 }
5099
Bram Moolenaarc667da52019-11-30 20:52:27 +01005100 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005101 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005103 *hltab = stl_hltab;
5104 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 for (l = 0; l < itemcnt; l++)
5106 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005107 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005109 sp->start = stl_items[l].stl_start;
5110 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005111 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 }
5113 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005114 sp->start = NULL;
5115 sp->userhl = 0;
5116 }
5117
Bram Moolenaarc667da52019-11-30 20:52:27 +01005118 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005119 if (tabtab != NULL)
5120 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005121 *tabtab = stl_tabtab;
5122 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005123 for (l = 0; l < itemcnt; l++)
5124 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005125 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005126 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005127 sp->start = stl_items[l].stl_start;
5128 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005129 sp++;
5130 }
5131 }
5132 sp->start = NULL;
5133 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 }
5135
Bram Moolenaar471c0fa2022-08-22 15:19:16 +01005136 redraw_not_allowed = save_redraw_not_allowed;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005137
Bram Moolenaar0e1f36f2022-02-15 16:17:44 +00005138 // A user function may reset KeyTyped, restore it.
5139 KeyTyped = save_KeyTyped;
5140
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 return width;
5142}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005143#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005145#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5146 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005148 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5149 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 */
5151 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005152get_rel_pos(
5153 win_T *wp,
5154 char_u *buf,
5155 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005157 long above; // number of lines above window
5158 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159
Bram Moolenaarc667da52019-11-30 20:52:27 +01005160 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005161 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 above = wp->w_topline - 1;
5163#ifdef FEAT_DIFF
5164 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005165 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005166 above = 0; // All buffer lines are displayed and there is an
5167 // indication of filler lines, that can be considered
5168 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169#endif
5170 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5171 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005172 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5173 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005175 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005177 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 ? (int)(above / ((above + below) / 100L))
5179 : (int)(above * 100L / (above + below)));
5180}
5181#endif
5182
5183/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005184 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 * Return TRUE if it was appended.
5186 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005187 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005188append_arg_number(
5189 win_T *wp,
5190 char_u *buf,
5191 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005192 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193{
5194 char_u *p;
5195
Bram Moolenaarc667da52019-11-30 20:52:27 +01005196 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 return FALSE;
5198
Bram Moolenaarc667da52019-11-30 20:52:27 +01005199 p = buf + STRLEN(buf); // go to the end of the buffer
5200 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 return FALSE;
5202 *p++ = ' ';
5203 *p++ = '(';
5204 if (add_file)
5205 {
5206 STRCPY(p, "file ");
5207 p += 5;
5208 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005209 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5210 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5212 return TRUE;
5213}
5214
5215/*
5216 * If fname is not a full path, make it a full path.
5217 * Returns pointer to allocated memory (NULL for failure).
5218 */
5219 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005220fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221{
5222 /*
5223 * Force expanding the path always for Unix, because symbolic links may
5224 * mess up the full path name, even though it starts with a '/'.
5225 * Also expand when there is ".." in the file name, try to remove it,
5226 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005227 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 * For MS-Windows also expand names like "longna~1" to "longname".
5229 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005230#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 return FullName_save(fname, TRUE);
5232#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005233 if (!vim_isAbsName(fname)
5234 || strstr((char *)fname, "..") != NULL
5235 || strstr((char *)fname, "//") != NULL
5236# ifdef BACKSLASH_IN_FILENAME
5237 || strstr((char *)fname, "\\\\") != NULL
5238# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005239# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005241# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 )
5243 return FullName_save(fname, FALSE);
5244
5245 fname = vim_strsave(fname);
5246
Bram Moolenaar9b942202007-10-03 12:31:33 +00005247# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005248 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005249 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005250# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251
5252 return fname;
5253#endif
5254}
5255
5256/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005257 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5258 * "*ffname" becomes a pointer to allocated memory (or NULL).
5259 * When resolving a link both "*sfname" and "*ffname" will point to the same
5260 * allocated memory.
5261 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005262 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005265fname_expand(
5266 buf_T *buf UNUSED,
5267 char_u **ffname,
5268 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005270 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005272 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005274 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275
5276#ifdef FEAT_SHORTCUT
5277 if (!buf->b_p_bin)
5278 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005279 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005281 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005282 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005283 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 {
5285 vim_free(*ffname);
5286 *ffname = rfname;
5287 *sfname = rfname;
5288 }
5289 }
5290#endif
5291}
5292
5293/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 * Open a window for a number of buffers.
5295 */
5296 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005297ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298{
5299 buf_T *buf;
5300 win_T *wp, *wpnext;
5301 int split_ret = OK;
5302 int p_ea_save;
5303 int open_wins = 0;
5304 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005305 int count; // Maximum number of windows to open.
5306 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005307 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005308 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309
Bram Moolenaarc667da52019-11-30 20:52:27 +01005310 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 count = 9999;
5312 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005313 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5315 all = FALSE;
5316 else
5317 all = TRUE;
5318
5319 setpcmark();
5320
5321#ifdef FEAT_GUI
5322 need_mouse_correct = TRUE;
5323#endif
5324
5325 /*
5326 * Close superfluous windows (two windows for the same buffer).
5327 * Also close windows that are not full-width.
5328 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005329 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005330 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005331 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005333 tpnext = curtab->tp_next;
5334 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005336 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005337 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005338 || ((cmdmod.cmod_split & WSP_VERT)
5339 ? wp->w_height + wp->w_status_height < Rows - p_ch
5340 - tabline_height()
5341 : wp->w_width != Columns)
5342 || (had_tab > 0 && wp != firstwin))
5343 && !ONE_WINDOW
5344 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5345 && !win_unlisted(wp))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005346 {
Bram Moolenaar6f2465d2022-03-22 18:13:01 +00005347 if (win_close(wp, FALSE) == FAIL)
5348 break;
5349 // Just in case an autocommand does something strange with
5350 // windows: start all over...
5351 wpnext = firstwin;
5352 tpnext = first_tabpage;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005353 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005354 }
5355 else
5356 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005358
Bram Moolenaarc667da52019-11-30 20:52:27 +01005359 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005360 if (had_tab == 0 || tpnext == NULL)
5361 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005362 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 }
5364
5365 /*
5366 * Go through the buffer list. When a buffer doesn't have a window yet,
5367 * open one. Otherwise move the window to the right position.
5368 * Watch out for autocommands that delete buffers or windows!
5369 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005370 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5375 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005376 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5378 continue;
5379
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005380 if (had_tab != 0)
5381 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005382 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005383 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005384 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005385 else
5386 wp = NULL;
5387 }
5388 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005389 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005390 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005391 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005392 if (wp->w_buffer == buf)
5393 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005394 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005395 if (wp != NULL)
5396 win_move_after(wp, curwin);
5397 }
5398
5399 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005401 bufref_T bufref;
5402
5403 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005404
Bram Moolenaarc667da52019-11-30 20:52:27 +01005405 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005407 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5409 ++open_wins;
5410 p_ea = p_ea_save;
5411 if (split_ret == FAIL)
5412 continue;
5413
Bram Moolenaarc667da52019-11-30 20:52:27 +01005414 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005417 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005419 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 break;
5422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 if (swap_exists_action == SEA_QUIT)
5424 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005425#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005426 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005427
Bram Moolenaarc667da52019-11-30 20:52:27 +01005428 // Reset the error/interrupt/exception state here so that
5429 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005430 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005431#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005432
Bram Moolenaarc667da52019-11-30 20:52:27 +01005433 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 win_close(curwin, TRUE);
5435 --open_wins;
5436 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005437 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005438
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005439#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005440 // Restore the error/interrupt/exception state if not
5441 // discarded by a new aborting error, interrupt, or uncaught
5442 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005443 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 }
5446 else
5447 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 }
5449
5450 ui_breakcheck();
5451 if (got_int)
5452 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005453 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 break;
5455 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005456#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005457 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005458 if (aborting())
5459 break;
5460#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005461 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005462 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005463 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005466 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468
5469 /*
5470 * Close superfluous windows.
5471 */
5472 for (wp = lastwin; open_wins > count; )
5473 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005474 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 if (!win_valid(wp))
5477 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005478 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 wp = lastwin;
5480 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005481 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005483 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 --open_wins;
5485 wp = lastwin;
5486 }
5487 else
5488 {
5489 wp = wp->w_prev;
5490 if (wp == NULL)
5491 break;
5492 }
5493 }
5494}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005497static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005498
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499/*
5500 * do_modelines() - process mode lines for the current file
5501 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005502 * "flags" can be:
5503 * OPT_WINONLY only set options local to window
5504 * OPT_NOWIN don't set options local to window
5505 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 * Returns immediately if the "ml" option isn't set.
5507 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005509do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005511 linenr_T lnum;
5512 int nmlines;
5513 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514
5515 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5516 return;
5517
Bram Moolenaarc667da52019-11-30 20:52:27 +01005518 // Disallow recursive entry here. Can happen when executing a modeline
5519 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 if (entered)
5521 return;
5522
5523 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005524 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005526 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 nmlines = 0;
5528
Hu Jialun9dcd3492021-08-28 20:42:50 +02005529 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005531 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 nmlines = 0;
5533 --entered;
5534}
5535
Bram Moolenaarc667da52019-11-30 20:52:27 +01005536#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537
5538/*
5539 * chk_modeline() - check a single line for a mode string
5540 * Return FAIL if an error encountered.
5541 */
5542 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005543chk_modeline(
5544 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005545 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546{
5547 char_u *s;
5548 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005549 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 int prev;
5551 int vers;
5552 int end;
5553 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005554 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005555
Bram Moolenaare31ee862020-01-07 20:59:34 +01005556 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557
5558 prev = -1;
5559 for (s = ml_get(lnum); *s != NUL; ++s)
5560 {
5561 if (prev == -1 || vim_isspace(prev))
5562 {
5563 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5564 || STRNCMP(s, "vi:", (size_t)3) == 0)
5565 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005566 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005567 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 {
5569 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5570 e = s + 4;
5571 else
5572 e = s + 3;
5573 vers = getdigits(&e);
5574 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005575 && (s[0] != 'V'
5576 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 && (s[3] == ':'
5578 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5579 || (VIM_VERSION_100 < vers && s[3] == '<')
5580 || (VIM_VERSION_100 > vers && s[3] == '>')
5581 || (VIM_VERSION_100 == vers && s[3] == '=')))
5582 break;
5583 }
5584 }
5585 prev = *s;
5586 }
5587
5588 if (*s)
5589 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005590 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 ++s;
5592 while (s[-1] != ':');
5593
Bram Moolenaarc667da52019-11-30 20:52:27 +01005594 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 if (linecopy == NULL)
5596 return FAIL;
5597
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005598 // prepare for emsg()
5599 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005600 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601
5602 end = FALSE;
5603 while (end == FALSE)
5604 {
5605 s = skipwhite(s);
5606 if (*s == NUL)
5607 break;
5608
5609 /*
5610 * Find end of set command: ':' or end of line.
5611 * Skip over "\:", replacing it with ":".
5612 */
5613 for (e = s; *e != ':' && *e != NUL; ++e)
5614 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005615 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 if (*e == NUL)
5617 end = TRUE;
5618
5619 /*
5620 * If there is a "set" command, require a terminating ':' and
5621 * ignore the stuff after the ':'.
5622 * "vi:set opt opt opt: foo" -- foo not interpreted
5623 * "vi:opt opt opt: foo" -- foo interpreted
5624 * Accept "se" for compatibility with Elvis.
5625 */
5626 if (STRNCMP(s, "set ", (size_t)4) == 0
5627 || STRNCMP(s, "se ", (size_t)3) == 0)
5628 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005629 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 break;
5631 end = TRUE;
5632 s = vim_strchr(s, ' ') + 1;
5633 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005634 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635
Bram Moolenaarc667da52019-11-30 20:52:27 +01005636 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005638 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005639
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005640 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005641 current_sctx.sc_version = 1;
5642#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005643 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005644 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005645 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005647
Bram Moolenaar5958f952018-11-20 04:25:21 +01005648 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005649 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005650
Bram Moolenaara3227e22006-03-08 21:32:40 +00005651 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005652
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005653 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005654 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005655 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 break;
5657 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005658 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 }
5660
Bram Moolenaare31ee862020-01-07 20:59:34 +01005661 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005662 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 vim_free(linecopy);
5664 }
5665 return retval;
5666}
5667
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005668/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005669 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5670 */
5671 int
5672bt_normal(buf_T *buf)
5673{
5674 return buf != NULL && buf->b_p_bt[0] == NUL;
5675}
5676
Bram Moolenaar113e1072019-01-20 15:30:40 +01005677#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005678/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005679 * Return TRUE if "buf" is the quickfix buffer.
5680 */
5681 int
5682bt_quickfix(buf_T *buf)
5683{
5684 return buf != NULL && buf->b_p_bt[0] == 'q';
5685}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005686#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005687
Bram Moolenaar113e1072019-01-20 15:30:40 +01005688#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005689/*
5690 * Return TRUE if "buf" is a terminal buffer.
5691 */
5692 int
5693bt_terminal(buf_T *buf)
5694{
5695 return buf != NULL && buf->b_p_bt[0] == 't';
5696}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005697#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005698
5699/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005700 * Return TRUE if "buf" is a help buffer.
5701 */
5702 int
5703bt_help(buf_T *buf)
5704{
5705 return buf != NULL && buf->b_help;
5706}
5707
5708/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005709 * Return TRUE if "buf" is a prompt buffer.
5710 */
5711 int
5712bt_prompt(buf_T *buf)
5713{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005714 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5715}
5716
Dominique Pelle748b3082022-01-08 12:41:16 +00005717#if defined(FEAT_PROP_POPUP) || defined(PROTO)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005718/*
5719 * Return TRUE if "buf" is a buffer for a popup window.
5720 */
5721 int
5722bt_popup(buf_T *buf)
5723{
5724 return buf != NULL && buf->b_p_bt != NULL
5725 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005726}
Dominique Pelle748b3082022-01-08 12:41:16 +00005727#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005728
5729/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005730 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5731 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005732 */
5733 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005734bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005735{
5736 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5737 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005738 || buf->b_p_bt[0] == 't'
5739 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005740}
5741
Dominique Pelle748b3082022-01-08 12:41:16 +00005742#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005743/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005744 * Return TRUE if "buf" has 'buftype' set to "nofile".
5745 */
5746 int
5747bt_nofile(buf_T *buf)
5748{
5749 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5750}
Dominique Pelle748b3082022-01-08 12:41:16 +00005751#endif
Bram Moolenaar26910de2019-06-15 19:37:15 +02005752
5753/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005754 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5755 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005756 */
5757 int
5758bt_dontwrite(buf_T *buf)
5759{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005760 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005761 || buf->b_p_bt[0] == 't'
5762 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005763}
5764
Bram Moolenaar113e1072019-01-20 15:30:40 +01005765#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005766 int
5767bt_dontwrite_msg(buf_T *buf)
5768{
5769 if (bt_dontwrite(buf))
5770 {
Bram Moolenaarf1474d82021-12-31 19:59:55 +00005771 emsg(_(e_cannot_write_buftype_option_is_set));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005772 return TRUE;
5773 }
5774 return FALSE;
5775}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005776#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005777
5778/*
5779 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5780 * and 'bufhidden'.
5781 */
5782 int
5783buf_hide(buf_T *buf)
5784{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005785 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005786 switch (buf->b_p_bh[0])
5787 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005788 case 'u': // "unload"
5789 case 'w': // "wipe"
5790 case 'd': return FALSE; // "delete"
5791 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005792 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005793 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005794}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795
5796/*
5797 * Return special buffer name.
5798 * Returns NULL when the buffer has a normal file name.
5799 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005800 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005801buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005803#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005805 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005806 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005807 * Differentiate between the quickfix and location list buffers using
5808 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005809 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005810 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005811 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005812 else
5813 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005816
Bram Moolenaarc667da52019-11-30 20:52:27 +01005817 // There is no _file_ when 'buftype' is "nofile", b_sfname
5818 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005819 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005821#ifdef FEAT_TERMINAL
5822 if (buf->b_term != NULL)
5823 return term_get_status_text(buf->b_term);
5824#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005825 if (buf->b_fname != NULL)
5826 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005827#ifdef FEAT_JOB_CHANNEL
5828 if (bt_prompt(buf))
5829 return (char_u *)_("[Prompt]");
5830#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005831#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005832 if (bt_popup(buf))
5833 return (char_u *)_("[Popup]");
5834#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005835 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005837
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005839 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 return NULL;
5841}
5842
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005844 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5845 */
5846 char_u *
5847buf_get_fname(buf_T *buf)
5848{
5849 if (buf->b_fname == NULL)
5850 return (char_u *)_("[No Name]");
5851 return buf->b_fname;
5852}
5853
5854/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5856 */
5857 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005858set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859{
5860 if (on != curbuf->b_p_bl)
5861 {
5862 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 if (on)
5864 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5865 else
5866 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 }
5868}
5869
5870/*
5871 * Read the file for "buf" again and check if the contents changed.
5872 * Return TRUE if it changed or this could not be checked.
5873 */
5874 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005875buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876{
5877 buf_T *newbuf;
5878 int differ = TRUE;
5879 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 exarg_T ea;
5882
Bram Moolenaarc667da52019-11-30 20:52:27 +01005883 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5885 if (newbuf == NULL)
5886 return TRUE;
5887
Bram Moolenaarc667da52019-11-30 20:52:27 +01005888 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 if (prep_exarg(&ea, buf) == FAIL)
5890 {
5891 wipe_buffer(newbuf, FALSE);
5892 return TRUE;
5893 }
5894
Bram Moolenaarc667da52019-11-30 20:52:27 +01005895 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897
Bram Moolenaar4770d092006-01-12 23:22:24 +00005898 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 && readfile(buf->b_ffname, buf->b_fname,
5900 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5901 &ea, READ_NEW | READ_DUMMY) == OK)
5902 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005903 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5905 {
5906 differ = FALSE;
5907 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5908 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5909 {
5910 differ = TRUE;
5911 break;
5912 }
5913 }
5914 }
5915 vim_free(ea.cmd);
5916
Bram Moolenaarc667da52019-11-30 20:52:27 +01005917 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919
Bram Moolenaarc667da52019-11-30 20:52:27 +01005920 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921 wipe_buffer(newbuf, FALSE);
5922
5923 return differ;
5924}
5925
5926/*
5927 * Wipe out a buffer and decrement the last buffer number if it was used for
5928 * this buffer. Call this to wipe out a temp buffer that does not contain any
5929 * marks.
5930 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005932wipe_buffer(
5933 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005934 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935{
5936 if (buf->b_fnum == top_file_num - 1)
5937 --top_file_num;
5938
Bram Moolenaarc667da52019-11-30 20:52:27 +01005939 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005940 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005941
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005942 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005943
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005945 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946}