blob: 86dc88687a596334b02732d61c2de80276b9cf0a [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
47#ifdef FEAT_TITLE
Bram Moolenaar84a93082018-06-16 22:58:15 +020048static int value_changed(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000049#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010050static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
51static void free_buffer(buf_T *);
52static void free_buffer_stuff(buf_T *buf, int free_options);
53static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
55#ifdef UNIX
56# define dev_T dev_t
57#else
58# define dev_T unsigned
59#endif
60
Bram Moolenaar00d253e2020-04-06 22:13:01 +020061#define FOR_ALL_BUFS_FROM_LAST(buf) \
62 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
63
Bram Moolenaar4033c552017-09-16 20:54:51 +020064#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020065static char *msg_loclist = N_("[Location List]");
66static char *msg_qflist = N_("[Quickfix List]");
67#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010068static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020069
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020070// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020071static int buf_free_count = 0;
72
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020073static int top_file_num = 1; // highest file number
74static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
75
76/*
77 * Return the highest possible buffer number.
78 */
79 int
80get_highest_fnum(void)
81{
82 return top_file_num - 1;
83}
84
Bram Moolenaarc024b462019-06-08 18:07:21 +020085/*
86 * Read data from buffer for retrying.
87 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020088 static int
89read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010090 int read_stdin, // read file from stdin, otherwise fifo
91 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
92 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020093{
94 int retval = OK;
95 linenr_T line_count;
96
97 /*
98 * Read from the buffer which the text is already filled in and append at
99 * the end. This makes it possible to retry when 'fileformat' or
100 * 'fileencoding' was guessed wrong.
101 */
102 line_count = curbuf->b_ml.ml_line_count;
103 retval = readfile(
104 read_stdin ? NULL : curbuf->b_ffname,
105 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100106 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200107 flags | READ_BUFFER);
108 if (retval == OK)
109 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100110 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200111 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200112 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200113 }
114 else
115 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100116 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200117 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200118 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200119 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100120 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200121 curwin->w_cursor.lnum = 1;
122 curwin->w_cursor.col = 0;
123
124 if (read_stdin)
125 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100126 // Set or reset 'modified' before executing autocommands, so that
127 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100128 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200129 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100130 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200131 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200132
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100133 if (retval == OK)
134 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100135#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100136 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100137 curbuf, &retval);
138#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100139 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200140#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100141 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200142 }
143 return retval;
144}
145
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200147 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
148 */
149 void
150buffer_ensure_loaded(buf_T *buf)
151{
152 if (buf->b_ml.ml_mfp == NULL)
153 {
154 aco_save_T aco;
155
156 aucmd_prepbuf(&aco, buf);
157 swap_exists_action = SEA_NONE;
158 open_buffer(FALSE, NULL, 0);
159 aucmd_restbuf(&aco);
160 }
161}
162
163/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200164 * Open current buffer, that is: open the memfile and read the file into
165 * memory.
166 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167 */
168 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100169open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100170 int read_stdin, // read file from stdin
171 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
172 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173{
174 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200175 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100176#ifdef FEAT_SYN_HL
177 long old_tw = curbuf->b_p_tw;
178#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200179 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180
181 /*
182 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
183 * When re-entering the same buffer, it should not change, because the
184 * user may have reset the flag by hand.
185 */
186 if (readonlymode && curbuf->b_ffname != NULL
187 && (curbuf->b_flags & BF_NEVERLOADED))
188 curbuf->b_p_ro = TRUE;
189
Bram Moolenaar4770d092006-01-12 23:22:24 +0000190 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 {
192 /*
193 * There MUST be a memfile, otherwise we can't do anything
194 * If we can't create one for the current buffer, take another buffer
195 */
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100196 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200197 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 if (curbuf->b_ml.ml_mfp != NULL)
199 break;
200 /*
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200201 * If there is no memfile at all, exit.
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000202 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 */
204 if (curbuf == NULL)
205 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100206 emsg(_("E82: Cannot allocate any buffer, exiting..."));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200207
208 // Don't try to do any saving, with "curbuf" NULL almost nothing
209 // will work.
210 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 getout(2);
212 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200213
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100214 emsg(_("E83: Cannot allocate buffer, using other one..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100216#ifdef FEAT_SYN_HL
217 if (old_tw != curbuf->b_p_tw)
218 check_colorcolumn(curwin);
219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 return FAIL;
221 }
222
Bram Moolenaarc667da52019-11-30 20:52:27 +0100223 // The autocommands in readfile() may change the buffer, but only AFTER
224 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200225 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227
Bram Moolenaarc667da52019-11-30 20:52:27 +0100228 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100229 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230
231 if (curbuf->b_ffname != NULL
232#ifdef FEAT_NETBEANS_INTG
233 && netbeansReadFile
234#endif
235 )
236 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100237 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200238#ifdef UNIX
239 int save_bin = curbuf->b_p_bin;
240 int perm;
241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242#ifdef FEAT_NETBEANS_INTG
243 int oldFire = netbeansFireChanges;
244
245 netbeansFireChanges = 0;
246#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200247#ifdef UNIX
248 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200249 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200250 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200251# ifdef OPEN_CHR_FILES
252 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
253# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 ))
255 read_fifo = TRUE;
256 if (read_fifo)
257 curbuf->b_p_bin = TRUE;
258#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100259 if (shortmess(SHM_FILEINFO))
260 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200262 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200263 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
264#ifdef UNIX
265 if (read_fifo)
266 {
267 curbuf->b_p_bin = save_bin;
268 if (retval == OK)
269 retval = read_buffer(FALSE, eap, flags);
270 }
271#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100272 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273#ifdef FEAT_NETBEANS_INTG
274 netbeansFireChanges = oldFire;
275#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100276 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200277 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 fix_help_buffer();
279 }
280 else if (read_stdin)
281 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200282 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283
284 /*
285 * First read the text in binary mode into the buffer.
286 * Then read from that same buffer and append at the end. This makes
287 * it possible to retry when 'fileformat' or 'fileencoding' was
288 * guessed wrong.
289 */
290 curbuf->b_p_bin = TRUE;
291 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200292 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
293 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 curbuf->b_p_bin = save_bin;
295 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200296 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 }
298
Bram Moolenaarc667da52019-11-30 20:52:27 +0100299 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100301 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100303#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100304 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100305#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100306 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307
308 /*
309 * Set/reset the Changed flag first, autocmds may change the buffer.
310 * Apply the automatic commands, before processing the modelines.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200311 * So the modelines have priority over autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 */
Bram Moolenaarc667da52019-11-30 20:52:27 +0100313 // When reading stdin, the buffer contents always needs writing, so set
314 // the changed flag. Unless in readonly mode: "ls | gview -".
315 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000316 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100317 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100318#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000321 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100323 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200324 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100325 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326
Bram Moolenaarc667da52019-11-30 20:52:27 +0100327 // Set last_changedtick to avoid triggering a TextChanged autocommand right
328 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100329 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100330 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100331 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100332
Bram Moolenaarc667da52019-11-30 20:52:27 +0100333 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334#ifdef FEAT_EVAL
335 if (aborting())
336#else
337 if (got_int)
338#endif
339 curbuf->b_flags |= BF_READERR;
340
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000341#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100342 // Need to update automatic folding. Do this before the autocommands,
343 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000344 foldUpdateAll(curwin);
345#endif
346
Bram Moolenaarc667da52019-11-30 20:52:27 +0100347 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 if (!(curwin->w_valid & VALID_TOPLINE))
349 {
350 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100351#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100355#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100357#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359#endif
360
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100361 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 /*
364 * The autocommands may have changed the current buffer. Apply the
365 * modelines to the correct buffer, if it still exists and is loaded.
366 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200367 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 {
369 aco_save_T aco;
370
Bram Moolenaarc667da52019-11-30 20:52:27 +0100371 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200372 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000373 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
375
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100376#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100378 &retval);
379#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100381#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382
Bram Moolenaarc667da52019-11-30 20:52:27 +0100383 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 aucmd_restbuf(&aco);
385 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 }
387
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 return retval;
389}
390
391/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200392 * Store "buf" in "bufref" and set the free count.
393 */
394 void
395set_bufref(bufref_T *bufref, buf_T *buf)
396{
397 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200398 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200399 bufref->br_buf_free_count = buf_free_count;
400}
401
402/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200403 * Return TRUE if "bufref->br_buf" points to the same buffer as when
404 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200405 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200406 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
407 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200408 */
409 int
410bufref_valid(bufref_T *bufref)
411{
412 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200413 ? TRUE : buf_valid(bufref->br_buf)
414 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200415}
416
417/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200419 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 */
421 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100422buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423{
424 buf_T *bp;
425
Bram Moolenaarc667da52019-11-30 20:52:27 +0100426 // Assume that we more often have a recent buffer, start with the last
427 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200428 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 if (bp == buf)
430 return TRUE;
431 return FALSE;
432}
433
434/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200435 * A hash table used to quickly lookup a buffer by its number.
436 */
437static hashtab_T buf_hashtab;
438
439 static void
440buf_hashtab_add(buf_T *buf)
441{
442 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
443 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100444 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200445}
446
447 static void
448buf_hashtab_remove(buf_T *buf)
449{
450 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
451
452 if (!HASHITEM_EMPTY(hi))
453 hash_remove(&buf_hashtab, hi);
454}
455
Bram Moolenaar94f01952018-09-01 15:30:03 +0200456/*
457 * Return TRUE when buffer "buf" can be unloaded.
458 * Give an error message and return FALSE when the buffer is locked or the
459 * screen is being redrawn and the buffer is in a window.
460 */
461 static int
462can_unload_buffer(buf_T *buf)
463{
464 int can_unload = !buf->b_locked;
465
466 if (can_unload && updating_screen)
467 {
468 win_T *wp;
469
470 FOR_ALL_WINDOWS(wp)
471 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200472 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200473 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200474 break;
475 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200476 }
477 if (!can_unload)
Bram Moolenaardefa0672019-07-21 19:25:37 +0200478 semsg(_("E937: Attempt to delete a buffer that is in use: %s"),
479 buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200480 return can_unload;
481}
Bram Moolenaara997b452018-04-17 23:24:06 +0200482
Bram Moolenaar480778b2016-07-14 22:09:39 +0200483/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 * Close the link to a buffer.
485 * "action" is used when there is no longer a window for the buffer.
486 * It can be:
487 * 0 buffer becomes hidden
488 * DOBUF_UNLOAD buffer is unloaded
489 * DOBUF_DELETE buffer is unloaded and removed from buffer list
490 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200491 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 * When doing all but the first one on the current buffer, the caller should
493 * get a new buffer very soon!
494 *
495 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100496 *
497 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
498 * cause there to be only one window with this buffer. e.g. when ":quit" is
499 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100500 *
501 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100502 *
503 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100505 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100506close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100507 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100508 buf_T *buf,
509 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100510 int abort_if_last,
511 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100514 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200515 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100516 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200517 win_T *the_curwin = curwin;
518 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200520 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
521 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522
Bram Moolenaarcee52202020-03-11 14:19:58 +0100523 CHECK_CURBUF;
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200524 /*
525 * Force unloading or deleting when 'bufhidden' says so.
526 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
527 * "hide" (otherwise we could never free or delete a buffer).
528 */
Bram Moolenaarc667da52019-11-30 20:52:27 +0100529 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200530 {
531 del_buf = TRUE;
532 unload_buf = TRUE;
533 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100534 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200535 {
536 del_buf = TRUE;
537 unload_buf = TRUE;
538 wipe_buf = TRUE;
539 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100540 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200541 unload_buf = TRUE;
542
Bram Moolenaar94053a52017-08-01 21:44:33 +0200543#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200544 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200545 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100546 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200547 if (term_job_running(buf->b_term))
548 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200549 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200550 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200551 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100552 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200553
Bram Moolenaarc667da52019-11-30 20:52:27 +0100554 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200555 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200556 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200557 else
558 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100559 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200560 del_buf = FALSE;
561 unload_buf = FALSE;
562 }
563 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100564 else if (buf->b_p_bh[0] == 'h' && !del_buf)
565 {
566 // Hide a terminal buffer.
567 unload_buf = FALSE;
568 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200569 else
570 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100571 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200572 del_buf = TRUE;
573 unload_buf = TRUE;
574 wipe_buf = TRUE;
575 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100576 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200577 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579
Bram Moolenaarc667da52019-11-30 20:52:27 +0100580 // Disallow deleting the buffer when it is locked (already being closed or
581 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200582 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100583 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200584
Bram Moolenaarc667da52019-11-30 20:52:27 +0100585 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200586 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100588 // Set b_last_cursor when closing the last window for the buffer.
589 // Remember the last cursor position and window options of the buffer.
590 // This used to be only for the current window, but then options like
591 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 if (buf->b_nwindows == 1)
593 set_last_cursor(win);
594 buflist_setfpos(buf, win,
595 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
596 win->w_cursor.col, TRUE);
597 }
598
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200599 set_bufref(&bufref, buf);
600
Bram Moolenaarc667da52019-11-30 20:52:27 +0100601 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 if (buf->b_nwindows == 1)
603 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200604 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100605 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200606 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
607 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200608 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100609 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100610 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200611aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100612 emsg(_(e_auabort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100613 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100614 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200615 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100616 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200617 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100618 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200619 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620
Bram Moolenaarc667da52019-11-30 20:52:27 +0100621 // When the buffer becomes hidden, but is not unloaded, trigger
622 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 if (!unload_buf)
624 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200625 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100626 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200627 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
628 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200629 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100630 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200631 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200632 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100633 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200634 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100635 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200636 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100638#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100639 // autocmds may abort script processing
640 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100641 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100642#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200644
Bram Moolenaarc667da52019-11-30 20:52:27 +0100645 // If the buffer was in curwin and the window has changed, go back to that
646 // window, if it still exists. This avoids that ":edit x" triggering a
647 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200648 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
649 {
650 block_autocmds();
651 goto_tabpage_win(the_curtab, the_curwin);
652 unblock_autocmds();
653 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200654
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656
Bram Moolenaarc667da52019-11-30 20:52:27 +0100657 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 if (buf->b_nwindows > 0)
659 --buf->b_nwindows;
660
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100661#ifdef FEAT_DIFF
662 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100663 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100664#endif
665
Bram Moolenaarc667da52019-11-30 20:52:27 +0100666 // Return when a window is displaying the buffer or when it's not
667 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100669 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670
Bram Moolenaarc667da52019-11-30 20:52:27 +0100671 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 if (buf->b_ffname == NULL)
673 del_buf = TRUE;
674
Bram Moolenaarc667da52019-11-30 20:52:27 +0100675 // When closing the current buffer stop Visual mode before freeing
676 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200677 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200678#if defined(EXITFREE)
679 && !entered_free_all_mem
680#endif
681 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200682 end_visual_mode();
683
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 /*
685 * Free all things allocated for this buffer.
686 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
687 */
Bram Moolenaarc667da52019-11-30 20:52:27 +0100688 // Remember if we are closing the current buffer. Restore the number of
689 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 is_curbuf = (buf == curbuf);
691 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100693 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100694 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100695 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696
Bram Moolenaarc667da52019-11-30 20:52:27 +0100697 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200698 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100699 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100700#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100701 // autocmds may abort script processing
702 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100703 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 /*
707 * It's possible that autocommands change curbuf to the one being deleted.
708 * This might cause the previous curbuf to be deleted unexpectedly. But
709 * in some cases it's OK to delete the curbuf, because a new one is
710 * obtained anyway. Therefore only return if curbuf changed to the
711 * deleted buffer.
712 */
713 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100714 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200715
Bram Moolenaar4033c552017-09-16 20:54:51 +0200716 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100717 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200718
Bram Moolenaarc667da52019-11-30 20:52:27 +0100719 // Autocommands may have opened or closed windows for this buffer.
720 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200721 if (buf->b_nwindows > 0)
722 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 /*
725 * Remove the buffer from the list.
726 */
727 if (wipe_buf)
728 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200729 if (action == DOBUF_WIPE_REUSE)
730 {
731 // we can re-use this buffer number, store it
732 if (buf_reuse.ga_itemsize == 0)
733 ga_init2(&buf_reuse, sizeof(int), 50);
734 if (ga_grow(&buf_reuse, 1) == OK)
735 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
736 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200737 if (buf->b_sfname != buf->b_ffname)
738 VIM_CLEAR(buf->b_sfname);
739 else
740 buf->b_sfname = NULL;
741 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 if (buf->b_prev == NULL)
743 firstbuf = buf->b_next;
744 else
745 buf->b_prev->b_next = buf->b_next;
746 if (buf->b_next == NULL)
747 lastbuf = buf->b_prev;
748 else
749 buf->b_next->b_prev = buf->b_prev;
750 free_buffer(buf);
751 }
752 else
753 {
754 if (del_buf)
755 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100756 // Free all internal variables and reset option values, to make
757 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 free_buffer_stuff(buf, TRUE);
759
Bram Moolenaarc667da52019-11-30 20:52:27 +0100760 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
762
Bram Moolenaarc667da52019-11-30 20:52:27 +0100763 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 buf->b_p_initialized = FALSE;
765 }
766 buf_clear_file(buf);
767 if (del_buf)
768 buf->b_p_bl = FALSE;
769 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100770 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100771 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772}
773
774/*
775 * Make buffer not contain a file.
776 */
777 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100778buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779{
780 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200781 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 buf->b_p_eol = TRUE;
784 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000786 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100788 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789#ifdef FEAT_NETBEANS_INTG
790 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791#endif
792}
793
794/*
795 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200796 * the file. Careful: get here with "curwin" NULL when exiting.
797 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100798 * BFA_DEL buffer is going to be deleted
799 * BFA_WIPE buffer is going to be wiped out
800 * BFA_KEEP_UNDO do not free undo information
801 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100804buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200807 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200808 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200809 win_T *the_curwin = curwin;
810 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
Bram Moolenaarc667da52019-11-30 20:52:27 +0100812 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200813 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100814 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200815 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200816 if (buf->b_ml.ml_mfp != NULL)
817 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200818 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
819 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200820 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100821 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200822 return;
823 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200824 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200826 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
827 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200828 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100829 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 return;
831 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200832 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200834 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
835 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200836 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100837 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 return;
839 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200840 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100841 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200842
Bram Moolenaarc667da52019-11-30 20:52:27 +0100843 // If the buffer was in curwin and the window has changed, go back to that
844 // window, if it still exists. This avoids that ":edit x" triggering a
845 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200846 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
847 {
848 block_autocmds();
849 goto_tabpage_win(the_curtab, the_curwin);
850 unblock_autocmds();
851 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200852
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100853#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100854 // autocmds may abort script processing
855 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858
859 /*
860 * It's possible that autocommands change curbuf to the one being deleted.
861 * This might cause curbuf to be deleted unexpectedly. But in some cases
862 * it's OK to delete the curbuf, because a new one is obtained anyway.
863 * Therefore only return if curbuf changed to the deleted buffer.
864 */
865 if (buf == curbuf && !is_curbuf)
866 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100868 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200870#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100871 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200872 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100873 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200874#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000875
876#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100877 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000878 {
879 win_T *win;
880 tabpage_T *tp;
881
882 FOR_ALL_TAB_WINDOWS(tp, win)
883 if (win->w_buffer == buf)
884 clearFolding(win);
885 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000886#endif
887
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888#ifdef FEAT_TCL
889 tcl_buffer_free(buf);
890#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100891 ml_close(buf, TRUE); // close and delete the memline/memfile
892 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200893 if ((flags & BFA_KEEP_UNDO) == 0)
894 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100895 u_blockfree(buf); // free the memory allocated for undo
896 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100899 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100901#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100902 clear_buf_prop_types(buf);
903#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100904 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905}
906
907/*
908 * Free a buffer structure and the things it contains related to the buffer
909 * itself (not the file, that must have been done already).
910 */
911 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100912free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200914 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200916#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100917 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200918 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200919 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200920 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200921#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200922#ifdef FEAT_LUA
923 lua_buffer_free(buf);
924#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000925#ifdef FEAT_MZSCHEME
926 mzscheme_buffer_free(buf);
927#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928#ifdef FEAT_PERL
929 perl_buf_free(buf);
930#endif
931#ifdef FEAT_PYTHON
932 python_buffer_free(buf);
933#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200934#ifdef FEAT_PYTHON3
935 python3_buffer_free(buf);
936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937#ifdef FEAT_RUBY
938 ruby_buffer_free(buf);
939#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200940#ifdef FEAT_JOB_CHANNEL
941 channel_buffer_free(buf);
942#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200943#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200944 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200945#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200946#ifdef FEAT_JOB_CHANNEL
947 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200948 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200949 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200950#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200951
952 buf_hashtab_remove(buf);
953
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200954 aubuflocal_remove(buf);
955
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200956 if (autocmd_busy)
957 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100958 // Do not free the buffer structure while autocommands are executing,
959 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200960 buf->b_next = au_pending_free_buf;
961 au_pending_free_buf = buf;
962 }
963 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100964 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200965 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100966 if (curbuf == buf)
967 curbuf = NULL; // make clear it's not to be used
968 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969}
970
971/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100972 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100973 */
974 static void
975init_changedtick(buf_T *buf)
976{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100977 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100978
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100979 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
980 di->di_tv.v_type = VAR_NUMBER;
981 di->di_tv.v_lock = VAR_FIXED;
982 di->di_tv.vval.v_number = 0;
983
Bram Moolenaar92769c32017-02-25 15:41:37 +0100984#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100985 STRCPY(buf->b_ct_di.di_key, "changedtick");
986 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100987#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100988}
989
990/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
992 */
993 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100994free_buffer_stuff(
995 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100996 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997{
998 if (free_options)
999 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001000 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +02001002#ifdef FEAT_SPELL
1003 ga_clear(&buf->b_s.b_langp);
1004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 }
1006#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +01001007 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001008 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001009
Bram Moolenaarc667da52019-11-30 20:52:27 +01001010 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +01001011 hash_init(&buf->b_vars->dv_hashtab);
1012 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001013 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +01001014 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001017 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001019 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001021#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001022 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001023#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001024 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1025 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001026 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027}
1028
1029/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001030 * Free one wininfo_T.
1031 */
1032 void
1033free_wininfo(wininfo_T *wip)
1034{
1035 if (wip->wi_optset)
1036 {
1037 clear_winopt(&wip->wi_opt);
1038#ifdef FEAT_FOLDING
1039 deleteFoldRecurse(&wip->wi_folds);
1040#endif
1041 }
1042 vim_free(wip);
1043}
1044
1045/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 * Free the b_wininfo list for buffer "buf".
1047 */
1048 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001049clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050{
1051 wininfo_T *wip;
1052
1053 while (buf->b_wininfo != NULL)
1054 {
1055 wip = buf->b_wininfo;
1056 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001057 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 }
1059}
1060
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061/*
1062 * Go to another buffer. Handles the result of the ATTENTION dialog.
1063 */
1064 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001065goto_buffer(
1066 exarg_T *eap,
1067 int start,
1068 int dir,
1069 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001071 bufref_T old_curbuf;
1072
1073 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074
1075 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1077 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1079 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001080#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001081 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001082
Bram Moolenaarc667da52019-11-30 20:52:27 +01001083 // Reset the error/interrupt/exception state here so that
1084 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001085 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001086#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001087
Bram Moolenaarc667da52019-11-30 20:52:27 +01001088 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 win_close(curwin, TRUE);
1090 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001091 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001092
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001093#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001094 // Restore the error/interrupt/exception state if not discarded by a
1095 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001096 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001097#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 }
1099 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001100 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001101}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103/*
1104 * Handle the situation of swap_exists_action being set.
1105 * It is allowed for "old_curbuf" to be NULL or invalid.
1106 */
1107 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001108handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001110#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001111 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001112#endif
1113#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001114 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001115#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001116 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 if (swap_exists_action == SEA_QUIT)
1119 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001120#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001121 // Reset the error/interrupt/exception state here so that
1122 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001123 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001124#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001125
Bram Moolenaarc667da52019-11-30 20:52:27 +01001126 // User selected Quit at ATTENTION prompt. Go back to previous
1127 // buffer. If that buffer is gone or the same as the current one,
1128 // open a new, empty buffer.
1129 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001130 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001131 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001132 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1133 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001134 {
1135 // Block autocommands here because curwin->w_buffer is NULL.
1136 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001137 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001138 unblock_autocmds();
1139 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001140 else
1141 buf = old_curbuf->br_buf;
1142 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001143 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001144 int old_msg_silent = msg_silent;
1145
1146 if (shortmess(SHM_FILEINFO))
1147 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001148 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001149 // restore msg_silent, so that the command line will be shown
1150 msg_silent = old_msg_silent;
1151
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001152#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001153 if (old_tw != curbuf->b_p_tw)
1154 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001155#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001156 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001157 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001158
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001159#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001160 // Restore the error/interrupt/exception state if not discarded by a
1161 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001162 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 }
1165 else if (swap_exists_action == SEA_RECOVER)
1166 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001167#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001168 // Reset the error/interrupt/exception state here so that
1169 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001170 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001171#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001172
Bram Moolenaarc667da52019-11-30 20:52:27 +01001173 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001175 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001176 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001178 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001179
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001180#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001181 // Restore the error/interrupt/exception state if not discarded by a
1182 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001183 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 }
1186 swap_exists_action = SEA_NONE;
1187}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001190 * Make the current buffer empty.
1191 * Used when it is wiped out and it's the last buffer.
1192 */
1193 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001194empty_curbuf(
1195 int close_others,
1196 int forceit,
1197 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001198{
1199 int retval;
1200 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001201 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001202
1203 if (action == DOBUF_UNLOAD)
1204 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001205 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001206 return FAIL;
1207 }
1208
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001209 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001210 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001211 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001212 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001213
1214 setpcmark();
1215 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1216 forceit ? ECMD_FORCEIT : 0, curwin);
1217
1218 /*
1219 * do_ecmd() may create a new buffer, then we have to delete
1220 * the old one. But do_ecmd() may have done that already, check
1221 * if the buffer still exists.
1222 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001223 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001224 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001225 if (!close_others)
1226 need_fileinfo = FALSE;
1227 return retval;
1228}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001229
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230/*
1231 * Implementation of the commands for the buffer list.
1232 *
1233 * action == DOBUF_GOTO go to specified buffer
1234 * action == DOBUF_SPLIT split window and go to specified buffer
1235 * action == DOBUF_UNLOAD unload specified buffer(s)
1236 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1237 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001238 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 *
1240 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1241 * start == DOBUF_FIRST go to "count" buffer from first buffer
1242 * start == DOBUF_LAST go to "count" buffer from last buffer
1243 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1244 *
1245 * Return FAIL or OK.
1246 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001247 static int
1248do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001249 int action,
1250 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001251 int dir, // FORWARD or BACKWARD
1252 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001253 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254{
1255 buf_T *buf;
1256 buf_T *bp;
1257 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001258 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
1260 switch (start)
1261 {
1262 case DOBUF_FIRST: buf = firstbuf; break;
1263 case DOBUF_LAST: buf = lastbuf; break;
1264 default: buf = curbuf; break;
1265 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001266 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 {
1268 while (count-- > 0)
1269 {
1270 do
1271 {
1272 buf = buf->b_next;
1273 if (buf == NULL)
1274 buf = firstbuf;
1275 }
1276 while (buf != curbuf && !bufIsChanged(buf));
1277 }
1278 if (!bufIsChanged(buf))
1279 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001280 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 return FAIL;
1282 }
1283 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001284 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 {
1286 while (buf != NULL && buf->b_fnum != count)
1287 buf = buf->b_next;
1288 }
1289 else
1290 {
1291 bp = NULL;
1292 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1293 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001294 // remember the buffer where we start, we come back there when all
1295 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 if (bp == NULL)
1297 bp = buf;
1298 if (dir == FORWARD)
1299 {
1300 buf = buf->b_next;
1301 if (buf == NULL)
1302 buf = firstbuf;
1303 }
1304 else
1305 {
1306 buf = buf->b_prev;
1307 if (buf == NULL)
1308 buf = lastbuf;
1309 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001310 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 if (unload || buf->b_p_bl)
1312 {
1313 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001314 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 }
1316 if (bp == buf)
1317 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001318 // back where we started, didn't find anything.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001319 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 return FAIL;
1321 }
1322 }
1323 }
1324
Bram Moolenaarc667da52019-11-30 20:52:27 +01001325 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 {
1327 if (start == DOBUF_FIRST)
1328 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001329 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001331 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 }
1333 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001334 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001336 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 return FAIL;
1338 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001339#ifdef FEAT_PROP_POPUP
1340 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1341# ifdef FEAT_TERMINAL
1342 && !bt_terminal(buf)
1343#endif
1344 )
1345 return OK;
1346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
1348#ifdef FEAT_GUI
1349 need_mouse_correct = TRUE;
1350#endif
1351
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 /*
1353 * delete buffer buf from memory and/or the list
1354 */
1355 if (unload)
1356 {
1357 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001358 bufref_T bufref;
1359
Bram Moolenaar94f01952018-09-01 15:30:03 +02001360 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001361 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001362
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001363 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364
Bram Moolenaarc667da52019-11-30 20:52:27 +01001365 // When unloading or deleting a buffer that's already unloaded and
1366 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001367 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1368 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 return FAIL;
1370
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001371 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001373#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001374 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 {
1376 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001377 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001378 // Autocommand deleted buffer, oops! It's not changed
1379 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001381 // If it's still changed fail silently, the dialog already
1382 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001383 if (bufIsChanged(buf))
1384 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001386 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001389 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 buf->b_fnum);
1391 return FAIL;
1392 }
1393 }
1394
Bram Moolenaarc667da52019-11-30 20:52:27 +01001395 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001396 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001397 end_visual_mode();
1398
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 /*
1400 * If deleting the last (listed) buffer, make it empty.
1401 * The last (listed) buffer cannot be unloaded.
1402 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001403 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (bp->b_p_bl && bp != buf)
1405 break;
1406 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001407 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 /*
1410 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001411 * (unless it's the only window). Repeat this so long as we end up in
1412 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001414 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001415 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001416 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001417 {
1418 if (win_close(curwin, FALSE) == FAIL)
1419 break;
1420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421
1422 /*
1423 * If the buffer to be deleted is not the current one, delete it here.
1424 */
1425 if (buf != curbuf)
1426 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001427 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001428 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001429 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 return OK;
1431 }
1432
1433 /*
1434 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001435 * There should be another, otherwise it would have been handled
1436 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001437 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 * Then prefer the buffer we most recently visited.
1439 * Else try to find one that is loaded, after the current buffer,
1440 * then before the current buffer.
1441 * Finally use any buffer.
1442 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001443 buf = NULL; // selected buffer
1444 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001445 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1446 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001448 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 {
1450 int jumpidx;
1451
1452 jumpidx = curwin->w_jumplistidx - 1;
1453 if (jumpidx < 0)
1454 jumpidx = curwin->w_jumplistlen - 1;
1455
1456 forward = jumpidx;
1457 while (jumpidx != curwin->w_jumplistidx)
1458 {
1459 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1460 if (buf != NULL)
1461 {
1462 if (buf == curbuf || !buf->b_p_bl)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001463 buf = NULL; // skip current and unlisted bufs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 else if (buf->b_ml.ml_mfp == NULL)
1465 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001466 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 if (bp == NULL)
1468 bp = buf;
1469 buf = NULL;
1470 }
1471 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001472 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001474 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1476 break;
1477 if (--jumpidx < 0)
1478 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001479 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 break;
1481 }
1482 }
1483#endif
1484
Bram Moolenaarc667da52019-11-30 20:52:27 +01001485 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 {
1487 forward = TRUE;
1488 buf = curbuf->b_next;
1489 for (;;)
1490 {
1491 if (buf == NULL)
1492 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001493 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 break;
1495 buf = curbuf->b_prev;
1496 forward = FALSE;
1497 continue;
1498 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001499 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1501 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001502 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001504 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 bp = buf;
1506 }
1507 if (forward)
1508 buf = buf->b_next;
1509 else
1510 buf = buf->b_prev;
1511 }
1512 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001513 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001515 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001517 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 if (buf->b_p_bl && buf != curbuf)
1519 break;
1520 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001521 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 {
1523 if (curbuf->b_next != NULL)
1524 buf = curbuf->b_next;
1525 else
1526 buf = curbuf->b_prev;
1527 }
1528 }
1529
Bram Moolenaara02471e2014-01-10 16:43:14 +01001530 if (buf == NULL)
1531 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001532 // Autocommands must have wiped out all other buffers. Only option
1533 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001534 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001535 }
1536
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 /*
1538 * make buf current buffer
1539 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001540 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001542 // If 'switchbuf' contains "useopen": jump to first window containing
1543 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001544 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001545 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001546 // If 'switchbuf' contains "usetab": jump to first window in any tab
1547 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001548 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 return OK;
1550 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 return FAIL;
1552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553
Bram Moolenaarc667da52019-11-30 20:52:27 +01001554 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 if (buf == curbuf)
1556 return OK;
1557
1558 /*
1559 * Check if the current buffer may be abandoned.
1560 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001561 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 {
1563#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001564 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001566 bufref_T bufref;
1567
1568 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001570 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001571 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 }
1574 if (bufIsChanged(curbuf))
1575#endif
1576 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001577 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 return FAIL;
1579 }
1580 }
1581
Bram Moolenaarc667da52019-11-30 20:52:27 +01001582 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 set_curbuf(buf, action);
1584
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001586 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001588#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001589 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 return FAIL;
1591#endif
1592
1593 return OK;
1594}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001596 int
1597do_buffer(
1598 int action,
1599 int start,
1600 int dir, // FORWARD or BACKWARD
1601 int count, // buffer number or number of buffers
1602 int forceit) // TRUE when using !
1603{
1604 return do_buffer_ext(action, start, dir, count,
1605 forceit ? DOBUF_FORCEIT : 0);
1606}
1607
1608/*
1609 * do_bufdel() - delete or unload buffer(s)
1610 *
1611 * addr_count == 0: ":bdel" - delete current buffer
1612 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1613 * buffer "end_bnr", then any other arguments.
1614 * addr_count == 2: ":N,N bdel" - delete buffers in range
1615 *
1616 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1617 * DOBUF_DEL (":bdel")
1618 *
1619 * Returns error message or NULL
1620 */
1621 char *
1622do_bufdel(
1623 int command,
1624 char_u *arg, // pointer to extra arguments
1625 int addr_count,
1626 int start_bnr, // first buffer number in a range
1627 int end_bnr, // buffer nr or last buffer nr in a range
1628 int forceit)
1629{
1630 int do_current = 0; // delete current buffer?
1631 int deleted = 0; // number of buffers deleted
1632 char *errormsg = NULL; // return value
1633 int bnr; // buffer number
1634 char_u *p;
1635
1636 if (addr_count == 0)
1637 {
1638 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1639 }
1640 else
1641 {
1642 if (addr_count == 2)
1643 {
1644 if (*arg) // both range and argument is not allowed
1645 return ex_errmsg(e_trailing_arg, arg);
1646 bnr = start_bnr;
1647 }
1648 else // addr_count == 1
1649 bnr = end_bnr;
1650
1651 for ( ;!got_int; ui_breakcheck())
1652 {
1653 /*
1654 * Delete the current buffer last, otherwise when the
1655 * current buffer is deleted, the next buffer becomes
1656 * the current one and will be loaded, which may then
1657 * also be deleted, etc.
1658 */
1659 if (bnr == curbuf->b_fnum)
1660 do_current = bnr;
1661 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr,
1662 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1663 ++deleted;
1664
1665 /*
1666 * find next buffer number to delete/unload
1667 */
1668 if (addr_count == 2)
1669 {
1670 if (++bnr > end_bnr)
1671 break;
1672 }
1673 else // addr_count == 1
1674 {
1675 arg = skipwhite(arg);
1676 if (*arg == NUL)
1677 break;
1678 if (!VIM_ISDIGIT(*arg))
1679 {
1680 p = skiptowhite_esc(arg);
1681 bnr = buflist_findpat(arg, p,
1682 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1683 FALSE, FALSE);
1684 if (bnr < 0) // failed
1685 break;
1686 arg = p;
1687 }
1688 else
1689 bnr = getdigits(&arg);
1690 }
1691 }
1692 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1693 FORWARD, do_current, forceit) == OK)
1694 ++deleted;
1695
1696 if (deleted == 0)
1697 {
1698 if (command == DOBUF_UNLOAD)
1699 STRCPY(IObuff, _("E515: No buffers were unloaded"));
1700 else if (command == DOBUF_DEL)
1701 STRCPY(IObuff, _("E516: No buffers were deleted"));
1702 else
1703 STRCPY(IObuff, _("E517: No buffers were wiped out"));
1704 errormsg = (char *)IObuff;
1705 }
1706 else if (deleted >= p_report)
1707 {
1708 if (command == DOBUF_UNLOAD)
1709 smsg(NGETTEXT("%d buffer unloaded",
1710 "%d buffers unloaded", deleted), deleted);
1711 else if (command == DOBUF_DEL)
1712 smsg(NGETTEXT("%d buffer deleted",
1713 "%d buffers deleted", deleted), deleted);
1714 else
1715 smsg(NGETTEXT("%d buffer wiped out",
1716 "%d buffers wiped out", deleted), deleted);
1717 }
1718 }
1719
1720
1721 return errormsg;
1722}
1723
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724/*
1725 * Set current buffer to "buf". Executes autocommands and closes current
1726 * buffer. "action" tells how to close the current buffer:
1727 * DOBUF_GOTO free or hide it
1728 * DOBUF_SPLIT nothing
1729 * DOBUF_UNLOAD unload it
1730 * DOBUF_DEL delete it
1731 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001732 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 */
1734 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001735set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736{
1737 buf_T *prevbuf;
1738 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001739 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001740#ifdef FEAT_SYN_HL
1741 long old_tw = curbuf->b_p_tw;
1742#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001743 bufref_T newbufref;
1744 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
1746 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001747 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001748 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1749 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
Bram Moolenaarc667da52019-11-30 20:52:27 +01001751 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753
Bram Moolenaarc667da52019-11-30 20:52:27 +01001754 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001756 set_bufref(&prevbufref, prevbuf);
1757 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001759 // Autocommands may delete the current buffer and/or the buffer we want to
1760 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001761 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001762 || (bufref_valid(&prevbufref)
1763 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001764#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001765 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001767 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001769#ifdef FEAT_SYN_HL
1770 if (prevbuf == curwin->w_buffer)
1771 reset_synblock(curwin);
1772#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001774 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001775#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001776 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001778 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001780 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001781 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001782
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001783 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001784 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1786 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001787 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001788 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1789 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001790 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001791 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001792 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001795 // An autocommand may have deleted "buf", already entered it (e.g., when
1796 // it did ":bunload") or aborted the script processing.
1797 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9e931222012-06-20 11:55:01 +02001798 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001799#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001800 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001802 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001803 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001805#ifdef FEAT_SYN_HL
1806 if (old_tw != curbuf->b_p_tw)
1807 check_colorcolumn(curwin);
1808#endif
1809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810}
1811
1812/*
1813 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001814 * Old curbuf must have been abandoned already! This also means "curbuf" may
1815 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001817 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001818enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001820 // Get the buffer in the current window.
1821 curwin->w_buffer = buf;
1822 curbuf = buf;
1823 ++curbuf->b_nwindows;
1824
1825 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1827 if (!buf->b_help)
1828 get_winopts(buf);
1829#ifdef FEAT_FOLDING
1830 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001831 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001833 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#endif
1835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001837 if (curwin->w_p_diff)
1838 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839#endif
1840
Bram Moolenaara971b822011-09-14 14:43:25 +02001841#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001842 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001843#endif
1844
Bram Moolenaarc667da52019-11-30 20:52:27 +01001845 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 curwin->w_cursor.lnum = 1;
1847 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001850 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851
Bram Moolenaarc667da52019-11-30 20:52:27 +01001852 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001853 curwin->w_valid = 0;
1854
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001855 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1856 curbuf->b_last_cursor.col, TRUE);
1857
Bram Moolenaarc667da52019-11-30 20:52:27 +01001858 // Make sure the buffer is loaded.
1859 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001860 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001861 // If there is no filetype, allow for detecting one. Esp. useful for
1862 // ":ball" used in a autocommand. If there already is a filetype we
1863 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001864 if (*curbuf->b_p_ft == NUL)
1865 did_filetype = FALSE;
1866
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001867 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 else
1870 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001871 if (!msg_silent && !shortmess(SHM_FILEINFO))
1872 need_fileinfo = TRUE; // display file info after redraw
1873
1874 // check if file changed
1875 (void)buf_check_timestamp(curbuf, FALSE);
1876
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001878#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1882 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
1884
Bram Moolenaarc667da52019-11-30 20:52:27 +01001885 // If autocommands did not change the cursor position, restore cursor lnum
1886 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 if (curwin->w_cursor.lnum == 1 && inindent(0))
1888 buflist_getfpos();
1889
Bram Moolenaarc667da52019-11-30 20:52:27 +01001890 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891#ifdef FEAT_TITLE
1892 maketitle();
1893#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001894 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001895 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001896 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
Bram Moolenaar009b2592004-10-24 19:18:58 +00001898#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001899 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001900 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001901#endif
1902
Bram Moolenaarc667da52019-11-30 20:52:27 +01001903 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001904 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905
1906#ifdef FEAT_KEYMAP
1907 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001908 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001910#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001911 // May need to set the spell language. Can only do this after the buffer
1912 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001913 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1914 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001915#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001916#ifdef FEAT_VIMINFO
1917 curbuf->b_last_used = vim_time();
1918#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001919
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 redraw_later(NOT_VALID);
1921}
1922
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001923#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1924/*
1925 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001926 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001927 */
1928 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001929do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001930{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001931 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001932 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001933 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001934 shorten_fnames(TRUE);
1935}
1936#endif
1937
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001938 void
1939no_write_message(void)
1940{
1941#ifdef FEAT_TERMINAL
1942 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001943 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001944 else
1945#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001946 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001947}
1948
1949 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001950no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001951{
1952#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001953 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001954 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001955 else
1956#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001957 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001958}
1959
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960/*
1961 * functions for dealing with the buffer list
1962 */
1963
1964/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001965 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1966 * only one window. That means it can be re-used.
1967 */
1968 int
1969curbuf_reusable(void)
1970{
1971 return (curbuf != NULL
1972 && curbuf->b_ffname == NULL
1973 && curbuf->b_nwindows <= 1
1974 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001975#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001976 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001977#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001978 && !curbufIsChanged());
1979}
1980
1981/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 * Add a file name to the buffer list. Return a pointer to the buffer.
1983 * If the same file name already exists return a pointer to that buffer.
1984 * If it does not exist, or if fname == NULL, a new entry is created.
1985 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1986 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1987 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001988 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001989 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1990 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001991 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 * This is the ONLY way to create a new buffer.
1993 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001995buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001996 char_u *ffname_arg, // full path of fname or relative
1997 char_u *sfname_arg, // short fname or NULL
1998 linenr_T lnum, // preferred cursor line
1999 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002001 char_u *ffname = ffname_arg;
2002 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 buf_T *buf;
2004#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002005 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006#endif
2007
Bram Moolenaar480778b2016-07-14 22:09:39 +02002008 if (top_file_num == 1)
2009 hash_init(&buf_hashtab);
2010
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002011 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012
2013 /*
2014 * If file name already exists in the list, update the entry.
2015 */
2016#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002017 // On Unix we can use inode numbers when the file exists. Works better
2018 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2020 st.st_dev = (dev_T)-1;
2021#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002022 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023#ifdef UNIX
2024 buflist_findname_stat(ffname, &st)
2025#else
2026 buflist_findname(ffname)
2027#endif
2028 ) != NULL)
2029 {
2030 vim_free(ffname);
2031 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002032 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2033 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002034
2035 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002036 // copy the options now, if 'cpo' doesn't have 's' and not done
2037 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002038 buf_copy_options(buf, 0);
2039
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2041 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002042 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002043
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002045 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002047 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002048 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002049 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002050 return NULL;
2051 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 }
2053 return buf;
2054 }
2055
2056 /*
2057 * If the current buffer has no name and no contents, use the current
2058 * buffer. Otherwise: Need to allocate a new buffer structure.
2059 *
2060 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002061 * (A spell file buffer is allocated in spell.c, but that's not a normal
2062 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 */
2064 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002065 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 {
2067 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002068 // It's like this buffer is deleted. Watch out for autocommands that
2069 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 if (curbuf->b_p_bl)
2071 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2072 if (buf == curbuf)
2073 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002074#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002075 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002076 {
2077 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002079 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002083 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 clear_string_option(&buf->b_p_bh);
2085 clear_string_option(&buf->b_p_bt);
2086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 }
2088 if (buf != curbuf || curbuf == NULL)
2089 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002090 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 if (buf == NULL)
2092 {
2093 vim_free(ffname);
2094 return NULL;
2095 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002096#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002097 // init b: variables
Bram Moolenaar429fa852013-04-15 12:27:36 +02002098 buf->b_vars = dict_alloc();
2099 if (buf->b_vars == NULL)
2100 {
2101 vim_free(ffname);
2102 vim_free(buf);
2103 return NULL;
2104 }
2105 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2106#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002107 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 }
2109
2110 if (ffname != NULL)
2111 {
2112 buf->b_ffname = ffname;
2113 buf->b_sfname = vim_strsave(sfname);
2114 }
2115
2116 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002117 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118
2119 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2120 || buf->b_wininfo == NULL)
2121 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002122 if (buf->b_sfname != buf->b_ffname)
2123 VIM_CLEAR(buf->b_sfname);
2124 else
2125 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002126 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 if (buf != curbuf)
2128 free_buffer(buf);
2129 return NULL;
2130 }
2131
2132 if (buf == curbuf)
2133 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002134 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002135 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002136 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002138#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002139 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 return NULL;
2141#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002142 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002143
Bram Moolenaarc667da52019-11-30 20:52:27 +01002144 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002145 buf->b_p_initialized = FALSE;
2146 buf_copy_options(buf, BCO_ENTER);
2147
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002149 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 curbuf->b_kmap_state |= KEYMAP_INIT;
2151#endif
2152 }
2153 else
2154 {
2155 /*
2156 * put new buffer at the end of the buffer list
2157 */
2158 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002159 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 {
2161 buf->b_prev = NULL;
2162 firstbuf = buf;
2163 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002164 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 {
2166 lastbuf->b_next = buf;
2167 buf->b_prev = lastbuf;
2168 }
2169 lastbuf = buf;
2170
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002171 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2172 {
2173 // Recycle a previously used buffer number. Used for buffers which
2174 // are normally hidden, e.g. in a popup window. Avoids that the
2175 // buffer number grows rapidly.
2176 --buf_reuse.ga_len;
2177 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002178
2179 // Move buffer to the right place in the buffer list.
2180 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2181 {
2182 buf_T *prev = buf->b_prev;
2183
2184 prev->b_next = buf->b_next;
2185 if (prev->b_next != NULL)
2186 prev->b_next->b_prev = prev;
2187 buf->b_next = prev;
2188 buf->b_prev = prev->b_prev;
2189 if (buf->b_prev != NULL)
2190 buf->b_prev->b_next = buf;
2191 prev->b_prev = buf;
2192 if (lastbuf == buf)
2193 lastbuf = prev;
2194 if (firstbuf == prev)
2195 firstbuf = buf;
2196 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002197 }
2198 else
2199 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002200 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002202 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002203 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 {
2205 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002206 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 }
2208 top_file_num = 1;
2209 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002210 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211
2212 /*
2213 * Always copy the options from the current buffer.
2214 */
2215 buf_copy_options(buf, BCO_ALWAYS);
2216 }
2217
2218 buf->b_wininfo->wi_fpos.lnum = lnum;
2219 buf->b_wininfo->wi_win = curwin;
2220
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002221#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002222 hash_init(&buf->b_s.b_keywtab);
2223 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224#endif
2225
2226 buf->b_fname = buf->b_sfname;
2227#ifdef UNIX
2228 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002229 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 else
2231 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002232 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 buf->b_dev = st.st_dev;
2234 buf->b_ino = st.st_ino;
2235 }
2236#endif
2237 buf->b_u_synced = TRUE;
2238 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002239 if (flags & BLN_DUMMY)
2240 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002242 clrallmarks(buf); // clear marks
2243 fmarks_check_names(buf); // check file marks for this file
2244 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 if (!(flags & BLN_DUMMY))
2246 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002247 bufref_T bufref;
2248
Bram Moolenaarc667da52019-11-30 20:52:27 +01002249 // Tricky: these autocommands may change the buffer list. They could
2250 // also split the window with re-using the one empty buffer. This may
2251 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002252 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002253 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002254 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002255 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002257 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002258 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002259 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002260 return NULL;
2261 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002262#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002263 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267
2268 return buf;
2269}
2270
2271/*
2272 * Free the memory for the options of a buffer.
2273 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2274 * 'fileencoding'.
2275 */
2276 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002277free_buf_options(
2278 buf_T *buf,
2279 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280{
2281 if (free_p_ff)
2282 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 clear_string_option(&buf->b_p_bh);
2286 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 }
2288#ifdef FEAT_FIND_ID
2289 clear_string_option(&buf->b_p_def);
2290 clear_string_option(&buf->b_p_inc);
2291# ifdef FEAT_EVAL
2292 clear_string_option(&buf->b_p_inex);
2293# endif
2294#endif
2295#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2296 clear_string_option(&buf->b_p_inde);
2297 clear_string_option(&buf->b_p_indk);
2298#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002299#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2300 clear_string_option(&buf->b_p_bexpr);
2301#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002302#if defined(FEAT_CRYPT)
2303 clear_string_option(&buf->b_p_cm);
2304#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002305 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002306#if defined(FEAT_EVAL)
2307 clear_string_option(&buf->b_p_fex);
2308#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002310# ifdef FEAT_SODIUM
2311 if (buf->b_p_key != NULL && (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2312 sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
2313# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 clear_string_option(&buf->b_p_key);
2315#endif
2316 clear_string_option(&buf->b_p_kp);
2317 clear_string_option(&buf->b_p_mps);
2318 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002319 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002321#ifdef FEAT_VARTABS
2322 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002323 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002324 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002325 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002326 buf->b_p_vsts_array = NULL;
2327 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002328 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#ifdef FEAT_KEYMAP
2331 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002332 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 ga_clear(&buf->b_kmap_ga);
2334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336#ifdef FEAT_FOLDING
2337 clear_string_option(&buf->b_p_cms);
2338#endif
2339 clear_string_option(&buf->b_p_nf);
2340#ifdef FEAT_SYN_HL
2341 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002342 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002343#endif
2344#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002345 clear_string_option(&buf->b_s.b_p_spc);
2346 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002347 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002348 buf->b_s.b_cap_prog = NULL;
2349 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002350 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351#endif
2352#ifdef FEAT_SEARCHPATH
2353 clear_string_option(&buf->b_p_sua);
2354#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356#ifdef FEAT_CINDENT
2357 clear_string_option(&buf->b_p_cink);
2358 clear_string_option(&buf->b_p_cino);
2359#endif
2360#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2361 clear_string_option(&buf->b_p_cinw);
2362#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002364#ifdef FEAT_COMPL_FUNC
2365 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002366 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368#ifdef FEAT_QUICKFIX
2369 clear_string_option(&buf->b_p_gp);
2370 clear_string_option(&buf->b_p_mp);
2371 clear_string_option(&buf->b_p_efm);
2372#endif
2373 clear_string_option(&buf->b_p_ep);
2374 clear_string_option(&buf->b_p_path);
2375 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002376 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002377#ifdef FEAT_EVAL
2378 clear_string_option(&buf->b_p_tfu);
2379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 clear_string_option(&buf->b_p_dict);
2381 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002382#ifdef FEAT_TEXTOBJ
2383 clear_string_option(&buf->b_p_qe);
2384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002386 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002387#ifdef FEAT_LISP
2388 clear_string_option(&buf->b_p_lw);
2389#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002390 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002391 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392}
2393
2394/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002395 * Get alternate file "n".
2396 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2397 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 * if (options & GETF_SETMARK) call setpcmark()
2399 * if (options & GETF_ALT) we are jumping to an alternate file.
2400 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2401 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002402 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 */
2404 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002405buflist_getfile(
2406 int n,
2407 linenr_T lnum,
2408 int options,
2409 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
2411 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 pos_T *fpos;
2414 colnr_T col;
2415
2416 buf = buflist_findnr(n);
2417 if (buf == NULL)
2418 {
2419 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002420 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002422 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 return FAIL;
2424 }
2425
Bram Moolenaarc667da52019-11-30 20:52:27 +01002426 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 if (buf == curbuf)
2428 return OK;
2429
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002430 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002431 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002432 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002434 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002435 if (curbuf_locked())
2436 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
Bram Moolenaarc667da52019-11-30 20:52:27 +01002438 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 if (lnum == 0)
2440 {
2441 fpos = buflist_findfpos(buf);
2442 lnum = fpos->lnum;
2443 col = fpos->col;
2444 }
2445 else
2446 col = 0;
2447
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 if (options & GETF_SWITCH)
2449 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002450 // If 'switchbuf' contains "useopen": jump to first window containing
2451 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002452 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002454
Bram Moolenaarc667da52019-11-30 20:52:27 +01002455 // If 'switchbuf' contains "usetab": jump to first window in any tab
2456 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002457 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002458 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002459
Bram Moolenaarc667da52019-11-30 20:52:27 +01002460 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2461 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002462 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002463 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002465 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002466 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002467 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2468 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002470 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 }
2472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473
2474 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002475 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2476 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 {
2478 --RedrawingDisabled;
2479
Bram Moolenaarc667da52019-11-30 20:52:27 +01002480 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 if (!p_sol && col != 0)
2482 {
2483 curwin->w_cursor.col = col;
2484 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 curwin->w_set_curswant = TRUE;
2487 }
2488 return OK;
2489 }
2490 --RedrawingDisabled;
2491 return FAIL;
2492}
2493
2494/*
2495 * go to the last know line number for the current buffer
2496 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002497 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002498buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499{
2500 pos_T *fpos;
2501
2502 fpos = buflist_findfpos(curbuf);
2503
2504 curwin->w_cursor.lnum = fpos->lnum;
2505 check_cursor_lnum();
2506
2507 if (p_sol)
2508 curwin->w_cursor.col = 0;
2509 else
2510 {
2511 curwin->w_cursor.col = fpos->col;
2512 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 curwin->w_set_curswant = TRUE;
2515 }
2516}
2517
Bram Moolenaar81695252004-12-29 20:58:21 +00002518#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2519/*
2520 * Find file in buffer list by name (it has to be for the current window).
2521 * Returns NULL if not found.
2522 */
2523 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002524buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002525{
2526 char_u *ffname;
2527 buf_T *buf = NULL;
2528
Bram Moolenaarc667da52019-11-30 20:52:27 +01002529 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002530 ffname = FullName_save(fname,
2531#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002532 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002533#else
2534 FALSE
2535#endif
2536 );
2537 if (ffname != NULL)
2538 {
2539 buf = buflist_findname(ffname);
2540 vim_free(ffname);
2541 }
2542 return buf;
2543}
2544#endif
2545
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546/*
2547 * Find file in buffer list by name (it has to be for the current window).
2548 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002549 * Skips dummy buffers.
2550 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 */
2552 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002553buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
2555#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002556 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557
2558 if (mch_stat((char *)ffname, &st) < 0)
2559 st.st_dev = (dev_T)-1;
2560 return buflist_findname_stat(ffname, &st);
2561}
2562
2563/*
2564 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2565 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002566 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 */
2568 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002569buflist_findname_stat(
2570 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002571 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572{
2573#endif
2574 buf_T *buf;
2575
Bram Moolenaarc667da52019-11-30 20:52:27 +01002576 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002577 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002578 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579#ifdef UNIX
2580 , stp
2581#endif
2582 ))
2583 return buf;
2584 return NULL;
2585}
2586
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587/*
2588 * Find file in buffer list by a regexp pattern.
2589 * Return fnum of the found buffer.
2590 * Return < 0 for error.
2591 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002593buflist_findpat(
2594 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002595 char_u *pattern_end, // pointer to first char after pattern
2596 int unlisted, // find unlisted buffers
2597 int diffmode UNUSED, // find diff-mode buffers only
2598 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599{
2600 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 int match = -1;
2602 int find_listed;
2603 char_u *pat;
2604 char_u *patend;
2605 int attempt;
2606 char_u *p;
2607 int toggledollar;
2608
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002609 // "%" is current file, "%%" or "#" is alternate file
2610 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2611 || (in_vim9script() && pattern_end == pattern + 2
2612 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002614 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002616 else
2617 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618#ifdef FEAT_DIFF
2619 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2620 match = -1;
2621#endif
2622 }
2623
2624 /*
2625 * Try four ways of matching a listed buffer:
2626 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002627 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 * attempt == 2: with '$' at end (only match at end)
2629 * attempt == 3: with '^' at start and '$' at end (only full match)
2630 * Repeat this for finding an unlisted buffer if there was no matching
2631 * listed buffer.
2632 */
2633 else
2634 {
2635 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2636 if (pat == NULL)
2637 return -1;
2638 patend = pat + STRLEN(pat) - 1;
2639 toggledollar = (patend > pat && *patend == '$');
2640
Bram Moolenaarc667da52019-11-30 20:52:27 +01002641 // First try finding a listed buffer. If not found and "unlisted"
2642 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 find_listed = TRUE;
2644 for (;;)
2645 {
2646 for (attempt = 0; attempt <= 3; ++attempt)
2647 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002648 regmatch_T regmatch;
2649
Bram Moolenaarc667da52019-11-30 20:52:27 +01002650 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002652 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002654 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002656 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002657 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 {
2659 vim_free(pat);
2660 return -1;
2661 }
2662
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002663 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 if (buf->b_p_bl == find_listed
2665#ifdef FEAT_DIFF
2666 && (!diffmode || diff_mode_buf(buf))
2667#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002668 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002670 if (curtab_only)
2671 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002672 // Ignore the match if the buffer is not open in
2673 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002674 win_T *wp;
2675
Bram Moolenaar29323592016-07-24 22:04:11 +02002676 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002677 if (wp->w_buffer == buf)
2678 break;
2679 if (wp == NULL)
2680 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002681 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002682 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 {
2684 match = -2;
2685 break;
2686 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002687 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 }
2689
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002690 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002691 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 break;
2693 }
2694
Bram Moolenaarc667da52019-11-30 20:52:27 +01002695 // Only search for unlisted buffers if there was no match with
2696 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 if (!unlisted || !find_listed || match != -1)
2698 break;
2699 find_listed = FALSE;
2700 }
2701
2702 vim_free(pat);
2703 }
2704
2705 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002706 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002708 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 return match;
2710}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711
Bram Moolenaar52410572019-10-27 05:12:45 +01002712#ifdef FEAT_VIMINFO
2713typedef struct {
2714 buf_T *buf;
2715 char_u *match;
2716} bufmatch_T;
2717#endif
2718
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719/*
2720 * Find all buffer names that match.
2721 * For command line expansion of ":buf" and ":sbuf".
2722 * Return OK if matches found, FAIL otherwise.
2723 */
2724 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002725ExpandBufnames(
2726 char_u *pat,
2727 int *num_file,
2728 char_u ***file,
2729 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730{
2731 int count = 0;
2732 buf_T *buf;
2733 int round;
2734 char_u *p;
2735 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002736 char_u *patc;
Bram Moolenaar52410572019-10-27 05:12:45 +01002737#ifdef FEAT_VIMINFO
2738 bufmatch_T *matches = NULL;
2739#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740
Bram Moolenaarc667da52019-11-30 20:52:27 +01002741 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 *file = NULL;
2743
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002744#ifdef FEAT_DIFF
2745 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2746 return FAIL;
2747#endif
2748
Bram Moolenaarc667da52019-11-30 20:52:27 +01002749 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002750 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002752 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002753 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002755 STRCPY(patc, "\\(^\\|[\\/]\\)");
2756 STRCPY(patc + 11, pat + 1);
2757 }
2758 else
2759 patc = pat;
2760
2761 /*
2762 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002763 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002764 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002765 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002766 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002767 regmatch_T regmatch;
2768
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002769 if (attempt > 0 && patc == pat)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002770 break; // there was no anchor, no need to try again
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002771 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2772 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002773 {
2774 if (patc != pat)
2775 vim_free(patc);
2776 return FAIL;
2777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778
2779 /*
2780 * round == 1: Count the matches.
2781 * round == 2: Build the array to keep the matches.
2782 */
2783 for (round = 1; round <= 2; ++round)
2784 {
2785 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002786 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002788 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002790#ifdef FEAT_DIFF
2791 if (options & BUF_DIFF_FILTER)
2792 // Skip buffers not suitable for
2793 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002794 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002795 continue;
2796#endif
2797
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002798 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 if (p != NULL)
2800 {
2801 if (round == 1)
2802 ++count;
2803 else
2804 {
2805 if (options & WILD_HOME_REPLACE)
2806 p = home_replace_save(buf, p);
2807 else
2808 p = vim_strsave(p);
Bram Moolenaar52410572019-10-27 05:12:45 +01002809#ifdef FEAT_VIMINFO
2810 if (matches != NULL)
2811 {
2812 matches[count].buf = buf;
2813 matches[count].match = p;
2814 count++;
2815 }
2816 else
2817#endif
2818 (*file)[count++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 }
2820 }
2821 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002822 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 break;
2824 if (round == 1)
2825 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002826 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 if (*file == NULL)
2828 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002829 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002830 if (patc != pat)
2831 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 return FAIL;
2833 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002834#ifdef FEAT_VIMINFO
2835 if (options & WILD_BUFLASTUSED)
2836 matches = ALLOC_MULT(bufmatch_T, count);
2837#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 }
2839 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002840 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002841 if (count) // match(es) found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 break;
2843 }
2844
Bram Moolenaar05159a02005-02-26 23:04:13 +00002845 if (patc != pat)
2846 vim_free(patc);
2847
Bram Moolenaar52410572019-10-27 05:12:45 +01002848#ifdef FEAT_VIMINFO
2849 if (matches != NULL)
2850 {
2851 int i;
2852 if (count > 1)
2853 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2854 // if the current buffer is first in the list, place it at the end
2855 if (matches[0].buf == curbuf)
2856 {
2857 for (i = 1; i < count; i++)
2858 (*file)[i-1] = matches[i].match;
2859 (*file)[count-1] = matches[0].match;
2860 }
2861 else
2862 {
2863 for (i = 0; i < count; i++)
2864 (*file)[i] = matches[i].match;
2865 }
2866 vim_free(matches);
2867 }
2868#endif
2869
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 *num_file = count;
2871 return (count == 0 ? FAIL : OK);
2872}
2873
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874/*
2875 * Check for a match on the file name for buffer "buf" with regprog "prog".
2876 */
2877 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002878buflist_match(
2879 regmatch_T *rmp,
2880 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002881 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882{
2883 char_u *match;
2884
Bram Moolenaarc667da52019-11-30 20:52:27 +01002885 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002886 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002888 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889
2890 return match;
2891}
2892
2893/*
2894 * Try matching the regexp in "prog" with file name "name".
2895 * Return "name" when there is a match, NULL when not.
2896 */
2897 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002898fname_match(
2899 regmatch_T *rmp,
2900 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002901 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902{
2903 char_u *match = NULL;
2904 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
2906 if (name != NULL)
2907 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002908 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002909 rmp->rm_ic = p_fic || ignore_case;
2910 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 match = name;
2912 else
2913 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002914 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002916 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 match = name;
2918 vim_free(p);
2919 }
2920 }
2921
2922 return match;
2923}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924
2925/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002926 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 */
2928 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002929buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002931 char_u key[VIM_SIZEOF_INT * 2 + 1];
2932 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
2934 if (nr == 0)
2935 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002936 sprintf((char *)key, "%x", nr);
2937 hi = hash_find(&buf_hashtab, key);
2938
2939 if (!HASHITEM_EMPTY(hi))
2940 return (buf_T *)(hi->hi_key
2941 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 return NULL;
2943}
2944
2945/*
2946 * Get name of file 'n' in the buffer list.
2947 * When the file has no name an empty string is returned.
2948 * home_replace() is used to shorten the file name (used for marks).
2949 * Returns a pointer to allocated memory, of NULL when failed.
2950 */
2951 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002952buflist_nr2name(
2953 int n,
2954 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002955 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956{
2957 buf_T *buf;
2958
2959 buf = buflist_findnr(n);
2960 if (buf == NULL)
2961 return NULL;
2962 return home_replace_save(helptail ? buf : NULL,
2963 fullname ? buf->b_ffname : buf->b_fname);
2964}
2965
2966/*
2967 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2968 * When "copy_options" is TRUE save the local window option values.
2969 * When "lnum" is 0 only do the options.
2970 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002971 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002972buflist_setfpos(
2973 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002974 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01002975 linenr_T lnum,
2976 colnr_T col,
2977 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978{
2979 wininfo_T *wip;
2980
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002981 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 if (wip->wi_win == win)
2983 break;
2984 if (wip == NULL)
2985 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002986 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002987 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 if (wip == NULL)
2989 return;
2990 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002991 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 lnum = 1;
2993 }
2994 else
2995 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002996 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 if (wip->wi_prev)
2998 wip->wi_prev->wi_next = wip->wi_next;
2999 else
3000 buf->b_wininfo = wip->wi_next;
3001 if (wip->wi_next)
3002 wip->wi_next->wi_prev = wip->wi_prev;
3003 if (copy_options && wip->wi_optset)
3004 {
3005 clear_winopt(&wip->wi_opt);
3006#ifdef FEAT_FOLDING
3007 deleteFoldRecurse(&wip->wi_folds);
3008#endif
3009 }
3010 }
3011 if (lnum != 0)
3012 {
3013 wip->wi_fpos.lnum = lnum;
3014 wip->wi_fpos.col = col;
3015 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003016 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003018 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3020#ifdef FEAT_FOLDING
3021 wip->wi_fold_manual = win->w_fold_manual;
3022 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3023#endif
3024 wip->wi_optset = TRUE;
3025 }
3026
Bram Moolenaarc667da52019-11-30 20:52:27 +01003027 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 wip->wi_next = buf->b_wininfo;
3029 buf->b_wininfo = wip;
3030 wip->wi_prev = NULL;
3031 if (wip->wi_next)
3032 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003035#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003036/*
3037 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3038 * page. That's because a diff is local to a tab page.
3039 */
3040 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003041wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003042{
3043 win_T *wp;
3044
3045 if (wip->wi_opt.wo_diff)
3046 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003047 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003048 // return FALSE when it's a window in the current tab page, thus
3049 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003050 if (wip->wi_win == wp)
3051 return FALSE;
3052 return TRUE;
3053 }
3054 return FALSE;
3055}
3056#endif
3057
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058/*
3059 * Find info for the current window in buffer "buf".
3060 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003061 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003062 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3063 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 * Returns NULL when there isn't any info.
3065 */
3066 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003067find_wininfo(
3068 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003069 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003070 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071{
3072 wininfo_T *wip;
3073
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003074 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003075 if (wip->wi_win == curwin
3076#ifdef FEAT_DIFF
3077 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3078#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003079
3080 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003082
Bram Moolenaarc667da52019-11-30 20:52:27 +01003083 // If no wininfo for curwin, use the first in the list (that doesn't have
3084 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003085 // If "need_options" is TRUE skip entries that don't have options set,
3086 // unless the window is editing "buf", so we can copy from the window
3087 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003088 if (wip == NULL)
3089 {
3090#ifdef FEAT_DIFF
3091 if (skip_diff_buffer)
3092 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003093 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003094 if (!wininfo_other_tab_diff(wip)
3095 && (!need_options || wip->wi_optset
3096 || (wip->wi_win != NULL
3097 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003098 break;
3099 }
3100 else
3101#endif
3102 wip = buf->b_wininfo;
3103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 return wip;
3105}
3106
3107/*
3108 * Reset the local window options to the values last used in this window.
3109 * If the buffer wasn't used in this window before, use the values from
3110 * the most recently used window. If the values were never set, use the
3111 * global values for the window.
3112 */
3113 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003114get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115{
3116 wininfo_T *wip;
3117
3118 clear_winopt(&curwin->w_onebuf_opt);
3119#ifdef FEAT_FOLDING
3120 clearFolding(curwin);
3121#endif
3122
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003123 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003124 if (wip != NULL && wip->wi_win != NULL
3125 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003127 // The buffer is currently displayed in the window: use the actual
3128 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003129 win_T *wp = wip->wi_win;
3130
3131 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3132#ifdef FEAT_FOLDING
3133 curwin->w_fold_manual = wp->w_fold_manual;
3134 curwin->w_foldinvalid = TRUE;
3135 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3136#endif
3137 }
3138 else if (wip != NULL && wip->wi_optset)
3139 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003140 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3142#ifdef FEAT_FOLDING
3143 curwin->w_fold_manual = wip->wi_fold_manual;
3144 curwin->w_foldinvalid = TRUE;
3145 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3146#endif
3147 }
3148 else
3149 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3150
3151#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003152 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 if (p_fdls >= 0)
3154 curwin->w_p_fdl = p_fdls;
3155#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003156 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157}
3158
3159/*
3160 * Find the position (lnum and col) for the buffer 'buf' for the current
3161 * window.
3162 * Returns a pointer to no_position if no position is found.
3163 */
3164 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003165buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166{
3167 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003168 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003170 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 if (wip != NULL)
3172 return &(wip->wi_fpos);
3173 else
3174 return &no_position;
3175}
3176
3177/*
3178 * Find the lnum for the buffer 'buf' for the current window.
3179 */
3180 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003181buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182{
3183 return buflist_findfpos(buf)->lnum;
3184}
3185
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003187 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003190buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191{
Bram Moolenaar52410572019-10-27 05:12:45 +01003192 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 int len;
3194 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003195 int ro_char;
3196 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003197#ifdef FEAT_TERMINAL
3198 int job_running;
3199 int job_none_open;
3200#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
Bram Moolenaar52410572019-10-27 05:12:45 +01003202#ifdef FEAT_VIMINFO
3203 garray_T buflist;
3204 buf_T **buflist_data = NULL, **p;
3205
3206 if (vim_strchr(eap->arg, 't'))
3207 {
3208 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003209 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003210 {
3211 if (ga_grow(&buflist, 1) == OK)
3212 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3213 }
3214
3215 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3216 sizeof(buf_T *), buf_compare);
3217
Bram Moolenaar3b991522019-11-06 23:26:20 +01003218 buflist_data = (buf_T **)buflist.ga_data;
3219 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003220 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003221 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003222
Bram Moolenaar3b991522019-11-06 23:26:20 +01003223 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003224 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3225 : buf->b_next)
3226#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003228#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003230#ifdef FEAT_TERMINAL
3231 job_running = term_job_running(buf->b_term);
3232 job_none_open = job_running && term_none_open(buf->b_term);
3233#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003234 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003235 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3236 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3237 || (vim_strchr(eap->arg, '+')
3238 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3239 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003240 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003241 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003242 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3243#ifdef FEAT_TERMINAL
3244 || (vim_strchr(eap->arg, 'R')
3245 && (!job_running || (job_running && job_none_open)))
3246 || (vim_strchr(eap->arg, '?')
3247 && (!job_running || (job_running && !job_none_open)))
3248 || (vim_strchr(eap->arg, 'F')
3249 && (job_running || buf->b_term == NULL))
3250#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003251 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3252 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3253 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3254 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3255 || (vim_strchr(eap->arg, '#')
3256 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003259 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 else
3261 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003262 if (message_filtered(NameBuff))
3263 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003265 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3266 : (bufIsChanged(buf) ? '+' : ' ');
3267#ifdef FEAT_TERMINAL
3268 if (term_job_running(buf->b_term))
3269 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003270 if (term_none_open(buf->b_term))
3271 ro_char = '?';
3272 else
3273 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003274 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3275 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003276 }
3277 else if (buf->b_term != NULL)
3278 ro_char = 'F';
3279 else
3280#endif
3281 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3282
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003283 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003284 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 buf->b_fnum,
3286 buf->b_p_bl ? ' ' : 'u',
3287 buf == curbuf ? '%' :
3288 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3289 buf->b_ml.ml_mfp == NULL ? ' ' :
3290 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003291 ro_char,
3292 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003293 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003294 if (len > IOSIZE - 20)
3295 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296
Bram Moolenaarc667da52019-11-30 20:52:27 +01003297 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 i = 40 - vim_strsize(IObuff);
3299 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003301 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003302#ifdef FEAT_VIMINFO
3303 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3304 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3305 else
3306#endif
3307 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3308 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003309 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003311 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 ui_breakcheck();
3313 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003314
3315#ifdef FEAT_VIMINFO
3316 if (buflist_data)
3317 ga_clear(&buflist);
3318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320
3321/*
3322 * Get file name and line number for file 'fnum'.
3323 * Used by DoOneCmd() for translating '%' and '#'.
3324 * Used by insert_reg() and cmdline_paste() for '#' register.
3325 * Return FAIL if not found, OK for success.
3326 */
3327 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003328buflist_name_nr(
3329 int fnum,
3330 char_u **fname,
3331 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332{
3333 buf_T *buf;
3334
3335 buf = buflist_findnr(fnum);
3336 if (buf == NULL || buf->b_fname == NULL)
3337 return FAIL;
3338
3339 *fname = buf->b_fname;
3340 *lnum = buflist_findlnum(buf);
3341
3342 return OK;
3343}
3344
3345/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003346 * Set the file name for "buf"' to "ffname_arg", short file name to
3347 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 * The file name with the full path is also remembered, for when :cd is used.
3349 * Returns FAIL for failure (file name already in use by other buffer)
3350 * OK otherwise.
3351 */
3352 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003353setfname(
3354 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003355 char_u *ffname_arg,
3356 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003357 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003359 char_u *ffname = ffname_arg;
3360 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003361 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003363 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364#endif
3365
3366 if (ffname == NULL || *ffname == NUL)
3367 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003368 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003369 if (buf->b_sfname != buf->b_ffname)
3370 VIM_CLEAR(buf->b_sfname);
3371 else
3372 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003373 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374#ifdef UNIX
3375 st.st_dev = (dev_T)-1;
3376#endif
3377 }
3378 else
3379 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003380 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3381 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 return FAIL;
3383
3384 /*
3385 * if the file name is already used in another buffer:
3386 * - if the buffer is loaded, fail
3387 * - if the buffer is not loaded, delete it from the list
3388 */
3389#ifdef UNIX
3390 if (mch_stat((char *)ffname, &st) < 0)
3391 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003392#endif
3393 if (!(buf->b_flags & BF_DUMMY))
3394#ifdef UNIX
3395 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003397 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398#endif
3399 if (obuf != NULL && obuf != buf)
3400 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003401 win_T *win;
3402 tabpage_T *tab;
3403 int in_use = FALSE;
3404
3405 // during startup a window may use a buffer that is not loaded yet
3406 FOR_ALL_TAB_WINDOWS(tab, win)
3407 if (win->w_buffer == obuf)
3408 in_use = TRUE;
3409
3410 // it's loaded or used in a window, fail
3411 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 {
3413 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003414 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 vim_free(ffname);
3416 return FAIL;
3417 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003418 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003419 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 }
3421 sfname = vim_strsave(sfname);
3422 if (ffname == NULL || sfname == NULL)
3423 {
3424 vim_free(sfname);
3425 vim_free(ffname);
3426 return FAIL;
3427 }
3428#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003429 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003431 if (buf->b_sfname != buf->b_ffname)
3432 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 buf->b_ffname = ffname;
3435 buf->b_sfname = sfname;
3436 }
3437 buf->b_fname = buf->b_sfname;
3438#ifdef UNIX
3439 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003440 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 else
3442 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003443 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 buf->b_dev = st.st_dev;
3445 buf->b_ino = st.st_ino;
3446 }
3447#endif
3448
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450
3451 buf_name_changed(buf);
3452 return OK;
3453}
3454
3455/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003456 * Crude way of changing the name of a buffer. Use with care!
3457 * The name should be relative to the current directory.
3458 */
3459 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003460buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003461{
3462 buf_T *buf;
3463
3464 buf = buflist_findnr(fnum);
3465 if (buf != NULL)
3466 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003467 if (buf->b_sfname != buf->b_ffname)
3468 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003469 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003470 buf->b_ffname = vim_strsave(name);
3471 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003472 // Allocate ffname and expand into full path. Also resolves .lnk
3473 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003474 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003475 buf->b_fname = buf->b_sfname;
3476 }
3477}
3478
3479/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 * Take care of what needs to be done when the name of buffer "buf" has
3481 * changed.
3482 */
3483 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003484buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485{
3486 /*
3487 * If the file name changed, also change the name of the swapfile
3488 */
3489 if (buf->b_ml.ml_mfp != NULL)
3490 ml_setname(buf);
3491
3492 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003493 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494#ifdef FEAT_TITLE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003495 maketitle(); // set window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003497 status_redraw_all(); // status lines need to be redrawn
3498 fmarks_check_names(buf); // check named file marks
3499 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500}
3501
3502/*
3503 * set alternate file name for current window
3504 *
3505 * Used by do_one_cmd(), do_write() and do_ecmd().
3506 * Return the buffer.
3507 */
3508 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003509setaltfname(
3510 char_u *ffname,
3511 char_u *sfname,
3512 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513{
3514 buf_T *buf;
3515
Bram Moolenaarc667da52019-11-30 20:52:27 +01003516 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003518 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 curwin->w_alt_fnum = buf->b_fnum;
3520 return buf;
3521}
3522
3523/*
3524 * Get alternate file name for current window.
3525 * Return NULL if there isn't any, and give error message if requested.
3526 */
3527 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003528getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003529 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530{
3531 char_u *fname;
3532 linenr_T dummy;
3533
3534 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3535 {
3536 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003537 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 return NULL;
3539 }
3540 return fname;
3541}
3542
3543/*
3544 * Add a file name to the buflist and return its number.
3545 * Uses same flags as buflist_new(), except BLN_DUMMY.
3546 *
3547 * used by qf_init(), main() and doarglist()
3548 */
3549 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003550buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551{
3552 buf_T *buf;
3553
3554 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3555 if (buf != NULL)
3556 return buf->b_fnum;
3557 return 0;
3558}
3559
3560#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3561/*
3562 * Adjust slashes in file names. Called after 'shellslash' was set.
3563 */
3564 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003565buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566{
3567 buf_T *bp;
3568
Bram Moolenaar29323592016-07-24 22:04:11 +02003569 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 {
3571 if (bp->b_ffname != NULL)
3572 slash_adjust(bp->b_ffname);
3573 if (bp->b_sfname != NULL)
3574 slash_adjust(bp->b_sfname);
3575 }
3576}
3577#endif
3578
3579/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003580 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 * Also save the local window option values.
3582 */
3583 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003584buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003586 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587}
3588
3589/*
3590 * Return TRUE if 'ffname' is not the same file as current file.
3591 * Fname must have a full path (expanded by mch_FullName()).
3592 */
3593 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003594otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595{
3596 return otherfile_buf(curbuf, ffname
3597#ifdef UNIX
3598 , NULL
3599#endif
3600 );
3601}
3602
3603 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003604otherfile_buf(
3605 buf_T *buf,
3606 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003608 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003610 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003612 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3614 return TRUE;
3615 if (fnamecmp(ffname, buf->b_ffname) == 0)
3616 return FALSE;
3617#ifdef UNIX
3618 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003619 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620
Bram Moolenaarc667da52019-11-30 20:52:27 +01003621 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 if (stp == NULL)
3623 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003624 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 st.st_dev = (dev_T)-1;
3626 stp = &st;
3627 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003628 // Use dev/ino to check if the files are the same, even when the names
3629 // are different (possible with links). Still need to compare the
3630 // name above, for when the file doesn't exist yet.
3631 // Problem: The dev/ino changes when a file is deleted (and created
3632 // again) and remains the same when renamed/moved. We don't want to
3633 // mch_stat() each buffer each time, that would be too slow. Get the
3634 // dev/ino again when they appear to match, but not when they appear
3635 // to be different: Could skip a buffer when it's actually the same
3636 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 if (buf_same_ino(buf, stp))
3638 {
3639 buf_setino(buf);
3640 if (buf_same_ino(buf, stp))
3641 return FALSE;
3642 }
3643 }
3644#endif
3645 return TRUE;
3646}
3647
3648#if defined(UNIX) || defined(PROTO)
3649/*
3650 * Set inode and device number for a buffer.
3651 * Must always be called when b_fname is changed!.
3652 */
3653 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003654buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003656 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657
3658 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3659 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003660 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 buf->b_dev = st.st_dev;
3662 buf->b_ino = st.st_ino;
3663 }
3664 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003665 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666}
3667
3668/*
3669 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3670 */
3671 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003672buf_same_ino(
3673 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003674 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003676 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 && stp->st_dev == buf->b_dev
3678 && stp->st_ino == buf->b_ino);
3679}
3680#endif
3681
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003682/*
3683 * Print info about the current buffer.
3684 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003686fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003687 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003688 int shorthelp,
3689 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690{
3691 char_u *name;
3692 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003693 char *p;
3694 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003695 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003697 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 if (buffer == NULL)
3699 return;
3700
Bram Moolenaarc667da52019-11-30 20:52:27 +01003701 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003703 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 p = buffer + STRLEN(buffer);
3705 }
3706 else
3707 p = buffer;
3708
3709 *p++ = '"';
3710 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003711 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 else
3713 {
3714 if (!fullname && curbuf->b_fname != NULL)
3715 name = curbuf->b_fname;
3716 else
3717 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003718 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 (int)(IOSIZE - (p - buffer)), TRUE);
3720 }
3721
Bram Moolenaar32526b32019-01-19 17:43:09 +01003722 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 curbufIsChanged() ? (shortmess(SHM_MOD)
3724 ? " [+]" : _(" [Modified]")) : " ",
3725 (curbuf->b_flags & BF_NOTEDITED)
3726#ifdef FEAT_QUICKFIX
3727 && !bt_dontwrite(curbuf)
3728#endif
3729 ? _("[Not edited]") : "",
3730 (curbuf->b_flags & BF_NEW)
3731#ifdef FEAT_QUICKFIX
3732 && !bt_dontwrite(curbuf)
3733#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003734 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003736 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 : _("[readonly]")) : "",
3738 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3739 || curbuf->b_p_ro) ?
3740 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003741 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3742 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 if (curwin->w_cursor.lnum > 1000000L)
3744 n = (int)(((long)curwin->w_cursor.lnum) /
3745 ((long)curbuf->b_ml.ml_line_count / 100L));
3746 else
3747 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3748 (long)curbuf->b_ml.ml_line_count);
3749 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003750 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751#ifdef FEAT_CMDL_INFO
3752 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003753 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003754 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003755 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3756 curbuf->b_ml.ml_line_count),
3757 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758#endif
3759 else
3760 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003761 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 _("line %ld of %ld --%d%%-- col "),
3763 (long)curwin->w_cursor.lnum,
3764 (long)curbuf->b_ml.ml_line_count,
3765 n);
3766 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003767 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003768 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3770 }
3771
Bram Moolenaar32526b32019-01-19 17:43:09 +01003772 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3773 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774
3775 if (dont_truncate)
3776 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003777 // Temporarily set msg_scroll to avoid the message being truncated.
3778 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 msg_start();
3780 n = msg_scroll;
3781 msg_scroll = TRUE;
3782 msg(buffer);
3783 msg_scroll = n;
3784 }
3785 else
3786 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003787 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003789 // Need to repeat the message after redrawing when:
3790 // - When restart_edit is set (otherwise there will be a delay
3791 // before redrawing).
3792 // - When the screen was scrolled but there is no wait-return
3793 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003794 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 }
3796
3797 vim_free(buffer);
3798}
3799
3800 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003801col_print(
3802 char_u *buf,
3803 size_t buflen,
3804 int col,
3805 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806{
3807 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003808 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003810 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811}
3812
3813#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814static char_u *lasttitle = NULL;
3815static char_u *lasticon = NULL;
3816
Bram Moolenaar84a93082018-06-16 22:58:15 +02003817/*
3818 * Put the file name in the title bar and icon of the window.
3819 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003821maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822{
3823 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003824 char_u *title_str = NULL;
3825 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 int maxlen = 0;
3827 int len;
3828 int mustset;
3829 char_u buf[IOSIZE];
3830 int off;
3831
3832 if (!redrawing())
3833 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003834 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 need_maketitle = TRUE;
3836 return;
3837 }
3838
3839 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003840 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003841 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842
3843 if (p_title)
3844 {
3845 if (p_titlelen > 0)
3846 {
3847 maxlen = p_titlelen * Columns / 100;
3848 if (maxlen < 10)
3849 maxlen = 10;
3850 }
3851
Bram Moolenaar84a93082018-06-16 22:58:15 +02003852 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 if (*p_titlestring != NUL)
3854 {
3855#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003856 if (stl_syntax & STL_IN_TITLE)
3857 {
3858 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003859 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003860
3861# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003862 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003863# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003864 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003865 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003866 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003867 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003868 set_string_option_direct((char_u *)"titlestring", -1,
3869 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 else
3872#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003873 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 }
3875 else
3876 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003877 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878
Bram Moolenaar2c666692012-09-05 13:30:40 +02003879#define SPACE_FOR_FNAME (IOSIZE - 100)
3880#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003881#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003883 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003884#ifdef FEAT_TERMINAL
3885 else if (curbuf->b_term != NULL)
3886 {
3887 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3888 SPACE_FOR_FNAME);
3889 }
3890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 else
3892 {
3893 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003894 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 }
3897
Bram Moolenaar21554412017-07-24 21:44:43 +02003898#ifdef FEAT_TERMINAL
3899 if (curbuf->b_term == NULL)
3900#endif
3901 switch (bufIsChanged(curbuf)
3902 + (curbuf->b_p_ro * 2)
3903 + (!curbuf->b_p_ma * 4))
3904 {
3905 case 1: STRCAT(buf, " +"); break;
3906 case 2: STRCAT(buf, " ="); break;
3907 case 3: STRCAT(buf, " =+"); break;
3908 case 4:
3909 case 6: STRCAT(buf, " -"); break;
3910 case 5:
3911 case 7: STRCAT(buf, " -+"); break;
3912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913
Bram Moolenaar21554412017-07-24 21:44:43 +02003914 if (curbuf->b_fname != NULL
3915#ifdef FEAT_TERMINAL
3916 && curbuf->b_term == NULL
3917#endif
3918 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003920 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 off = (int)STRLEN(buf);
3922 buf[off++] = ' ';
3923 buf[off++] = '(';
3924 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003925 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003927 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 if (isalpha(buf[off]) && buf[off + 1] == ':')
3929 off += 2;
3930#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003931 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003932 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003934 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003935 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003936 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003937 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003941
Bram Moolenaarc667da52019-11-30 20:52:27 +01003942 // Translate unprintable chars and concatenate. Keep some
3943 // room for the server name. When there is no room (very long
3944 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003945 if (off < SPACE_FOR_DIR)
3946 {
3947 p = transstr(buf + off);
3948 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3949 vim_free(p);
3950 }
3951 else
3952 {
3953 vim_strncpy(buf + off, (char_u *)"...",
3954 (size_t)(SPACE_FOR_ARGNR - off));
3955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 STRCAT(buf, ")");
3957 }
3958
Bram Moolenaar2c666692012-09-05 13:30:40 +02003959 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960
3961#if defined(FEAT_CLIENTSERVER)
3962 if (serverName != NULL)
3963 {
3964 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003965 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 }
3967 else
3968#endif
3969 STRCAT(buf, " - VIM");
3970
3971 if (maxlen > 0)
3972 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003973 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003974 if (vim_strsize(buf) > maxlen)
3975 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 }
3977 }
3978 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003979 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980
3981 if (p_icon)
3982 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003983 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 if (*p_iconstring != NUL)
3985 {
3986#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003987 if (stl_syntax & STL_IN_ICON)
3988 {
3989 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003990 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003991
3992# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003993 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003994# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003995 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003996 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003997 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003998 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003999 set_string_option_direct((char_u *)"iconstring", -1,
4000 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 else
4003#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004004 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 }
4006 else
4007 {
4008 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004009 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004010 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004011 p = gettail(curbuf->b_ffname);
4012 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004013 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004014 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 if (len > 100)
4016 {
4017 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004019 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004020 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004022 STRCPY(icon_str, p);
4023 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 }
4025 }
4026
Bram Moolenaar84a93082018-06-16 22:58:15 +02004027 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028
4029 if (mustset)
4030 resettitle();
4031}
4032
4033/*
4034 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4035 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004036 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 */
4038 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004039value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040{
4041 if ((str == NULL) != (*last == NULL)
4042 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4043 {
4044 vim_free(*last);
4045 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004046 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004048 mch_restore_title(
4049 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004052 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004054 return TRUE;
4055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 }
4057 return FALSE;
4058}
4059
4060/*
4061 * Put current window title back (used after calling a shell)
4062 */
4063 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004064resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065{
4066 mch_settitle(lasttitle, lasticon);
4067}
Bram Moolenaarea408852005-06-25 22:49:46 +00004068
4069# if defined(EXITFREE) || defined(PROTO)
4070 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004071free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004072{
4073 vim_free(lasttitle);
4074 vim_free(lasticon);
4075}
4076# endif
4077
Bram Moolenaarc667da52019-11-30 20:52:27 +01004078#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004080#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004081
4082/*
4083 * Used for building in the status line.
4084 */
4085typedef struct
4086{
4087 char_u *stl_start;
4088 int stl_minwid;
4089 int stl_maxwid;
4090 enum {
4091 Normal,
4092 Empty,
4093 Group,
4094 Middle,
4095 Highlight,
4096 TabPage,
4097 Trunc
4098 } stl_type;
4099} stl_item_T;
4100
4101static size_t stl_items_len = 20; // Initial value, grows as needed.
4102static stl_item_T *stl_items = NULL;
4103static int *stl_groupitem = NULL;
4104static stl_hlrec_T *stl_hltab = NULL;
4105static stl_hlrec_T *stl_tabtab = NULL;
4106
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004108 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 * Return length of string in screen cells.
4110 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004111 * Normally works for window "wp", except when working for 'tabline' then it
4112 * is "curwin".
4113 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 * Items are drawn interspersed with the text that surrounds it
4115 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4116 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4117 *
4118 * If maxwidth is not zero, the string will be filled at any middle marker
4119 * or truncated if too long, fillchar is used for all whitespace.
4120 */
4121 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004122build_stl_str_hl(
4123 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004124 char_u *out, // buffer to write into != NameBuff
4125 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004126 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004127 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004128 int fillchar,
4129 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004130 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4131 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132{
Bram Moolenaar10772302019-01-20 18:25:54 +01004133 linenr_T lnum;
4134 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 char_u *p;
4136 char_u *s;
4137 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004138 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004140 win_T *save_curwin;
4141 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004142 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143#endif
4144 int empty_line;
4145 colnr_T virtcol;
4146 long l;
4147 long n;
4148 int prevchar_isflag;
4149 int prevchar_isitem;
4150 int itemisflag;
4151 int fillable;
4152 char_u *str;
4153 long num;
4154 int width;
4155 int itemcnt;
4156 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004157 int group_end_userhl;
4158 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004160#ifdef FEAT_EVAL
4161 int evaldepth;
4162#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 int minwid;
4164 int maxwid;
4165 int zeropad;
4166 char_u base;
4167 char_u opt;
4168#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004169 char_u buf_tmp[TMPLEN];
4170 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004171 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004172 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004173 int save_must_redraw = must_redraw;
4174 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004175
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004176 if (stl_items == NULL)
4177 {
4178 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4179 stl_groupitem = ALLOC_MULT(int, stl_items_len);
4180 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4181 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4182 }
4183
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004184#ifdef FEAT_EVAL
4185 /*
4186 * When the format starts with "%!" then evaluate it as an expression and
4187 * use the result as the actual format string.
4188 */
4189 if (fmt[0] == '%' && fmt[1] == '!')
4190 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004191 typval_T tv;
4192
4193 tv.v_type = VAR_NUMBER;
4194 tv.vval.v_number = wp->w_id;
4195 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4196
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004197 usefmt = eval_to_string_safe(fmt + 2, use_sandbox);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004198 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004199 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004200
4201 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004202 }
4203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204
4205 if (fillchar == 0)
4206 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004207
Bram Moolenaar10772302019-01-20 18:25:54 +01004208 // The cursor in windows other than the current one isn't always
4209 // up-to-date, esp. because of autocommands and timers.
4210 lnum = wp->w_cursor.lnum;
4211 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4212 {
4213 lnum = wp->w_buffer->b_ml.ml_line_count;
4214 wp->w_cursor.lnum = lnum;
4215 }
4216
4217 // Get line & check if empty (cursorpos will show "0-1"). Note that
4218 // p will become invalid when getting another buffer line.
4219 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004220 empty_line = (*p == NUL);
4221
Bram Moolenaar10772302019-01-20 18:25:54 +01004222 // Get the byte value now, in case we need it below. This is more efficient
4223 // than making a copy of the line.
4224 len = STRLEN(p);
4225 if (wp->w_cursor.col > (colnr_T)len)
4226 {
4227 // Line may have changed since checking the cursor column, or the lnum
4228 // was adjusted above.
4229 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004230 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004231 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004232 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004233 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004234 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235
4236 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004237#ifdef FEAT_EVAL
4238 evaldepth = 0;
4239#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 p = out;
4241 curitem = 0;
4242 prevchar_isflag = TRUE;
4243 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004244 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004246 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004247 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004248 size_t new_len = stl_items_len * 3 / 2;
4249 stl_item_T *new_items;
4250 int *new_groupitem;
4251 stl_hlrec_T *new_hlrec;
4252
4253 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4254 if (new_items == NULL)
4255 break;
4256 stl_items = new_items;
4257 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4258 if (new_groupitem == NULL)
4259 break;
4260 stl_groupitem = new_groupitem;
4261 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len);
4262 if (new_hlrec == NULL)
4263 break;
4264 stl_hltab = new_hlrec;
4265 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len);
4266 if (new_hlrec == NULL)
4267 break;
4268 stl_tabtab = new_hlrec;
4269 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004270 }
4271
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 if (*s != NUL && *s != '%')
4273 prevchar_isflag = prevchar_isitem = FALSE;
4274
4275 /*
4276 * Handle up to the next '%' or the end.
4277 */
4278 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4279 *p++ = *s++;
4280 if (*s == NUL || p + 1 >= out + outlen)
4281 break;
4282
4283 /*
4284 * Handle one '%' item.
4285 */
4286 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004287 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004288 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 if (*s == '%')
4290 {
4291 if (p + 1 >= out + outlen)
4292 break;
4293 *p++ = *s++;
4294 prevchar_isflag = prevchar_isitem = FALSE;
4295 continue;
4296 }
4297 if (*s == STL_MIDDLEMARK)
4298 {
4299 s++;
4300 if (groupdepth > 0)
4301 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004302 stl_items[curitem].stl_type = Middle;
4303 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 continue;
4305 }
4306 if (*s == STL_TRUNCMARK)
4307 {
4308 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004309 stl_items[curitem].stl_type = Trunc;
4310 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 continue;
4312 }
4313 if (*s == ')')
4314 {
4315 s++;
4316 if (groupdepth < 1)
4317 continue;
4318 groupdepth--;
4319
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004320 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 *p = NUL;
4322 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004323 if (curitem > stl_groupitem[groupdepth] + 1
4324 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004326 // remove group if all items are empty and highlight group
4327 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004328 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004329 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004330 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004331 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004332 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004333 group_start_userhl = group_end_userhl =
4334 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004335 break;
4336 }
4337 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004338 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004339 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004340 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004342 if (stl_items[n].stl_type == Highlight)
4343 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004344 }
4345 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004347 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 p = t;
4349 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004350 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004351 {
4352 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004353 if (stl_items[n].stl_type == Highlight)
4354 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004355 // adjust the start position of TabPage to the next
4356 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004357 if (stl_items[n].stl_type == TabPage)
4358 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004359 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 }
4361 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004362 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004364 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 if (has_mbyte)
4366 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004367 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004369 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 {
4371 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004372 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 }
4374 }
4375 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004376 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4377 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378
4379 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004380 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004382
4383 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004384 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004385 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386
Bram Moolenaarc667da52019-11-30 20:52:27 +01004387 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004388 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004390 stl_items[l].stl_start -= n;
4391 if (stl_items[l].stl_start < t)
4392 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 }
4394 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004395 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004397 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004398 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 if (n < 0)
4400 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004401 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 n = 0 - n;
4403 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004404 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 }
4406 else
4407 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004408 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004409 l = (n - l) * MB_CHAR2LEN(fillchar);
4410 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004412 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004414 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4415 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004417 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 }
4419 }
4420 continue;
4421 }
4422 minwid = 0;
4423 maxwid = 9999;
4424 zeropad = FALSE;
4425 l = 1;
4426 if (*s == '0')
4427 {
4428 s++;
4429 zeropad = TRUE;
4430 }
4431 if (*s == '-')
4432 {
4433 s++;
4434 l = -1;
4435 }
4436 if (VIM_ISDIGIT(*s))
4437 {
4438 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004439 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 minwid = 0;
4441 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004442 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004444 stl_items[curitem].stl_type = Highlight;
4445 stl_items[curitem].stl_start = p;
4446 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 s++;
4448 curitem++;
4449 continue;
4450 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004451 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4452 {
4453 if (*s == STL_TABCLOSENR)
4454 {
4455 if (minwid == 0)
4456 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004457 // %X ends the close label, go back to the previously
4458 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004459 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004460 if (stl_items[n].stl_type == TabPage
4461 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004462 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004463 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004464 break;
4465 }
4466 }
4467 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004468 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004469 minwid = - minwid;
4470 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004471 stl_items[curitem].stl_type = TabPage;
4472 stl_items[curitem].stl_start = p;
4473 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004474 s++;
4475 curitem++;
4476 continue;
4477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 if (*s == '.')
4479 {
4480 s++;
4481 if (VIM_ISDIGIT(*s))
4482 {
4483 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004484 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 maxwid = 50;
4486 }
4487 }
4488 minwid = (minwid > 50 ? 50 : minwid) * l;
4489 if (*s == '(')
4490 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004491 stl_groupitem[groupdepth++] = curitem;
4492 stl_items[curitem].stl_type = Group;
4493 stl_items[curitem].stl_start = p;
4494 stl_items[curitem].stl_minwid = minwid;
4495 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 s++;
4497 curitem++;
4498 continue;
4499 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004500#ifdef FEAT_EVAL
4501 // Denotes end of expanded %{} block
4502 if (*s == '}' && evaldepth > 0)
4503 {
4504 s++;
4505 evaldepth--;
4506 continue;
4507 }
4508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 if (vim_strchr(STL_ALL, *s) == NULL)
4510 {
4511 s++;
4512 continue;
4513 }
4514 opt = *s++;
4515
Bram Moolenaarc667da52019-11-30 20:52:27 +01004516 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 base = 'D';
4518 itemisflag = FALSE;
4519 fillable = TRUE;
4520 num = -1;
4521 str = NULL;
4522 switch (opt)
4523 {
4524 case STL_FILEPATH:
4525 case STL_FULLPATH:
4526 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004527 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004529 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 else
4531 {
4532 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004533 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4535 }
4536 trans_characters(NameBuff, MAXPATHL);
4537 if (opt != STL_FILENAME)
4538 str = NameBuff;
4539 else
4540 str = gettail(NameBuff);
4541 break;
4542
Bram Moolenaarc667da52019-11-30 20:52:27 +01004543 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004544 {
4545#ifdef FEAT_EVAL
4546 char_u *block_start = s - 1;
4547#endif
4548 int reevaluate = (*s == '%');
4549
4550 if (reevaluate)
4551 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 itemisflag = TRUE;
4553 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004554 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4555 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004557 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 break;
4559 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004560 if (reevaluate)
4561 p[-1] = 0; // remove the % at the end of %{% expr %}
4562 else
4563 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004566 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4567 "%d", curbuf->b_fnum);
4568 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4569 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4570 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004572 save_curbuf = curbuf;
4573 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004574 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 curwin = wp;
4576 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004577 // Visual mode is only valid in the current window.
4578 if (curwin != save_curwin)
4579 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004581 str = eval_to_string_safe(p, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004583 curwin = save_curwin;
4584 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004585 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004586 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004587 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588
4589 if (str != NULL && *str != 0)
4590 {
4591 if (*skipdigits(str) == NUL)
4592 {
4593 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004594 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 itemisflag = FALSE;
4596 }
4597 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004598
4599 // If the output of the expression needs to be evaluated
4600 // replace the %{} block with the result of evaluation
4601 if (reevaluate && str != NULL && *str != 0
4602 && strchr((const char *)str, '%') != NULL
4603 && evaldepth < MAX_STL_EVAL_DEPTH)
4604 {
4605 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4606 size_t str_length = strlen((const char *)str);
4607 size_t fmt_length = strlen((const char *)s);
4608 size_t new_fmt_len = parsed_usefmt
4609 + str_length + fmt_length + 3;
4610 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4611 char_u *new_fmt_p = new_fmt;
4612
4613 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4614 + parsed_usefmt;
4615 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4616 + str_length;
4617 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4618 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4619 + fmt_length;
4620 *new_fmt_p = 0;
4621 new_fmt_p = NULL;
4622
4623 if (usefmt != fmt)
4624 vim_free(usefmt);
4625 VIM_CLEAR(str);
4626 usefmt = new_fmt;
4627 s = usefmt + parsed_usefmt;
4628 evaldepth++;
4629 continue;
4630 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631#endif
4632 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 case STL_LINE:
4635 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4636 ? 0L : (long)(wp->w_cursor.lnum);
4637 break;
4638
4639 case STL_NUMLINES:
4640 num = wp->w_buffer->b_ml.ml_line_count;
4641 break;
4642
4643 case STL_COLUMN:
4644 num = !(State & INSERT) && empty_line
4645 ? 0 : (int)wp->w_cursor.col + 1;
4646 break;
4647
4648 case STL_VIRTCOL:
4649 case STL_VIRTCOL_ALT:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004650 // In list mode virtcol needs to be recomputed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 virtcol = wp->w_virtcol;
Bram Moolenaareed9d462021-02-15 20:38:25 +01004652 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 {
4654 wp->w_p_list = FALSE;
4655 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4656 wp->w_p_list = TRUE;
4657 }
4658 ++virtcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004659 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (opt == STL_VIRTCOL_ALT
4661 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4662 ? 0 : (int)wp->w_cursor.col + 1)))
4663 break;
4664 num = (long)virtcol;
4665 break;
4666
4667 case STL_PERCENTAGE:
4668 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4669 (long)wp->w_buffer->b_ml.ml_line_count);
4670 break;
4671
4672 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004673 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004674 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 break;
4676
4677 case STL_ARGLISTSTAT:
4678 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004679 buf_tmp[0] = 0;
4680 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4681 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 break;
4683
4684 case STL_KEYMAP:
4685 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004686 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4687 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 break;
4689 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004690#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004691 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692#else
4693 num = 0;
4694#endif
4695 break;
4696
4697 case STL_BUFNO:
4698 num = wp->w_buffer->b_fnum;
4699 break;
4700
4701 case STL_OFFSET_X:
4702 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004703 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 case STL_OFFSET:
4705#ifdef FEAT_BYTEOFF
4706 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4707 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4708 0L : l + 1 + (!(State & INSERT) && empty_line ?
4709 0 : (int)wp->w_cursor.col);
4710#endif
4711 break;
4712
4713 case STL_BYTEVAL_X:
4714 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004715 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004717 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 if (num == NL)
4719 num = 0;
4720 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4721 num = NL;
4722 break;
4723
4724 case STL_ROFLAG:
4725 case STL_ROFLAG_ALT:
4726 itemisflag = TRUE;
4727 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004728 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 break;
4730
4731 case STL_HELPFLAG:
4732 case STL_HELPFLAG_ALT:
4733 itemisflag = TRUE;
4734 if (wp->w_buffer->b_help)
4735 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004736 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 break;
4738
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 case STL_FILETYPE:
4740 if (*wp->w_buffer->b_p_ft != NUL
4741 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4742 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004743 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004744 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004745 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 }
4747 break;
4748
4749 case STL_FILETYPE_ALT:
4750 itemisflag = TRUE;
4751 if (*wp->w_buffer->b_p_ft != NUL
4752 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4753 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004754 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004755 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004756 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004758 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 }
4760 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761
Bram Moolenaar4033c552017-09-16 20:54:51 +02004762#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 case STL_PREVIEWFLAG:
4764 case STL_PREVIEWFLAG_ALT:
4765 itemisflag = TRUE;
4766 if (wp->w_p_pvw)
4767 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4768 : _("[Preview]"));
4769 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004770
4771 case STL_QUICKFIX:
4772 if (bt_quickfix(wp->w_buffer))
4773 str = (char_u *)(wp->w_llist_ref
4774 ? _(msg_loclist)
4775 : _(msg_qflist));
4776 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777#endif
4778
4779 case STL_MODIFIED:
4780 case STL_MODIFIED_ALT:
4781 itemisflag = TRUE;
4782 switch ((opt == STL_MODIFIED_ALT)
4783 + bufIsChanged(wp->w_buffer) * 2
4784 + (!wp->w_buffer->b_p_ma) * 4)
4785 {
4786 case 2: str = (char_u *)"[+]"; break;
4787 case 3: str = (char_u *)",+"; break;
4788 case 4: str = (char_u *)"[-]"; break;
4789 case 5: str = (char_u *)",-"; break;
4790 case 6: str = (char_u *)"[+-]"; break;
4791 case 7: str = (char_u *)",+-"; break;
4792 }
4793 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004794
4795 case STL_HIGHLIGHT:
4796 t = s;
4797 while (*s != '#' && *s != NUL)
4798 ++s;
4799 if (*s == '#')
4800 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004801 stl_items[curitem].stl_type = Highlight;
4802 stl_items[curitem].stl_start = p;
4803 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004804 curitem++;
4805 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004806 if (*s != NUL)
4807 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004808 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 }
4810
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004811 stl_items[curitem].stl_start = p;
4812 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 if (str != NULL && *str)
4814 {
4815 t = str;
4816 if (itemisflag)
4817 {
4818 if ((t[0] && t[1])
4819 && ((!prevchar_isitem && *t == ',')
4820 || (prevchar_isflag && *t == ' ')))
4821 t++;
4822 prevchar_isflag = TRUE;
4823 }
4824 l = vim_strsize(t);
4825 if (l > 0)
4826 prevchar_isitem = TRUE;
4827 if (l > maxwid)
4828 {
4829 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 if (has_mbyte)
4831 {
4832 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004833 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 }
4835 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 l -= byte2cells(*t++);
4837 if (p + 1 >= out + outlen)
4838 break;
4839 *p++ = '<';
4840 }
4841 if (minwid > 0)
4842 {
4843 for (; l < minwid && p + 1 < out + outlen; l++)
4844 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004845 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4847 *p++ = ' ';
4848 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004849 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 }
4851 minwid = 0;
4852 }
4853 else
4854 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004855 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004857 // Change a space by fillchar, unless fillchar is '-' and a
4858 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004859 if (fillable && *t == ' '
4860 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4861 MB_CHAR2BYTES(fillchar, p);
4862 else
4863 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 }
4865 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004866 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 }
4868 else if (num >= 0)
4869 {
4870 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4871 char_u nstr[20];
4872
4873 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004874 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 prevchar_isitem = TRUE;
4876 t = nstr;
4877 if (opt == STL_VIRTCOL_ALT)
4878 {
4879 *t++ = '-';
4880 minwid--;
4881 }
4882 *t++ = '%';
4883 if (zeropad)
4884 *t++ = '0';
4885 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004886 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 *t = 0;
4888
4889 for (n = num, l = 1; n >= nbase; n /= nbase)
4890 l++;
4891 if (opt == STL_VIRTCOL_ALT)
4892 l++;
4893 if (l > maxwid)
4894 {
4895 l += 2;
4896 n = l - maxwid;
4897 while (l-- > maxwid)
4898 num /= nbase;
4899 *t++ = '>';
4900 *t++ = '%';
4901 *t = t[-3];
4902 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004903 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4904 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 }
4906 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004907 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4908 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 p += STRLEN(p);
4910 }
4911 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004912 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913
4914 if (opt == STL_VIM_EXPR)
4915 vim_free(str);
4916
4917 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004918 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 curitem++;
4920 }
4921 *p = NUL;
4922 itemcnt = curitem;
4923
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004924#ifdef FEAT_EVAL
4925 if (usefmt != fmt)
4926 vim_free(usefmt);
4927#endif
4928
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 width = vim_strsize(out);
4930 if (maxwidth > 0 && width > maxwidth)
4931 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004932 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 l = 0;
4934 if (itemcnt == 0)
4935 s = out;
4936 else
4937 {
4938 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004939 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004941 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004942 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 break;
4944 }
4945 if (l == itemcnt)
4946 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004947 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004948 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 l = 0;
4950 }
4951 }
4952
4953 if (width - vim_strsize(s) >= maxwidth)
4954 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004955 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 if (has_mbyte)
4957 {
4958 s = out;
4959 width = 0;
4960 for (;;)
4961 {
4962 width += ptr2cells(s);
4963 if (width >= maxwidth)
4964 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004965 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01004967 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004969 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 }
4971 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 s = out + maxwidth - 1;
4973 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004974 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 break;
4976 itemcnt = l;
4977 *s++ = '>';
4978 *s = 0;
4979 }
4980 else
4981 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 if (has_mbyte)
4983 {
4984 n = 0;
4985 while (width >= maxwidth)
4986 {
4987 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004988 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 }
4990 }
4991 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 n = width - maxwidth + 1;
4993 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004994 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 *s = '<';
4996
Bram Moolenaarc667da52019-11-30 20:52:27 +01004997 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 while (++width < maxwidth)
4999 {
5000 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005001 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 *s = NUL;
5003 }
5004
Bram Moolenaarc667da52019-11-30 20:52:27 +01005005 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 for (; l < itemcnt; l++)
5007 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005008 if (stl_items[l].stl_start - n >= s)
5009 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005011 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 }
5013 }
5014 width = maxwidth;
5015 }
5016 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5017 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005018 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005020 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 break;
5022 if (l < itemcnt)
5023 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005024 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5025 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005026 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005027 for (s = stl_items[l].stl_start; s < p;)
5028 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005030 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 width = maxwidth;
5032 }
5033 }
5034
Bram Moolenaarc667da52019-11-30 20:52:27 +01005035 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005036 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005038 *hltab = stl_hltab;
5039 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 for (l = 0; l < itemcnt; l++)
5041 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005042 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005044 sp->start = stl_items[l].stl_start;
5045 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005046 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
5048 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005049 sp->start = NULL;
5050 sp->userhl = 0;
5051 }
5052
Bram Moolenaarc667da52019-11-30 20:52:27 +01005053 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005054 if (tabtab != NULL)
5055 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005056 *tabtab = stl_tabtab;
5057 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005058 for (l = 0; l < itemcnt; l++)
5059 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005060 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005061 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005062 sp->start = stl_items[l].stl_start;
5063 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005064 sp++;
5065 }
5066 }
5067 sp->start = NULL;
5068 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 }
5070
Bram Moolenaarc667da52019-11-30 20:52:27 +01005071 // When inside update_screen we do not want redrawing a stausline, ruler,
5072 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005073 if (updating_screen)
5074 {
5075 must_redraw = save_must_redraw;
5076 curwin->w_redr_type = save_redr_type;
5077 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005078
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 return width;
5080}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005081#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005083#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5084 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005086 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5087 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 */
5089 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005090get_rel_pos(
5091 win_T *wp,
5092 char_u *buf,
5093 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005095 long above; // number of lines above window
5096 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097
Bram Moolenaarc667da52019-11-30 20:52:27 +01005098 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005099 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 above = wp->w_topline - 1;
5101#ifdef FEAT_DIFF
5102 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005103 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005104 above = 0; // All buffer lines are displayed and there is an
5105 // indication of filler lines, that can be considered
5106 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107#endif
5108 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5109 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005110 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5111 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005113 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005115 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 ? (int)(above / ((above + below) / 100L))
5117 : (int)(above * 100L / (above + below)));
5118}
5119#endif
5120
5121/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005122 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 * Return TRUE if it was appended.
5124 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005125 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005126append_arg_number(
5127 win_T *wp,
5128 char_u *buf,
5129 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005130 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131{
5132 char_u *p;
5133
Bram Moolenaarc667da52019-11-30 20:52:27 +01005134 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 return FALSE;
5136
Bram Moolenaarc667da52019-11-30 20:52:27 +01005137 p = buf + STRLEN(buf); // go to the end of the buffer
5138 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 return FALSE;
5140 *p++ = ' ';
5141 *p++ = '(';
5142 if (add_file)
5143 {
5144 STRCPY(p, "file ");
5145 p += 5;
5146 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005147 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5148 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5150 return TRUE;
5151}
5152
5153/*
5154 * If fname is not a full path, make it a full path.
5155 * Returns pointer to allocated memory (NULL for failure).
5156 */
5157 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005158fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159{
5160 /*
5161 * Force expanding the path always for Unix, because symbolic links may
5162 * mess up the full path name, even though it starts with a '/'.
5163 * Also expand when there is ".." in the file name, try to remove it,
5164 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005165 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 * For MS-Windows also expand names like "longna~1" to "longname".
5167 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005168#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 return FullName_save(fname, TRUE);
5170#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005171 if (!vim_isAbsName(fname)
5172 || strstr((char *)fname, "..") != NULL
5173 || strstr((char *)fname, "//") != NULL
5174# ifdef BACKSLASH_IN_FILENAME
5175 || strstr((char *)fname, "\\\\") != NULL
5176# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005177# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005179# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 )
5181 return FullName_save(fname, FALSE);
5182
5183 fname = vim_strsave(fname);
5184
Bram Moolenaar9b942202007-10-03 12:31:33 +00005185# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005186 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005187 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005188# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189
5190 return fname;
5191#endif
5192}
5193
5194/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005195 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5196 * "*ffname" becomes a pointer to allocated memory (or NULL).
5197 * When resolving a link both "*sfname" and "*ffname" will point to the same
5198 * allocated memory.
5199 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005200 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005203fname_expand(
5204 buf_T *buf UNUSED,
5205 char_u **ffname,
5206 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005208 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005210 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005212 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213
5214#ifdef FEAT_SHORTCUT
5215 if (!buf->b_p_bin)
5216 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005217 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005219 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005220 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005221 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 {
5223 vim_free(*ffname);
5224 *ffname = rfname;
5225 *sfname = rfname;
5226 }
5227 }
5228#endif
5229}
5230
5231/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 * Open a window for a number of buffers.
5233 */
5234 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005235ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236{
5237 buf_T *buf;
5238 win_T *wp, *wpnext;
5239 int split_ret = OK;
5240 int p_ea_save;
5241 int open_wins = 0;
5242 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005243 int count; // Maximum number of windows to open.
5244 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005245 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005246 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247
Bram Moolenaarc667da52019-11-30 20:52:27 +01005248 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 count = 9999;
5250 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005251 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5253 all = FALSE;
5254 else
5255 all = TRUE;
5256
5257 setpcmark();
5258
5259#ifdef FEAT_GUI
5260 need_mouse_correct = TRUE;
5261#endif
5262
5263 /*
5264 * Close superfluous windows (two windows for the same buffer).
5265 * Also close windows that are not full-width.
5266 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005267 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005268 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005269 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005271 tpnext = curtab->tp_next;
5272 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005274 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005275 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1004402020-10-24 20:49:43 +02005276 || ((cmdmod.cmod_split & WSP_VERT)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005277 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005278 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005279 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005280 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005281 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005282 {
5283 win_close(wp, FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01005284 wpnext = firstwin; // just in case an autocommand does
5285 // something strange with windows
5286 tpnext = first_tabpage; // start all over...
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005287 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005288 }
5289 else
5290 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005292
Bram Moolenaarc667da52019-11-30 20:52:27 +01005293 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005294 if (had_tab == 0 || tpnext == NULL)
5295 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005296 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 }
5298
5299 /*
5300 * Go through the buffer list. When a buffer doesn't have a window yet,
5301 * open one. Otherwise move the window to the right position.
5302 * Watch out for autocommands that delete buffers or windows!
5303 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005304 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5309 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005310 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5312 continue;
5313
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005314 if (had_tab != 0)
5315 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005316 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005317 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005318 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005319 else
5320 wp = NULL;
5321 }
5322 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005323 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005324 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005325 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005326 if (wp->w_buffer == buf)
5327 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005328 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005329 if (wp != NULL)
5330 win_move_after(wp, curwin);
5331 }
5332
5333 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005335 bufref_T bufref;
5336
5337 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005338
Bram Moolenaarc667da52019-11-30 20:52:27 +01005339 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005341 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5343 ++open_wins;
5344 p_ea = p_ea_save;
5345 if (split_ret == FAIL)
5346 continue;
5347
Bram Moolenaarc667da52019-11-30 20:52:27 +01005348 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005351 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005353 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 break;
5356 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 if (swap_exists_action == SEA_QUIT)
5358 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005359#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005360 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005361
Bram Moolenaarc667da52019-11-30 20:52:27 +01005362 // Reset the error/interrupt/exception state here so that
5363 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005364 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005365#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005366
Bram Moolenaarc667da52019-11-30 20:52:27 +01005367 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 win_close(curwin, TRUE);
5369 --open_wins;
5370 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005371 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005372
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005373#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005374 // Restore the error/interrupt/exception state if not
5375 // discarded by a new aborting error, interrupt, or uncaught
5376 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005377 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 }
5380 else
5381 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 }
5383
5384 ui_breakcheck();
5385 if (got_int)
5386 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005387 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 break;
5389 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005390#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005391 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005392 if (aborting())
5393 break;
5394#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005395 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005396 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005397 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005400 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402
5403 /*
5404 * Close superfluous windows.
5405 */
5406 for (wp = lastwin; open_wins > count; )
5407 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005408 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 if (!win_valid(wp))
5411 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005412 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 wp = lastwin;
5414 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005415 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005417 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 --open_wins;
5419 wp = lastwin;
5420 }
5421 else
5422 {
5423 wp = wp->w_prev;
5424 if (wp == NULL)
5425 break;
5426 }
5427 }
5428}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005431static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005432
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433/*
5434 * do_modelines() - process mode lines for the current file
5435 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005436 * "flags" can be:
5437 * OPT_WINONLY only set options local to window
5438 * OPT_NOWIN don't set options local to window
5439 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 * Returns immediately if the "ml" option isn't set.
5441 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005443do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005445 linenr_T lnum;
5446 int nmlines;
5447 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448
5449 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5450 return;
5451
Bram Moolenaarc667da52019-11-30 20:52:27 +01005452 // Disallow recursive entry here. Can happen when executing a modeline
5453 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 if (entered)
5455 return;
5456
5457 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005458 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005460 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 nmlines = 0;
5462
Hu Jialun9dcd3492021-08-28 20:42:50 +02005463 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005465 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 nmlines = 0;
5467 --entered;
5468}
5469
Bram Moolenaarc667da52019-11-30 20:52:27 +01005470#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471
5472/*
5473 * chk_modeline() - check a single line for a mode string
5474 * Return FAIL if an error encountered.
5475 */
5476 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005477chk_modeline(
5478 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005479 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480{
5481 char_u *s;
5482 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005483 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 int prev;
5485 int vers;
5486 int end;
5487 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005488 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005489
Bram Moolenaare31ee862020-01-07 20:59:34 +01005490 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491
5492 prev = -1;
5493 for (s = ml_get(lnum); *s != NUL; ++s)
5494 {
5495 if (prev == -1 || vim_isspace(prev))
5496 {
5497 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5498 || STRNCMP(s, "vi:", (size_t)3) == 0)
5499 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005500 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005501 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 {
5503 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5504 e = s + 4;
5505 else
5506 e = s + 3;
5507 vers = getdigits(&e);
5508 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005509 && (s[0] != 'V'
5510 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 && (s[3] == ':'
5512 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5513 || (VIM_VERSION_100 < vers && s[3] == '<')
5514 || (VIM_VERSION_100 > vers && s[3] == '>')
5515 || (VIM_VERSION_100 == vers && s[3] == '=')))
5516 break;
5517 }
5518 }
5519 prev = *s;
5520 }
5521
5522 if (*s)
5523 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005524 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 ++s;
5526 while (s[-1] != ':');
5527
Bram Moolenaarc667da52019-11-30 20:52:27 +01005528 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 if (linecopy == NULL)
5530 return FAIL;
5531
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005532 // prepare for emsg()
5533 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005534 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535
5536 end = FALSE;
5537 while (end == FALSE)
5538 {
5539 s = skipwhite(s);
5540 if (*s == NUL)
5541 break;
5542
5543 /*
5544 * Find end of set command: ':' or end of line.
5545 * Skip over "\:", replacing it with ":".
5546 */
5547 for (e = s; *e != ':' && *e != NUL; ++e)
5548 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005549 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 if (*e == NUL)
5551 end = TRUE;
5552
5553 /*
5554 * If there is a "set" command, require a terminating ':' and
5555 * ignore the stuff after the ':'.
5556 * "vi:set opt opt opt: foo" -- foo not interpreted
5557 * "vi:opt opt opt: foo" -- foo interpreted
5558 * Accept "se" for compatibility with Elvis.
5559 */
5560 if (STRNCMP(s, "set ", (size_t)4) == 0
5561 || STRNCMP(s, "se ", (size_t)3) == 0)
5562 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005563 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 break;
5565 end = TRUE;
5566 s = vim_strchr(s, ' ') + 1;
5567 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005568 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569
Bram Moolenaarc667da52019-11-30 20:52:27 +01005570 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005572 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005573
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005574 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005575 current_sctx.sc_version = 1;
5576#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005577 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005578 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005579 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005581
Bram Moolenaar5958f952018-11-20 04:25:21 +01005582 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005583 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005584
Bram Moolenaara3227e22006-03-08 21:32:40 +00005585 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005586
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005587 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005588 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005589 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 break;
5591 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005592 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 }
5594
Bram Moolenaare31ee862020-01-07 20:59:34 +01005595 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005596 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 vim_free(linecopy);
5598 }
5599 return retval;
5600}
5601
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005602/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005603 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5604 */
5605 int
5606bt_normal(buf_T *buf)
5607{
5608 return buf != NULL && buf->b_p_bt[0] == NUL;
5609}
5610
Bram Moolenaar113e1072019-01-20 15:30:40 +01005611#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005612/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005613 * Return TRUE if "buf" is the quickfix buffer.
5614 */
5615 int
5616bt_quickfix(buf_T *buf)
5617{
5618 return buf != NULL && buf->b_p_bt[0] == 'q';
5619}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005620#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005621
Bram Moolenaar113e1072019-01-20 15:30:40 +01005622#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005623/*
5624 * Return TRUE if "buf" is a terminal buffer.
5625 */
5626 int
5627bt_terminal(buf_T *buf)
5628{
5629 return buf != NULL && buf->b_p_bt[0] == 't';
5630}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005631#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005632
5633/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005634 * Return TRUE if "buf" is a help buffer.
5635 */
5636 int
5637bt_help(buf_T *buf)
5638{
5639 return buf != NULL && buf->b_help;
5640}
5641
5642/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005643 * Return TRUE if "buf" is a prompt buffer.
5644 */
5645 int
5646bt_prompt(buf_T *buf)
5647{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005648 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5649}
5650
5651/*
5652 * Return TRUE if "buf" is a buffer for a popup window.
5653 */
5654 int
5655bt_popup(buf_T *buf)
5656{
5657 return buf != NULL && buf->b_p_bt != NULL
5658 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005659}
5660
5661/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005662 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5663 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005664 */
5665 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005666bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005667{
5668 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5669 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005670 || buf->b_p_bt[0] == 't'
5671 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005672}
5673
5674/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005675 * Return TRUE if "buf" has 'buftype' set to "nofile".
5676 */
5677 int
5678bt_nofile(buf_T *buf)
5679{
5680 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5681}
5682
5683/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005684 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5685 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005686 */
5687 int
5688bt_dontwrite(buf_T *buf)
5689{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005690 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005691 || buf->b_p_bt[0] == 't'
5692 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005693}
5694
Bram Moolenaar113e1072019-01-20 15:30:40 +01005695#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005696 int
5697bt_dontwrite_msg(buf_T *buf)
5698{
5699 if (bt_dontwrite(buf))
5700 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005701 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005702 return TRUE;
5703 }
5704 return FALSE;
5705}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005706#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005707
5708/*
5709 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5710 * and 'bufhidden'.
5711 */
5712 int
5713buf_hide(buf_T *buf)
5714{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005715 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005716 switch (buf->b_p_bh[0])
5717 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005718 case 'u': // "unload"
5719 case 'w': // "wipe"
5720 case 'd': return FALSE; // "delete"
5721 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005722 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005723 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005724}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725
5726/*
5727 * Return special buffer name.
5728 * Returns NULL when the buffer has a normal file name.
5729 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005730 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005731buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005733#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005735 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005736 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005737 * Differentiate between the quickfix and location list buffers using
5738 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005739 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005740 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005741 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005742 else
5743 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005746
Bram Moolenaarc667da52019-11-30 20:52:27 +01005747 // There is no _file_ when 'buftype' is "nofile", b_sfname
5748 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005749 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005751#ifdef FEAT_TERMINAL
5752 if (buf->b_term != NULL)
5753 return term_get_status_text(buf->b_term);
5754#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005755 if (buf->b_fname != NULL)
5756 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005757#ifdef FEAT_JOB_CHANNEL
5758 if (bt_prompt(buf))
5759 return (char_u *)_("[Prompt]");
5760#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005761#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005762 if (bt_popup(buf))
5763 return (char_u *)_("[Popup]");
5764#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005765 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005767
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005769 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 return NULL;
5771}
5772
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005774 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5775 */
5776 char_u *
5777buf_get_fname(buf_T *buf)
5778{
5779 if (buf->b_fname == NULL)
5780 return (char_u *)_("[No Name]");
5781 return buf->b_fname;
5782}
5783
5784/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5786 */
5787 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005788set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789{
5790 if (on != curbuf->b_p_bl)
5791 {
5792 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 if (on)
5794 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5795 else
5796 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 }
5798}
5799
5800/*
5801 * Read the file for "buf" again and check if the contents changed.
5802 * Return TRUE if it changed or this could not be checked.
5803 */
5804 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005805buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806{
5807 buf_T *newbuf;
5808 int differ = TRUE;
5809 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 exarg_T ea;
5812
Bram Moolenaarc667da52019-11-30 20:52:27 +01005813 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5815 if (newbuf == NULL)
5816 return TRUE;
5817
Bram Moolenaarc667da52019-11-30 20:52:27 +01005818 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 if (prep_exarg(&ea, buf) == FAIL)
5820 {
5821 wipe_buffer(newbuf, FALSE);
5822 return TRUE;
5823 }
5824
Bram Moolenaarc667da52019-11-30 20:52:27 +01005825 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827
Bram Moolenaar4770d092006-01-12 23:22:24 +00005828 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 && readfile(buf->b_ffname, buf->b_fname,
5830 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5831 &ea, READ_NEW | READ_DUMMY) == OK)
5832 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005833 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5835 {
5836 differ = FALSE;
5837 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5838 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5839 {
5840 differ = TRUE;
5841 break;
5842 }
5843 }
5844 }
5845 vim_free(ea.cmd);
5846
Bram Moolenaarc667da52019-11-30 20:52:27 +01005847 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849
Bram Moolenaarc667da52019-11-30 20:52:27 +01005850 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 wipe_buffer(newbuf, FALSE);
5852
5853 return differ;
5854}
5855
5856/*
5857 * Wipe out a buffer and decrement the last buffer number if it was used for
5858 * this buffer. Call this to wipe out a temp buffer that does not contain any
5859 * marks.
5860 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005862wipe_buffer(
5863 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005864 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865{
5866 if (buf->b_fnum == top_file_num - 1)
5867 --top_file_num;
5868
Bram Moolenaarc667da52019-11-30 20:52:27 +01005869 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005870 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005871
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005872 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005873
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005875 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876}