blob: 56c1bf2f404dce8ae49702fbe02df0b00f30a5f2 [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);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100330 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100331
Bram Moolenaarc667da52019-11-30 20:52:27 +0100332 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333#ifdef FEAT_EVAL
334 if (aborting())
335#else
336 if (got_int)
337#endif
338 curbuf->b_flags |= BF_READERR;
339
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000340#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100341 // Need to update automatic folding. Do this before the autocommands,
342 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000343 foldUpdateAll(curwin);
344#endif
345
Bram Moolenaarc667da52019-11-30 20:52:27 +0100346 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 if (!(curwin->w_valid & VALID_TOPLINE))
348 {
349 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100350#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100352#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100354#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358#endif
359
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100360 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 /*
363 * The autocommands may have changed the current buffer. Apply the
364 * modelines to the correct buffer, if it still exists and is loaded.
365 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200366 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 {
368 aco_save_T aco;
369
Bram Moolenaarc667da52019-11-30 20:52:27 +0100370 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200371 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000372 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
374
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100375#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100377 &retval);
378#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381
Bram Moolenaarc667da52019-11-30 20:52:27 +0100382 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 aucmd_restbuf(&aco);
384 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 }
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 return retval;
388}
389
390/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200391 * Store "buf" in "bufref" and set the free count.
392 */
393 void
394set_bufref(bufref_T *bufref, buf_T *buf)
395{
396 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200397 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200398 bufref->br_buf_free_count = buf_free_count;
399}
400
401/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200402 * Return TRUE if "bufref->br_buf" points to the same buffer as when
403 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200404 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200405 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
406 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200407 */
408 int
409bufref_valid(bufref_T *bufref)
410{
411 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200412 ? TRUE : buf_valid(bufref->br_buf)
413 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200414}
415
416/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200418 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 */
420 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100421buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422{
423 buf_T *bp;
424
Bram Moolenaarc667da52019-11-30 20:52:27 +0100425 // Assume that we more often have a recent buffer, start with the last
426 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200427 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 if (bp == buf)
429 return TRUE;
430 return FALSE;
431}
432
433/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200434 * A hash table used to quickly lookup a buffer by its number.
435 */
436static hashtab_T buf_hashtab;
437
438 static void
439buf_hashtab_add(buf_T *buf)
440{
441 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
442 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100443 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200444}
445
446 static void
447buf_hashtab_remove(buf_T *buf)
448{
449 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
450
451 if (!HASHITEM_EMPTY(hi))
452 hash_remove(&buf_hashtab, hi);
453}
454
Bram Moolenaar94f01952018-09-01 15:30:03 +0200455/*
456 * Return TRUE when buffer "buf" can be unloaded.
457 * Give an error message and return FALSE when the buffer is locked or the
458 * screen is being redrawn and the buffer is in a window.
459 */
460 static int
461can_unload_buffer(buf_T *buf)
462{
463 int can_unload = !buf->b_locked;
464
465 if (can_unload && updating_screen)
466 {
467 win_T *wp;
468
469 FOR_ALL_WINDOWS(wp)
470 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200471 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200472 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200473 break;
474 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200475 }
476 if (!can_unload)
Bram Moolenaardefa0672019-07-21 19:25:37 +0200477 semsg(_("E937: Attempt to delete a buffer that is in use: %s"),
478 buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200479 return can_unload;
480}
Bram Moolenaara997b452018-04-17 23:24:06 +0200481
Bram Moolenaar480778b2016-07-14 22:09:39 +0200482/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 * Close the link to a buffer.
484 * "action" is used when there is no longer a window for the buffer.
485 * It can be:
486 * 0 buffer becomes hidden
487 * DOBUF_UNLOAD buffer is unloaded
488 * DOBUF_DELETE buffer is unloaded and removed from buffer list
489 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200490 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 * When doing all but the first one on the current buffer, the caller should
492 * get a new buffer very soon!
493 *
494 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100495 *
496 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
497 * cause there to be only one window with this buffer. e.g. when ":quit" is
498 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100499 *
500 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100501 *
502 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100504 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100505close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100506 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100507 buf_T *buf,
508 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100509 int abort_if_last,
510 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100513 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200514 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100515 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200516 win_T *the_curwin = curwin;
517 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200519 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
520 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521
Bram Moolenaarcee52202020-03-11 14:19:58 +0100522 CHECK_CURBUF;
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200523 /*
524 * Force unloading or deleting when 'bufhidden' says so.
525 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
526 * "hide" (otherwise we could never free or delete a buffer).
527 */
Bram Moolenaarc667da52019-11-30 20:52:27 +0100528 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200529 {
530 del_buf = TRUE;
531 unload_buf = TRUE;
532 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100533 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200534 {
535 del_buf = TRUE;
536 unload_buf = TRUE;
537 wipe_buf = TRUE;
538 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100539 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200540 unload_buf = TRUE;
541
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200543 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200544 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100545 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200546 if (term_job_running(buf->b_term))
547 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200548 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200549 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200550 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100551 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200552
Bram Moolenaarc667da52019-11-30 20:52:27 +0100553 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200554 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200555 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200556 else
557 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100558 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200559 del_buf = FALSE;
560 unload_buf = FALSE;
561 }
562 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100563 else if (buf->b_p_bh[0] == 'h' && !del_buf)
564 {
565 // Hide a terminal buffer.
566 unload_buf = FALSE;
567 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200568 else
569 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100570 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200571 del_buf = TRUE;
572 unload_buf = TRUE;
573 wipe_buf = TRUE;
574 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100575 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200576 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
Bram Moolenaarc667da52019-11-30 20:52:27 +0100579 // Disallow deleting the buffer when it is locked (already being closed or
580 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200581 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100582 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200583
Bram Moolenaarc667da52019-11-30 20:52:27 +0100584 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200585 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100587 // Set b_last_cursor when closing the last window for the buffer.
588 // Remember the last cursor position and window options of the buffer.
589 // This used to be only for the current window, but then options like
590 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 if (buf->b_nwindows == 1)
592 set_last_cursor(win);
593 buflist_setfpos(buf, win,
594 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
595 win->w_cursor.col, TRUE);
596 }
597
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200598 set_bufref(&bufref, buf);
599
Bram Moolenaarc667da52019-11-30 20:52:27 +0100600 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 if (buf->b_nwindows == 1)
602 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200603 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100604 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200605 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
606 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200607 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100608 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100609 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200610aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100611 emsg(_(e_auabort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100612 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100613 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200614 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100615 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200616 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100617 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200618 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619
Bram Moolenaarc667da52019-11-30 20:52:27 +0100620 // When the buffer becomes hidden, but is not unloaded, trigger
621 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 if (!unload_buf)
623 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200624 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100625 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200626 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
627 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200628 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100629 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200630 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200631 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100632 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200633 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100634 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200635 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100637#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100638 // autocmds may abort script processing
639 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100640 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200643
Bram Moolenaarc667da52019-11-30 20:52:27 +0100644 // If the buffer was in curwin and the window has changed, go back to that
645 // window, if it still exists. This avoids that ":edit x" triggering a
646 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200647 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
648 {
649 block_autocmds();
650 goto_tabpage_win(the_curtab, the_curwin);
651 unblock_autocmds();
652 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200653
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaarc667da52019-11-30 20:52:27 +0100656 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (buf->b_nwindows > 0)
658 --buf->b_nwindows;
659
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100660#ifdef FEAT_DIFF
661 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100662 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100663#endif
664
Bram Moolenaarc667da52019-11-30 20:52:27 +0100665 // Return when a window is displaying the buffer or when it's not
666 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100668 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669
Bram Moolenaarc667da52019-11-30 20:52:27 +0100670 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 if (buf->b_ffname == NULL)
672 del_buf = TRUE;
673
Bram Moolenaarc667da52019-11-30 20:52:27 +0100674 // When closing the current buffer stop Visual mode before freeing
675 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200676 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200677#if defined(EXITFREE)
678 && !entered_free_all_mem
679#endif
680 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200681 end_visual_mode();
682
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 /*
684 * Free all things allocated for this buffer.
685 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
686 */
Bram Moolenaarc667da52019-11-30 20:52:27 +0100687 // Remember if we are closing the current buffer. Restore the number of
688 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 is_curbuf = (buf == curbuf);
690 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100692 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100693 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100694 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaarc667da52019-11-30 20:52:27 +0100696 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200697 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100698 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100699#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100700 // autocmds may abort script processing
701 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100702 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 /*
706 * It's possible that autocommands change curbuf to the one being deleted.
707 * This might cause the previous curbuf to be deleted unexpectedly. But
708 * in some cases it's OK to delete the curbuf, because a new one is
709 * obtained anyway. Therefore only return if curbuf changed to the
710 * deleted buffer.
711 */
712 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100713 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200714
Bram Moolenaar4033c552017-09-16 20:54:51 +0200715 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100716 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200717
Bram Moolenaarc667da52019-11-30 20:52:27 +0100718 // Autocommands may have opened or closed windows for this buffer.
719 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200720 if (buf->b_nwindows > 0)
721 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 /*
724 * Remove the buffer from the list.
725 */
726 if (wipe_buf)
727 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200728 if (action == DOBUF_WIPE_REUSE)
729 {
730 // we can re-use this buffer number, store it
731 if (buf_reuse.ga_itemsize == 0)
732 ga_init2(&buf_reuse, sizeof(int), 50);
733 if (ga_grow(&buf_reuse, 1) == OK)
734 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
735 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200736 if (buf->b_sfname != buf->b_ffname)
737 VIM_CLEAR(buf->b_sfname);
738 else
739 buf->b_sfname = NULL;
740 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 if (buf->b_prev == NULL)
742 firstbuf = buf->b_next;
743 else
744 buf->b_prev->b_next = buf->b_next;
745 if (buf->b_next == NULL)
746 lastbuf = buf->b_prev;
747 else
748 buf->b_next->b_prev = buf->b_prev;
749 free_buffer(buf);
750 }
751 else
752 {
753 if (del_buf)
754 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100755 // Free all internal variables and reset option values, to make
756 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 free_buffer_stuff(buf, TRUE);
758
Bram Moolenaarc667da52019-11-30 20:52:27 +0100759 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
761
Bram Moolenaarc667da52019-11-30 20:52:27 +0100762 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 buf->b_p_initialized = FALSE;
764 }
765 buf_clear_file(buf);
766 if (del_buf)
767 buf->b_p_bl = FALSE;
768 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100769 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100770 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771}
772
773/*
774 * Make buffer not contain a file.
775 */
776 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100777buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778{
779 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200780 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 buf->b_p_eol = TRUE;
783 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000785 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100787 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788#ifdef FEAT_NETBEANS_INTG
789 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790#endif
791}
792
793/*
794 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200795 * the file. Careful: get here with "curwin" NULL when exiting.
796 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100797 * BFA_DEL buffer is going to be deleted
798 * BFA_WIPE buffer is going to be wiped out
799 * BFA_KEEP_UNDO do not free undo information
800 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100803buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200806 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200807 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200808 win_T *the_curwin = curwin;
809 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810
Bram Moolenaarc667da52019-11-30 20:52:27 +0100811 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200812 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100813 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200814 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200815 if (buf->b_ml.ml_mfp != NULL)
816 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200817 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
818 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200819 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100820 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200821 return;
822 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200823 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200825 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
826 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200827 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100828 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 return;
830 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200831 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200833 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
834 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200835 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100836 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 return;
838 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200839 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100840 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200841
Bram Moolenaarc667da52019-11-30 20:52:27 +0100842 // If the buffer was in curwin and the window has changed, go back to that
843 // window, if it still exists. This avoids that ":edit x" triggering a
844 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200845 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
846 {
847 block_autocmds();
848 goto_tabpage_win(the_curtab, the_curwin);
849 unblock_autocmds();
850 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200851
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100852#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100853 // autocmds may abort script processing
854 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857
858 /*
859 * It's possible that autocommands change curbuf to the one being deleted.
860 * This might cause curbuf to be deleted unexpectedly. But in some cases
861 * it's OK to delete the curbuf, because a new one is obtained anyway.
862 * Therefore only return if curbuf changed to the deleted buffer.
863 */
864 if (buf == curbuf && !is_curbuf)
865 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100867 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200869#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100870 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200871 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100872 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200873#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000874
875#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100876 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000877 {
878 win_T *win;
879 tabpage_T *tp;
880
881 FOR_ALL_TAB_WINDOWS(tp, win)
882 if (win->w_buffer == buf)
883 clearFolding(win);
884 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000885#endif
886
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887#ifdef FEAT_TCL
888 tcl_buffer_free(buf);
889#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100890 ml_close(buf, TRUE); // close and delete the memline/memfile
891 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200892 if ((flags & BFA_KEEP_UNDO) == 0)
893 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100894 u_blockfree(buf); // free the memory allocated for undo
895 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100898 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100900#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100901 clear_buf_prop_types(buf);
902#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100903 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904}
905
906/*
907 * Free a buffer structure and the things it contains related to the buffer
908 * itself (not the file, that must have been done already).
909 */
910 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100911free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200913 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200915#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100916 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200917 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200918 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200919 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200920#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200921#ifdef FEAT_LUA
922 lua_buffer_free(buf);
923#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000924#ifdef FEAT_MZSCHEME
925 mzscheme_buffer_free(buf);
926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927#ifdef FEAT_PERL
928 perl_buf_free(buf);
929#endif
930#ifdef FEAT_PYTHON
931 python_buffer_free(buf);
932#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200933#ifdef FEAT_PYTHON3
934 python3_buffer_free(buf);
935#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936#ifdef FEAT_RUBY
937 ruby_buffer_free(buf);
938#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200939#ifdef FEAT_JOB_CHANNEL
940 channel_buffer_free(buf);
941#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200942#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200943 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200944#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200945#ifdef FEAT_JOB_CHANNEL
946 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200947 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200948 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200949#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200950
951 buf_hashtab_remove(buf);
952
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200953 aubuflocal_remove(buf);
954
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200955 if (autocmd_busy)
956 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100957 // Do not free the buffer structure while autocommands are executing,
958 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200959 buf->b_next = au_pending_free_buf;
960 au_pending_free_buf = buf;
961 }
962 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100963 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200964 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100965 if (curbuf == buf)
966 curbuf = NULL; // make clear it's not to be used
967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968}
969
970/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100971 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100972 */
973 static void
974init_changedtick(buf_T *buf)
975{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100976 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100977
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100978 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
979 di->di_tv.v_type = VAR_NUMBER;
980 di->di_tv.v_lock = VAR_FIXED;
981 di->di_tv.vval.v_number = 0;
982
Bram Moolenaar92769c32017-02-25 15:41:37 +0100983#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100984 STRCPY(buf->b_ct_di.di_key, "changedtick");
985 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100986#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100987}
988
989/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
991 */
992 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100993free_buffer_stuff(
994 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100995 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996{
997 if (free_options)
998 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100999 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +02001001#ifdef FEAT_SPELL
1002 ga_clear(&buf->b_s.b_langp);
1003#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 }
1005#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +01001006 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001007 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001008
Bram Moolenaarc667da52019-11-30 20:52:27 +01001009 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +01001010 hash_init(&buf->b_vars->dv_hashtab);
1011 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001012 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +01001013 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +01001014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001016 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001018 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001020#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001021 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001022#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001023 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1024 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001025 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026}
1027
1028/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001029 * Free one wininfo_T.
1030 */
1031 void
1032free_wininfo(wininfo_T *wip)
1033{
1034 if (wip->wi_optset)
1035 {
1036 clear_winopt(&wip->wi_opt);
1037#ifdef FEAT_FOLDING
1038 deleteFoldRecurse(&wip->wi_folds);
1039#endif
1040 }
1041 vim_free(wip);
1042}
1043
1044/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 * Free the b_wininfo list for buffer "buf".
1046 */
1047 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001048clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049{
1050 wininfo_T *wip;
1051
1052 while (buf->b_wininfo != NULL)
1053 {
1054 wip = buf->b_wininfo;
1055 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001056 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 }
1058}
1059
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060/*
1061 * Go to another buffer. Handles the result of the ATTENTION dialog.
1062 */
1063 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001064goto_buffer(
1065 exarg_T *eap,
1066 int start,
1067 int dir,
1068 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001070 bufref_T old_curbuf;
1071
1072 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073
1074 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1076 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1078 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001079#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001080 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001081
Bram Moolenaarc667da52019-11-30 20:52:27 +01001082 // Reset the error/interrupt/exception state here so that
1083 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001084 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001085#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001086
Bram Moolenaarc667da52019-11-30 20:52:27 +01001087 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 win_close(curwin, TRUE);
1089 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001090 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001092#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001093 // Restore the error/interrupt/exception state if not discarded by a
1094 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001095 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 }
1098 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001099 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001100}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102/*
1103 * Handle the situation of swap_exists_action being set.
1104 * It is allowed for "old_curbuf" to be NULL or invalid.
1105 */
1106 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001107handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001109#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001110 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001111#endif
1112#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001113 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001114#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001115 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001116
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 if (swap_exists_action == SEA_QUIT)
1118 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001119#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001120 // Reset the error/interrupt/exception state here so that
1121 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001122 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001123#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001124
Bram Moolenaarc667da52019-11-30 20:52:27 +01001125 // User selected Quit at ATTENTION prompt. Go back to previous
1126 // buffer. If that buffer is gone or the same as the current one,
1127 // open a new, empty buffer.
1128 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001129 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001130 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001131 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1132 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001133 {
1134 // Block autocommands here because curwin->w_buffer is NULL.
1135 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001136 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001137 unblock_autocmds();
1138 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001139 else
1140 buf = old_curbuf->br_buf;
1141 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001142 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001143 int old_msg_silent = msg_silent;
1144
1145 if (shortmess(SHM_FILEINFO))
1146 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001147 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001148 // restore msg_silent, so that the command line will be shown
1149 msg_silent = old_msg_silent;
1150
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001151#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001152 if (old_tw != curbuf->b_p_tw)
1153 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001154#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001155 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001156 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001157
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001158#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001159 // Restore the error/interrupt/exception state if not discarded by a
1160 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001161 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001162#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 }
1164 else if (swap_exists_action == SEA_RECOVER)
1165 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001166#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001167 // Reset the error/interrupt/exception state here so that
1168 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001169 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001170#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001171
Bram Moolenaarc667da52019-11-30 20:52:27 +01001172 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001174 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001175 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001177 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001178
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001179#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001180 // Restore the error/interrupt/exception state if not discarded by a
1181 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001182 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 }
1185 swap_exists_action = SEA_NONE;
1186}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001189 * Make the current buffer empty.
1190 * Used when it is wiped out and it's the last buffer.
1191 */
1192 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001193empty_curbuf(
1194 int close_others,
1195 int forceit,
1196 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001197{
1198 int retval;
1199 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001200 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001201
1202 if (action == DOBUF_UNLOAD)
1203 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001204 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001205 return FAIL;
1206 }
1207
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001208 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001209 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001210 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001211 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001212
1213 setpcmark();
1214 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1215 forceit ? ECMD_FORCEIT : 0, curwin);
1216
1217 /*
1218 * do_ecmd() may create a new buffer, then we have to delete
1219 * the old one. But do_ecmd() may have done that already, check
1220 * if the buffer still exists.
1221 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001222 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001223 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001224 if (!close_others)
1225 need_fileinfo = FALSE;
1226 return retval;
1227}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001228
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229/*
1230 * Implementation of the commands for the buffer list.
1231 *
1232 * action == DOBUF_GOTO go to specified buffer
1233 * action == DOBUF_SPLIT split window and go to specified buffer
1234 * action == DOBUF_UNLOAD unload specified buffer(s)
1235 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1236 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001237 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 *
1239 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1240 * start == DOBUF_FIRST go to "count" buffer from first buffer
1241 * start == DOBUF_LAST go to "count" buffer from last buffer
1242 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1243 *
1244 * Return FAIL or OK.
1245 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001246 static int
1247do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001248 int action,
1249 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001250 int dir, // FORWARD or BACKWARD
1251 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001252 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253{
1254 buf_T *buf;
1255 buf_T *bp;
1256 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001257 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258
1259 switch (start)
1260 {
1261 case DOBUF_FIRST: buf = firstbuf; break;
1262 case DOBUF_LAST: buf = lastbuf; break;
1263 default: buf = curbuf; break;
1264 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001265 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 {
1267 while (count-- > 0)
1268 {
1269 do
1270 {
1271 buf = buf->b_next;
1272 if (buf == NULL)
1273 buf = firstbuf;
1274 }
1275 while (buf != curbuf && !bufIsChanged(buf));
1276 }
1277 if (!bufIsChanged(buf))
1278 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001279 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 return FAIL;
1281 }
1282 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001283 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 {
1285 while (buf != NULL && buf->b_fnum != count)
1286 buf = buf->b_next;
1287 }
1288 else
1289 {
1290 bp = NULL;
1291 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1292 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001293 // remember the buffer where we start, we come back there when all
1294 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 if (bp == NULL)
1296 bp = buf;
1297 if (dir == FORWARD)
1298 {
1299 buf = buf->b_next;
1300 if (buf == NULL)
1301 buf = firstbuf;
1302 }
1303 else
1304 {
1305 buf = buf->b_prev;
1306 if (buf == NULL)
1307 buf = lastbuf;
1308 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001309 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 if (unload || buf->b_p_bl)
1311 {
1312 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001313 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 }
1315 if (bp == buf)
1316 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001317 // back where we started, didn't find anything.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001318 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 return FAIL;
1320 }
1321 }
1322 }
1323
Bram Moolenaarc667da52019-11-30 20:52:27 +01001324 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 {
1326 if (start == DOBUF_FIRST)
1327 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001328 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001330 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 }
1332 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001333 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001335 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 return FAIL;
1337 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001338#ifdef FEAT_PROP_POPUP
1339 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1340# ifdef FEAT_TERMINAL
1341 && !bt_terminal(buf)
1342#endif
1343 )
1344 return OK;
1345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346
1347#ifdef FEAT_GUI
1348 need_mouse_correct = TRUE;
1349#endif
1350
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 /*
1352 * delete buffer buf from memory and/or the list
1353 */
1354 if (unload)
1355 {
1356 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001357 bufref_T bufref;
1358
Bram Moolenaar94f01952018-09-01 15:30:03 +02001359 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001360 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001361
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001362 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363
Bram Moolenaarc667da52019-11-30 20:52:27 +01001364 // When unloading or deleting a buffer that's already unloaded and
1365 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001366 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1367 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 return FAIL;
1369
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001370 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001372#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001373 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 {
1375 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001376 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001377 // Autocommand deleted buffer, oops! It's not changed
1378 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001380 // If it's still changed fail silently, the dialog already
1381 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001382 if (bufIsChanged(buf))
1383 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001385 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001388 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 buf->b_fnum);
1390 return FAIL;
1391 }
1392 }
1393
Bram Moolenaarc667da52019-11-30 20:52:27 +01001394 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001395 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001396 end_visual_mode();
1397
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 /*
1399 * If deleting the last (listed) buffer, make it empty.
1400 * The last (listed) buffer cannot be unloaded.
1401 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001402 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 if (bp->b_p_bl && bp != buf)
1404 break;
1405 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001406 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 /*
1409 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001410 * (unless it's the only window). Repeat this so long as we end up in
1411 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001413 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001414 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001415 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001416 {
1417 if (win_close(curwin, FALSE) == FAIL)
1418 break;
1419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
1421 /*
1422 * If the buffer to be deleted is not the current one, delete it here.
1423 */
1424 if (buf != curbuf)
1425 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001426 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001427 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001428 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 return OK;
1430 }
1431
1432 /*
1433 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001434 * There should be another, otherwise it would have been handled
1435 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001436 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 * Then prefer the buffer we most recently visited.
1438 * Else try to find one that is loaded, after the current buffer,
1439 * then before the current buffer.
1440 * Finally use any buffer.
1441 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001442 buf = NULL; // selected buffer
1443 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001444 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1445 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001447 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 {
1449 int jumpidx;
1450
1451 jumpidx = curwin->w_jumplistidx - 1;
1452 if (jumpidx < 0)
1453 jumpidx = curwin->w_jumplistlen - 1;
1454
1455 forward = jumpidx;
1456 while (jumpidx != curwin->w_jumplistidx)
1457 {
1458 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1459 if (buf != NULL)
1460 {
1461 if (buf == curbuf || !buf->b_p_bl)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001462 buf = NULL; // skip current and unlisted bufs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 else if (buf->b_ml.ml_mfp == NULL)
1464 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001465 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 if (bp == NULL)
1467 bp = buf;
1468 buf = NULL;
1469 }
1470 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001471 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001473 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1475 break;
1476 if (--jumpidx < 0)
1477 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001478 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 break;
1480 }
1481 }
1482#endif
1483
Bram Moolenaarc667da52019-11-30 20:52:27 +01001484 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 {
1486 forward = TRUE;
1487 buf = curbuf->b_next;
1488 for (;;)
1489 {
1490 if (buf == NULL)
1491 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001492 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 break;
1494 buf = curbuf->b_prev;
1495 forward = FALSE;
1496 continue;
1497 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001498 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1500 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001501 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001503 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 bp = buf;
1505 }
1506 if (forward)
1507 buf = buf->b_next;
1508 else
1509 buf = buf->b_prev;
1510 }
1511 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001512 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001514 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001516 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 if (buf->b_p_bl && buf != curbuf)
1518 break;
1519 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001520 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 {
1522 if (curbuf->b_next != NULL)
1523 buf = curbuf->b_next;
1524 else
1525 buf = curbuf->b_prev;
1526 }
1527 }
1528
Bram Moolenaara02471e2014-01-10 16:43:14 +01001529 if (buf == NULL)
1530 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001531 // Autocommands must have wiped out all other buffers. Only option
1532 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001533 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001534 }
1535
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 /*
1537 * make buf current buffer
1538 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001539 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001541 // If 'switchbuf' contains "useopen": jump to first window containing
1542 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001543 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001544 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001545 // If 'switchbuf' contains "usetab": jump to first window in any tab
1546 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001547 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 return OK;
1549 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 return FAIL;
1551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552
Bram Moolenaarc667da52019-11-30 20:52:27 +01001553 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (buf == curbuf)
1555 return OK;
1556
1557 /*
1558 * Check if the current buffer may be abandoned.
1559 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001560 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 {
1562#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001563 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001565 bufref_T bufref;
1566
1567 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001569 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001570 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
1573 if (bufIsChanged(curbuf))
1574#endif
1575 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001576 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 return FAIL;
1578 }
1579 }
1580
Bram Moolenaarc667da52019-11-30 20:52:27 +01001581 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 set_curbuf(buf, action);
1583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001585 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001587#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001588 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 return FAIL;
1590#endif
1591
1592 return OK;
1593}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001595 int
1596do_buffer(
1597 int action,
1598 int start,
1599 int dir, // FORWARD or BACKWARD
1600 int count, // buffer number or number of buffers
1601 int forceit) // TRUE when using !
1602{
1603 return do_buffer_ext(action, start, dir, count,
1604 forceit ? DOBUF_FORCEIT : 0);
1605}
1606
1607/*
1608 * do_bufdel() - delete or unload buffer(s)
1609 *
1610 * addr_count == 0: ":bdel" - delete current buffer
1611 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1612 * buffer "end_bnr", then any other arguments.
1613 * addr_count == 2: ":N,N bdel" - delete buffers in range
1614 *
1615 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1616 * DOBUF_DEL (":bdel")
1617 *
1618 * Returns error message or NULL
1619 */
1620 char *
1621do_bufdel(
1622 int command,
1623 char_u *arg, // pointer to extra arguments
1624 int addr_count,
1625 int start_bnr, // first buffer number in a range
1626 int end_bnr, // buffer nr or last buffer nr in a range
1627 int forceit)
1628{
1629 int do_current = 0; // delete current buffer?
1630 int deleted = 0; // number of buffers deleted
1631 char *errormsg = NULL; // return value
1632 int bnr; // buffer number
1633 char_u *p;
1634
1635 if (addr_count == 0)
1636 {
1637 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1638 }
1639 else
1640 {
1641 if (addr_count == 2)
1642 {
1643 if (*arg) // both range and argument is not allowed
1644 return ex_errmsg(e_trailing_arg, arg);
1645 bnr = start_bnr;
1646 }
1647 else // addr_count == 1
1648 bnr = end_bnr;
1649
1650 for ( ;!got_int; ui_breakcheck())
1651 {
1652 /*
1653 * Delete the current buffer last, otherwise when the
1654 * current buffer is deleted, the next buffer becomes
1655 * the current one and will be loaded, which may then
1656 * also be deleted, etc.
1657 */
1658 if (bnr == curbuf->b_fnum)
1659 do_current = bnr;
1660 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr,
1661 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1662 ++deleted;
1663
1664 /*
1665 * find next buffer number to delete/unload
1666 */
1667 if (addr_count == 2)
1668 {
1669 if (++bnr > end_bnr)
1670 break;
1671 }
1672 else // addr_count == 1
1673 {
1674 arg = skipwhite(arg);
1675 if (*arg == NUL)
1676 break;
1677 if (!VIM_ISDIGIT(*arg))
1678 {
1679 p = skiptowhite_esc(arg);
1680 bnr = buflist_findpat(arg, p,
1681 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1682 FALSE, FALSE);
1683 if (bnr < 0) // failed
1684 break;
1685 arg = p;
1686 }
1687 else
1688 bnr = getdigits(&arg);
1689 }
1690 }
1691 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1692 FORWARD, do_current, forceit) == OK)
1693 ++deleted;
1694
1695 if (deleted == 0)
1696 {
1697 if (command == DOBUF_UNLOAD)
1698 STRCPY(IObuff, _("E515: No buffers were unloaded"));
1699 else if (command == DOBUF_DEL)
1700 STRCPY(IObuff, _("E516: No buffers were deleted"));
1701 else
1702 STRCPY(IObuff, _("E517: No buffers were wiped out"));
1703 errormsg = (char *)IObuff;
1704 }
1705 else if (deleted >= p_report)
1706 {
1707 if (command == DOBUF_UNLOAD)
1708 smsg(NGETTEXT("%d buffer unloaded",
1709 "%d buffers unloaded", deleted), deleted);
1710 else if (command == DOBUF_DEL)
1711 smsg(NGETTEXT("%d buffer deleted",
1712 "%d buffers deleted", deleted), deleted);
1713 else
1714 smsg(NGETTEXT("%d buffer wiped out",
1715 "%d buffers wiped out", deleted), deleted);
1716 }
1717 }
1718
1719
1720 return errormsg;
1721}
1722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723/*
1724 * Set current buffer to "buf". Executes autocommands and closes current
1725 * buffer. "action" tells how to close the current buffer:
1726 * DOBUF_GOTO free or hide it
1727 * DOBUF_SPLIT nothing
1728 * DOBUF_UNLOAD unload it
1729 * DOBUF_DEL delete it
1730 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001731 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 */
1733 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001734set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735{
1736 buf_T *prevbuf;
1737 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001738 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001739#ifdef FEAT_SYN_HL
1740 long old_tw = curbuf->b_p_tw;
1741#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001742 bufref_T newbufref;
1743 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744
1745 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001746 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001747 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1748 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
Bram Moolenaarc667da52019-11-30 20:52:27 +01001750 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752
Bram Moolenaarc667da52019-11-30 20:52:27 +01001753 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001755 set_bufref(&prevbufref, prevbuf);
1756 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001758 // Autocommands may delete the current buffer and/or the buffer we want to
1759 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001760 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001761 || (bufref_valid(&prevbufref)
1762 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001763#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001764 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001766 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001768#ifdef FEAT_SYN_HL
1769 if (prevbuf == curwin->w_buffer)
1770 reset_synblock(curwin);
1771#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001773 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001774#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001775 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001777 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001779 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001780 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001781
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001782 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001783 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1785 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001786 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001787 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1788 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001789 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001790 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001791 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001794 // An autocommand may have deleted "buf", already entered it (e.g., when
1795 // it did ":bunload") or aborted the script processing.
1796 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9e931222012-06-20 11:55:01 +02001797 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001798#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001799 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001801 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001802 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001804#ifdef FEAT_SYN_HL
1805 if (old_tw != curbuf->b_p_tw)
1806 check_colorcolumn(curwin);
1807#endif
1808 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809}
1810
1811/*
1812 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001813 * Old curbuf must have been abandoned already! This also means "curbuf" may
1814 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001816 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001817enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001819 // Get the buffer in the current window.
1820 curwin->w_buffer = buf;
1821 curbuf = buf;
1822 ++curbuf->b_nwindows;
1823
1824 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1826 if (!buf->b_help)
1827 get_winopts(buf);
1828#ifdef FEAT_FOLDING
1829 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001830 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001832 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833#endif
1834
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001836 if (curwin->w_p_diff)
1837 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838#endif
1839
Bram Moolenaara971b822011-09-14 14:43:25 +02001840#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001841 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001842#endif
1843
Bram Moolenaarc667da52019-11-30 20:52:27 +01001844 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 curwin->w_cursor.lnum = 1;
1846 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001849 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850
Bram Moolenaarc667da52019-11-30 20:52:27 +01001851 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001852 curwin->w_valid = 0;
1853
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001854 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1855 curbuf->b_last_cursor.col, TRUE);
1856
Bram Moolenaarc667da52019-11-30 20:52:27 +01001857 // Make sure the buffer is loaded.
1858 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001859 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001860 // If there is no filetype, allow for detecting one. Esp. useful for
1861 // ":ball" used in a autocommand. If there already is a filetype we
1862 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001863 if (*curbuf->b_p_ft == NUL)
1864 did_filetype = FALSE;
1865
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001866 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 else
1869 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001870 if (!msg_silent && !shortmess(SHM_FILEINFO))
1871 need_fileinfo = TRUE; // display file info after redraw
1872
1873 // check if file changed
1874 (void)buf_check_timestamp(curbuf, FALSE);
1875
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001877#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1881 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 }
1883
Bram Moolenaarc667da52019-11-30 20:52:27 +01001884 // If autocommands did not change the cursor position, restore cursor lnum
1885 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 if (curwin->w_cursor.lnum == 1 && inindent(0))
1887 buflist_getfpos();
1888
Bram Moolenaarc667da52019-11-30 20:52:27 +01001889 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890#ifdef FEAT_TITLE
1891 maketitle();
1892#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001893 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001894 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001895 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896
Bram Moolenaar009b2592004-10-24 19:18:58 +00001897#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001898 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001899 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001900#endif
1901
Bram Moolenaarc667da52019-11-30 20:52:27 +01001902 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001903 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905#ifdef FEAT_KEYMAP
1906 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001907 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001909#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001910 // May need to set the spell language. Can only do this after the buffer
1911 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001912 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1913 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001914#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001915#ifdef FEAT_VIMINFO
1916 curbuf->b_last_used = vim_time();
1917#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001918
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 redraw_later(NOT_VALID);
1920}
1921
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001922#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1923/*
1924 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001925 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001926 */
1927 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001928do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001929{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001930 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001931 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001932 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001933 shorten_fnames(TRUE);
1934}
1935#endif
1936
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001937 void
1938no_write_message(void)
1939{
1940#ifdef FEAT_TERMINAL
1941 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001942 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001943 else
1944#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001945 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001946}
1947
1948 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001949no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001950{
1951#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001952 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001953 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001954 else
1955#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001956 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001957}
1958
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959/*
1960 * functions for dealing with the buffer list
1961 */
1962
1963/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001964 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1965 * only one window. That means it can be re-used.
1966 */
1967 int
1968curbuf_reusable(void)
1969{
1970 return (curbuf != NULL
1971 && curbuf->b_ffname == NULL
1972 && curbuf->b_nwindows <= 1
1973 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001974#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001975 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001976#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001977 && !curbufIsChanged());
1978}
1979
1980/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 * Add a file name to the buffer list. Return a pointer to the buffer.
1982 * If the same file name already exists return a pointer to that buffer.
1983 * If it does not exist, or if fname == NULL, a new entry is created.
1984 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1985 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1986 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001987 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001988 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1989 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001990 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 * This is the ONLY way to create a new buffer.
1992 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001994buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001995 char_u *ffname_arg, // full path of fname or relative
1996 char_u *sfname_arg, // short fname or NULL
1997 linenr_T lnum, // preferred cursor line
1998 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002000 char_u *ffname = ffname_arg;
2001 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 buf_T *buf;
2003#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002004 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005#endif
2006
Bram Moolenaar480778b2016-07-14 22:09:39 +02002007 if (top_file_num == 1)
2008 hash_init(&buf_hashtab);
2009
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002010 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011
2012 /*
2013 * If file name already exists in the list, update the entry.
2014 */
2015#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002016 // On Unix we can use inode numbers when the file exists. Works better
2017 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
2019 st.st_dev = (dev_T)-1;
2020#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02002021 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022#ifdef UNIX
2023 buflist_findname_stat(ffname, &st)
2024#else
2025 buflist_findname(ffname)
2026#endif
2027 ) != NULL)
2028 {
2029 vim_free(ffname);
2030 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002031 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2032 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002033
2034 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002035 // copy the options now, if 'cpo' doesn't have 's' and not done
2036 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002037 buf_copy_options(buf, 0);
2038
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2040 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002041 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002042
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002044 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002046 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002047 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002048 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002049 return NULL;
2050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 }
2052 return buf;
2053 }
2054
2055 /*
2056 * If the current buffer has no name and no contents, use the current
2057 * buffer. Otherwise: Need to allocate a new buffer structure.
2058 *
2059 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002060 * (A spell file buffer is allocated in spell.c, but that's not a normal
2061 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 */
2063 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002064 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 {
2066 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002067 // It's like this buffer is deleted. Watch out for autocommands that
2068 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 if (curbuf->b_p_bl)
2070 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2071 if (buf == curbuf)
2072 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002073#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002074 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002075 {
2076 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002082 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 clear_string_option(&buf->b_p_bh);
2084 clear_string_option(&buf->b_p_bt);
2085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 }
2087 if (buf != curbuf || curbuf == NULL)
2088 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002089 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 if (buf == NULL)
2091 {
2092 vim_free(ffname);
2093 return NULL;
2094 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002095#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002096 // init b: variables
Bram Moolenaar429fa852013-04-15 12:27:36 +02002097 buf->b_vars = dict_alloc();
2098 if (buf->b_vars == NULL)
2099 {
2100 vim_free(ffname);
2101 vim_free(buf);
2102 return NULL;
2103 }
2104 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2105#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002106 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 }
2108
2109 if (ffname != NULL)
2110 {
2111 buf->b_ffname = ffname;
2112 buf->b_sfname = vim_strsave(sfname);
2113 }
2114
2115 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002116 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117
2118 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2119 || buf->b_wininfo == NULL)
2120 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002121 if (buf->b_sfname != buf->b_ffname)
2122 VIM_CLEAR(buf->b_sfname);
2123 else
2124 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002125 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 if (buf != curbuf)
2127 free_buffer(buf);
2128 return NULL;
2129 }
2130
2131 if (buf == curbuf)
2132 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002133 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002134 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002135 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002137#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002138 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 return NULL;
2140#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002141 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002142
Bram Moolenaarc667da52019-11-30 20:52:27 +01002143 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002144 buf->b_p_initialized = FALSE;
2145 buf_copy_options(buf, BCO_ENTER);
2146
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002148 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 curbuf->b_kmap_state |= KEYMAP_INIT;
2150#endif
2151 }
2152 else
2153 {
2154 /*
2155 * put new buffer at the end of the buffer list
2156 */
2157 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002158 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 {
2160 buf->b_prev = NULL;
2161 firstbuf = buf;
2162 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002163 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 {
2165 lastbuf->b_next = buf;
2166 buf->b_prev = lastbuf;
2167 }
2168 lastbuf = buf;
2169
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002170 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2171 {
2172 // Recycle a previously used buffer number. Used for buffers which
2173 // are normally hidden, e.g. in a popup window. Avoids that the
2174 // buffer number grows rapidly.
2175 --buf_reuse.ga_len;
2176 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002177
2178 // Move buffer to the right place in the buffer list.
2179 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2180 {
2181 buf_T *prev = buf->b_prev;
2182
2183 prev->b_next = buf->b_next;
2184 if (prev->b_next != NULL)
2185 prev->b_next->b_prev = prev;
2186 buf->b_next = prev;
2187 buf->b_prev = prev->b_prev;
2188 if (buf->b_prev != NULL)
2189 buf->b_prev->b_next = buf;
2190 prev->b_prev = buf;
2191 if (lastbuf == buf)
2192 lastbuf = prev;
2193 if (firstbuf == prev)
2194 firstbuf = buf;
2195 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002196 }
2197 else
2198 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002199 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002201 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002202 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 {
2204 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002205 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 }
2207 top_file_num = 1;
2208 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002209 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
2211 /*
2212 * Always copy the options from the current buffer.
2213 */
2214 buf_copy_options(buf, BCO_ALWAYS);
2215 }
2216
2217 buf->b_wininfo->wi_fpos.lnum = lnum;
2218 buf->b_wininfo->wi_win = curwin;
2219
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002220#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002221 hash_init(&buf->b_s.b_keywtab);
2222 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223#endif
2224
2225 buf->b_fname = buf->b_sfname;
2226#ifdef UNIX
2227 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002228 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 else
2230 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002231 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 buf->b_dev = st.st_dev;
2233 buf->b_ino = st.st_ino;
2234 }
2235#endif
2236 buf->b_u_synced = TRUE;
2237 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002238 if (flags & BLN_DUMMY)
2239 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002241 clrallmarks(buf); // clear marks
2242 fmarks_check_names(buf); // check file marks for this file
2243 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 if (!(flags & BLN_DUMMY))
2245 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002246 bufref_T bufref;
2247
Bram Moolenaarc667da52019-11-30 20:52:27 +01002248 // Tricky: these autocommands may change the buffer list. They could
2249 // also split the window with re-using the one empty buffer. This may
2250 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002251 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002252 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002253 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002254 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002256 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002257 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002258 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002259 return NULL;
2260 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002261#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002262 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266
2267 return buf;
2268}
2269
2270/*
2271 * Free the memory for the options of a buffer.
2272 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2273 * 'fileencoding'.
2274 */
2275 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002276free_buf_options(
2277 buf_T *buf,
2278 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279{
2280 if (free_p_ff)
2281 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 clear_string_option(&buf->b_p_bh);
2285 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 }
2287#ifdef FEAT_FIND_ID
2288 clear_string_option(&buf->b_p_def);
2289 clear_string_option(&buf->b_p_inc);
2290# ifdef FEAT_EVAL
2291 clear_string_option(&buf->b_p_inex);
2292# endif
2293#endif
2294#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2295 clear_string_option(&buf->b_p_inde);
2296 clear_string_option(&buf->b_p_indk);
2297#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002298#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2299 clear_string_option(&buf->b_p_bexpr);
2300#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002301#if defined(FEAT_CRYPT)
2302 clear_string_option(&buf->b_p_cm);
2303#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002304 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002305#if defined(FEAT_EVAL)
2306 clear_string_option(&buf->b_p_fex);
2307#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002309# ifdef FEAT_SODIUM
2310 if (buf->b_p_key != NULL && (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2311 sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
2312# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 clear_string_option(&buf->b_p_key);
2314#endif
2315 clear_string_option(&buf->b_p_kp);
2316 clear_string_option(&buf->b_p_mps);
2317 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002318 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002320#ifdef FEAT_VARTABS
2321 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002322 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002323 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002324 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002325 buf->b_p_vsts_array = NULL;
2326 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002327 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329#ifdef FEAT_KEYMAP
2330 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002331 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 ga_clear(&buf->b_kmap_ga);
2333#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335#ifdef FEAT_FOLDING
2336 clear_string_option(&buf->b_p_cms);
2337#endif
2338 clear_string_option(&buf->b_p_nf);
2339#ifdef FEAT_SYN_HL
2340 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002341 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002342#endif
2343#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002344 clear_string_option(&buf->b_s.b_p_spc);
2345 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002346 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002347 buf->b_s.b_cap_prog = NULL;
2348 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002349 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350#endif
2351#ifdef FEAT_SEARCHPATH
2352 clear_string_option(&buf->b_p_sua);
2353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355#ifdef FEAT_CINDENT
2356 clear_string_option(&buf->b_p_cink);
2357 clear_string_option(&buf->b_p_cino);
2358#endif
2359#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2360 clear_string_option(&buf->b_p_cinw);
2361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002363#ifdef FEAT_COMPL_FUNC
2364 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002365 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367#ifdef FEAT_QUICKFIX
2368 clear_string_option(&buf->b_p_gp);
2369 clear_string_option(&buf->b_p_mp);
2370 clear_string_option(&buf->b_p_efm);
2371#endif
2372 clear_string_option(&buf->b_p_ep);
2373 clear_string_option(&buf->b_p_path);
2374 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002375 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002376#ifdef FEAT_EVAL
2377 clear_string_option(&buf->b_p_tfu);
2378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 clear_string_option(&buf->b_p_dict);
2380 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002381#ifdef FEAT_TEXTOBJ
2382 clear_string_option(&buf->b_p_qe);
2383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002385 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002386#ifdef FEAT_LISP
2387 clear_string_option(&buf->b_p_lw);
2388#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002389 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002390 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391}
2392
2393/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002394 * Get alternate file "n".
2395 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2396 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 * if (options & GETF_SETMARK) call setpcmark()
2398 * if (options & GETF_ALT) we are jumping to an alternate file.
2399 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2400 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002401 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 */
2403 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002404buflist_getfile(
2405 int n,
2406 linenr_T lnum,
2407 int options,
2408 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409{
2410 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 pos_T *fpos;
2413 colnr_T col;
2414
2415 buf = buflist_findnr(n);
2416 if (buf == NULL)
2417 {
2418 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002419 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002421 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 return FAIL;
2423 }
2424
Bram Moolenaarc667da52019-11-30 20:52:27 +01002425 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 if (buf == curbuf)
2427 return OK;
2428
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002429 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002430 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002431 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002433 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002434 if (curbuf_locked())
2435 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
Bram Moolenaarc667da52019-11-30 20:52:27 +01002437 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 if (lnum == 0)
2439 {
2440 fpos = buflist_findfpos(buf);
2441 lnum = fpos->lnum;
2442 col = fpos->col;
2443 }
2444 else
2445 col = 0;
2446
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (options & GETF_SWITCH)
2448 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002449 // If 'switchbuf' contains "useopen": jump to first window containing
2450 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002451 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002453
Bram Moolenaarc667da52019-11-30 20:52:27 +01002454 // If 'switchbuf' contains "usetab": jump to first window in any tab
2455 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002456 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002457 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002458
Bram Moolenaarc667da52019-11-30 20:52:27 +01002459 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2460 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002461 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002462 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002464 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002465 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002466 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2467 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002469 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 }
2471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472
2473 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002474 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2475 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {
2477 --RedrawingDisabled;
2478
Bram Moolenaarc667da52019-11-30 20:52:27 +01002479 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 if (!p_sol && col != 0)
2481 {
2482 curwin->w_cursor.col = col;
2483 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 curwin->w_set_curswant = TRUE;
2486 }
2487 return OK;
2488 }
2489 --RedrawingDisabled;
2490 return FAIL;
2491}
2492
2493/*
2494 * go to the last know line number for the current buffer
2495 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002496 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002497buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498{
2499 pos_T *fpos;
2500
2501 fpos = buflist_findfpos(curbuf);
2502
2503 curwin->w_cursor.lnum = fpos->lnum;
2504 check_cursor_lnum();
2505
2506 if (p_sol)
2507 curwin->w_cursor.col = 0;
2508 else
2509 {
2510 curwin->w_cursor.col = fpos->col;
2511 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 curwin->w_set_curswant = TRUE;
2514 }
2515}
2516
Bram Moolenaar81695252004-12-29 20:58:21 +00002517#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2518/*
2519 * Find file in buffer list by name (it has to be for the current window).
2520 * Returns NULL if not found.
2521 */
2522 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002523buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002524{
2525 char_u *ffname;
2526 buf_T *buf = NULL;
2527
Bram Moolenaarc667da52019-11-30 20:52:27 +01002528 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002529 ffname = FullName_save(fname,
2530#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002531 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002532#else
2533 FALSE
2534#endif
2535 );
2536 if (ffname != NULL)
2537 {
2538 buf = buflist_findname(ffname);
2539 vim_free(ffname);
2540 }
2541 return buf;
2542}
2543#endif
2544
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545/*
2546 * Find file in buffer list by name (it has to be for the current window).
2547 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002548 * Skips dummy buffers.
2549 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 */
2551 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002552buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553{
2554#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002555 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556
2557 if (mch_stat((char *)ffname, &st) < 0)
2558 st.st_dev = (dev_T)-1;
2559 return buflist_findname_stat(ffname, &st);
2560}
2561
2562/*
2563 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2564 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002565 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 */
2567 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002568buflist_findname_stat(
2569 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002570 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571{
2572#endif
2573 buf_T *buf;
2574
Bram Moolenaarc667da52019-11-30 20:52:27 +01002575 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002576 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002577 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578#ifdef UNIX
2579 , stp
2580#endif
2581 ))
2582 return buf;
2583 return NULL;
2584}
2585
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586/*
2587 * Find file in buffer list by a regexp pattern.
2588 * Return fnum of the found buffer.
2589 * Return < 0 for error.
2590 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002592buflist_findpat(
2593 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002594 char_u *pattern_end, // pointer to first char after pattern
2595 int unlisted, // find unlisted buffers
2596 int diffmode UNUSED, // find diff-mode buffers only
2597 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598{
2599 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 int match = -1;
2601 int find_listed;
2602 char_u *pat;
2603 char_u *patend;
2604 int attempt;
2605 char_u *p;
2606 int toggledollar;
2607
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002608 // "%" is current file, "%%" or "#" is alternate file
2609 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2610 || (in_vim9script() && pattern_end == pattern + 2
2611 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002613 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002615 else
2616 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617#ifdef FEAT_DIFF
2618 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2619 match = -1;
2620#endif
2621 }
2622
2623 /*
2624 * Try four ways of matching a listed buffer:
2625 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002626 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 * attempt == 2: with '$' at end (only match at end)
2628 * attempt == 3: with '^' at start and '$' at end (only full match)
2629 * Repeat this for finding an unlisted buffer if there was no matching
2630 * listed buffer.
2631 */
2632 else
2633 {
2634 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2635 if (pat == NULL)
2636 return -1;
2637 patend = pat + STRLEN(pat) - 1;
2638 toggledollar = (patend > pat && *patend == '$');
2639
Bram Moolenaarc667da52019-11-30 20:52:27 +01002640 // First try finding a listed buffer. If not found and "unlisted"
2641 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 find_listed = TRUE;
2643 for (;;)
2644 {
2645 for (attempt = 0; attempt <= 3; ++attempt)
2646 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002647 regmatch_T regmatch;
2648
Bram Moolenaarc667da52019-11-30 20:52:27 +01002649 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002651 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002653 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002655 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002656 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 {
2658 vim_free(pat);
2659 return -1;
2660 }
2661
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002662 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 if (buf->b_p_bl == find_listed
2664#ifdef FEAT_DIFF
2665 && (!diffmode || diff_mode_buf(buf))
2666#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002667 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002669 if (curtab_only)
2670 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002671 // Ignore the match if the buffer is not open in
2672 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002673 win_T *wp;
2674
Bram Moolenaar29323592016-07-24 22:04:11 +02002675 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002676 if (wp->w_buffer == buf)
2677 break;
2678 if (wp == NULL)
2679 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002680 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002681 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 {
2683 match = -2;
2684 break;
2685 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002686 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 }
2688
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002689 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002690 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 break;
2692 }
2693
Bram Moolenaarc667da52019-11-30 20:52:27 +01002694 // Only search for unlisted buffers if there was no match with
2695 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 if (!unlisted || !find_listed || match != -1)
2697 break;
2698 find_listed = FALSE;
2699 }
2700
2701 vim_free(pat);
2702 }
2703
2704 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002705 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002707 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 return match;
2709}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710
Bram Moolenaar52410572019-10-27 05:12:45 +01002711#ifdef FEAT_VIMINFO
2712typedef struct {
2713 buf_T *buf;
2714 char_u *match;
2715} bufmatch_T;
2716#endif
2717
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718/*
2719 * Find all buffer names that match.
2720 * For command line expansion of ":buf" and ":sbuf".
2721 * Return OK if matches found, FAIL otherwise.
2722 */
2723 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002724ExpandBufnames(
2725 char_u *pat,
2726 int *num_file,
2727 char_u ***file,
2728 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
2730 int count = 0;
2731 buf_T *buf;
2732 int round;
2733 char_u *p;
2734 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002735 char_u *patc;
Bram Moolenaar52410572019-10-27 05:12:45 +01002736#ifdef FEAT_VIMINFO
2737 bufmatch_T *matches = NULL;
2738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739
Bram Moolenaarc667da52019-11-30 20:52:27 +01002740 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 *file = NULL;
2742
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002743#ifdef FEAT_DIFF
2744 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2745 return FAIL;
2746#endif
2747
Bram Moolenaarc667da52019-11-30 20:52:27 +01002748 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002749 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002751 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002752 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002754 STRCPY(patc, "\\(^\\|[\\/]\\)");
2755 STRCPY(patc + 11, pat + 1);
2756 }
2757 else
2758 patc = pat;
2759
2760 /*
2761 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002762 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002763 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002764 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002765 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002766 regmatch_T regmatch;
2767
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002768 if (attempt > 0 && patc == pat)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002769 break; // there was no anchor, no need to try again
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002770 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2771 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002772 {
2773 if (patc != pat)
2774 vim_free(patc);
2775 return FAIL;
2776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
2778 /*
2779 * round == 1: Count the matches.
2780 * round == 2: Build the array to keep the matches.
2781 */
2782 for (round = 1; round <= 2; ++round)
2783 {
2784 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002785 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002787 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002789#ifdef FEAT_DIFF
2790 if (options & BUF_DIFF_FILTER)
2791 // Skip buffers not suitable for
2792 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002793 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002794 continue;
2795#endif
2796
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002797 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 if (p != NULL)
2799 {
2800 if (round == 1)
2801 ++count;
2802 else
2803 {
2804 if (options & WILD_HOME_REPLACE)
2805 p = home_replace_save(buf, p);
2806 else
2807 p = vim_strsave(p);
Bram Moolenaar52410572019-10-27 05:12:45 +01002808#ifdef FEAT_VIMINFO
2809 if (matches != NULL)
2810 {
2811 matches[count].buf = buf;
2812 matches[count].match = p;
2813 count++;
2814 }
2815 else
2816#endif
2817 (*file)[count++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 }
2819 }
2820 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002821 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 break;
2823 if (round == 1)
2824 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002825 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 if (*file == NULL)
2827 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002828 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002829 if (patc != pat)
2830 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 return FAIL;
2832 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002833#ifdef FEAT_VIMINFO
2834 if (options & WILD_BUFLASTUSED)
2835 matches = ALLOC_MULT(bufmatch_T, count);
2836#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 }
2838 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002839 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002840 if (count) // match(es) found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 break;
2842 }
2843
Bram Moolenaar05159a02005-02-26 23:04:13 +00002844 if (patc != pat)
2845 vim_free(patc);
2846
Bram Moolenaar52410572019-10-27 05:12:45 +01002847#ifdef FEAT_VIMINFO
2848 if (matches != NULL)
2849 {
2850 int i;
2851 if (count > 1)
2852 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2853 // if the current buffer is first in the list, place it at the end
2854 if (matches[0].buf == curbuf)
2855 {
2856 for (i = 1; i < count; i++)
2857 (*file)[i-1] = matches[i].match;
2858 (*file)[count-1] = matches[0].match;
2859 }
2860 else
2861 {
2862 for (i = 0; i < count; i++)
2863 (*file)[i] = matches[i].match;
2864 }
2865 vim_free(matches);
2866 }
2867#endif
2868
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 *num_file = count;
2870 return (count == 0 ? FAIL : OK);
2871}
2872
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873/*
2874 * Check for a match on the file name for buffer "buf" with regprog "prog".
2875 */
2876 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002877buflist_match(
2878 regmatch_T *rmp,
2879 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002880 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881{
2882 char_u *match;
2883
Bram Moolenaarc667da52019-11-30 20:52:27 +01002884 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002885 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002887 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
2889 return match;
2890}
2891
2892/*
2893 * Try matching the regexp in "prog" with file name "name".
2894 * Return "name" when there is a match, NULL when not.
2895 */
2896 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002897fname_match(
2898 regmatch_T *rmp,
2899 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002900 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901{
2902 char_u *match = NULL;
2903 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904
2905 if (name != NULL)
2906 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002907 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002908 rmp->rm_ic = p_fic || ignore_case;
2909 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 match = name;
2911 else
2912 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002913 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002915 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 match = name;
2917 vim_free(p);
2918 }
2919 }
2920
2921 return match;
2922}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923
2924/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002925 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 */
2927 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002928buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002930 char_u key[VIM_SIZEOF_INT * 2 + 1];
2931 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932
2933 if (nr == 0)
2934 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002935 sprintf((char *)key, "%x", nr);
2936 hi = hash_find(&buf_hashtab, key);
2937
2938 if (!HASHITEM_EMPTY(hi))
2939 return (buf_T *)(hi->hi_key
2940 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 return NULL;
2942}
2943
2944/*
2945 * Get name of file 'n' in the buffer list.
2946 * When the file has no name an empty string is returned.
2947 * home_replace() is used to shorten the file name (used for marks).
2948 * Returns a pointer to allocated memory, of NULL when failed.
2949 */
2950 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002951buflist_nr2name(
2952 int n,
2953 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002954 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955{
2956 buf_T *buf;
2957
2958 buf = buflist_findnr(n);
2959 if (buf == NULL)
2960 return NULL;
2961 return home_replace_save(helptail ? buf : NULL,
2962 fullname ? buf->b_ffname : buf->b_fname);
2963}
2964
2965/*
2966 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2967 * When "copy_options" is TRUE save the local window option values.
2968 * When "lnum" is 0 only do the options.
2969 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002970 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002971buflist_setfpos(
2972 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002973 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01002974 linenr_T lnum,
2975 colnr_T col,
2976 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977{
2978 wininfo_T *wip;
2979
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002980 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 if (wip->wi_win == win)
2982 break;
2983 if (wip == NULL)
2984 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002985 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002986 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 if (wip == NULL)
2988 return;
2989 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002990 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 lnum = 1;
2992 }
2993 else
2994 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002995 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (wip->wi_prev)
2997 wip->wi_prev->wi_next = wip->wi_next;
2998 else
2999 buf->b_wininfo = wip->wi_next;
3000 if (wip->wi_next)
3001 wip->wi_next->wi_prev = wip->wi_prev;
3002 if (copy_options && wip->wi_optset)
3003 {
3004 clear_winopt(&wip->wi_opt);
3005#ifdef FEAT_FOLDING
3006 deleteFoldRecurse(&wip->wi_folds);
3007#endif
3008 }
3009 }
3010 if (lnum != 0)
3011 {
3012 wip->wi_fpos.lnum = lnum;
3013 wip->wi_fpos.col = col;
3014 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003015 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003017 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
3019#ifdef FEAT_FOLDING
3020 wip->wi_fold_manual = win->w_fold_manual;
3021 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
3022#endif
3023 wip->wi_optset = TRUE;
3024 }
3025
Bram Moolenaarc667da52019-11-30 20:52:27 +01003026 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 wip->wi_next = buf->b_wininfo;
3028 buf->b_wininfo = wip;
3029 wip->wi_prev = NULL;
3030 if (wip->wi_next)
3031 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032}
3033
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003034#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003035/*
3036 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3037 * page. That's because a diff is local to a tab page.
3038 */
3039 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003040wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003041{
3042 win_T *wp;
3043
3044 if (wip->wi_opt.wo_diff)
3045 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003046 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003047 // return FALSE when it's a window in the current tab page, thus
3048 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003049 if (wip->wi_win == wp)
3050 return FALSE;
3051 return TRUE;
3052 }
3053 return FALSE;
3054}
3055#endif
3056
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057/*
3058 * Find info for the current window in buffer "buf".
3059 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003060 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003061 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3062 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 * Returns NULL when there isn't any info.
3064 */
3065 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003066find_wininfo(
3067 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003068 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003069 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070{
3071 wininfo_T *wip;
3072
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003073 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003074 if (wip->wi_win == curwin
3075#ifdef FEAT_DIFF
3076 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3077#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003078
3079 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003081
Bram Moolenaarc667da52019-11-30 20:52:27 +01003082 // If no wininfo for curwin, use the first in the list (that doesn't have
3083 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003084 // If "need_options" is TRUE skip entries that don't have options set,
3085 // unless the window is editing "buf", so we can copy from the window
3086 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003087 if (wip == NULL)
3088 {
3089#ifdef FEAT_DIFF
3090 if (skip_diff_buffer)
3091 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003092 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003093 if (!wininfo_other_tab_diff(wip)
3094 && (!need_options || wip->wi_optset
3095 || (wip->wi_win != NULL
3096 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003097 break;
3098 }
3099 else
3100#endif
3101 wip = buf->b_wininfo;
3102 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 return wip;
3104}
3105
3106/*
3107 * Reset the local window options to the values last used in this window.
3108 * If the buffer wasn't used in this window before, use the values from
3109 * the most recently used window. If the values were never set, use the
3110 * global values for the window.
3111 */
3112 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003113get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114{
3115 wininfo_T *wip;
3116
3117 clear_winopt(&curwin->w_onebuf_opt);
3118#ifdef FEAT_FOLDING
3119 clearFolding(curwin);
3120#endif
3121
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003122 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003123 if (wip != NULL && wip->wi_win != NULL
3124 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003126 // The buffer is currently displayed in the window: use the actual
3127 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003128 win_T *wp = wip->wi_win;
3129
3130 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3131#ifdef FEAT_FOLDING
3132 curwin->w_fold_manual = wp->w_fold_manual;
3133 curwin->w_foldinvalid = TRUE;
3134 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3135#endif
3136 }
3137 else if (wip != NULL && wip->wi_optset)
3138 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003139 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3141#ifdef FEAT_FOLDING
3142 curwin->w_fold_manual = wip->wi_fold_manual;
3143 curwin->w_foldinvalid = TRUE;
3144 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3145#endif
3146 }
3147 else
3148 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3149
3150#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003151 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 if (p_fdls >= 0)
3153 curwin->w_p_fdl = p_fdls;
3154#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003155 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156}
3157
3158/*
3159 * Find the position (lnum and col) for the buffer 'buf' for the current
3160 * window.
3161 * Returns a pointer to no_position if no position is found.
3162 */
3163 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003164buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165{
3166 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003167 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003169 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 if (wip != NULL)
3171 return &(wip->wi_fpos);
3172 else
3173 return &no_position;
3174}
3175
3176/*
3177 * Find the lnum for the buffer 'buf' for the current window.
3178 */
3179 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003180buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181{
3182 return buflist_findfpos(buf)->lnum;
3183}
3184
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003186 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003189buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
Bram Moolenaar52410572019-10-27 05:12:45 +01003191 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 int len;
3193 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003194 int ro_char;
3195 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003196#ifdef FEAT_TERMINAL
3197 int job_running;
3198 int job_none_open;
3199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200
Bram Moolenaar52410572019-10-27 05:12:45 +01003201#ifdef FEAT_VIMINFO
3202 garray_T buflist;
3203 buf_T **buflist_data = NULL, **p;
3204
3205 if (vim_strchr(eap->arg, 't'))
3206 {
3207 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003208 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003209 {
3210 if (ga_grow(&buflist, 1) == OK)
3211 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3212 }
3213
3214 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3215 sizeof(buf_T *), buf_compare);
3216
Bram Moolenaar3b991522019-11-06 23:26:20 +01003217 buflist_data = (buf_T **)buflist.ga_data;
3218 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003219 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003220 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003221
Bram Moolenaar3b991522019-11-06 23:26:20 +01003222 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003223 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3224 : buf->b_next)
3225#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003229#ifdef FEAT_TERMINAL
3230 job_running = term_job_running(buf->b_term);
3231 job_none_open = job_running && term_none_open(buf->b_term);
3232#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003233 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003234 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3235 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3236 || (vim_strchr(eap->arg, '+')
3237 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3238 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003239 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003240 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003241 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3242#ifdef FEAT_TERMINAL
3243 || (vim_strchr(eap->arg, 'R')
3244 && (!job_running || (job_running && job_none_open)))
3245 || (vim_strchr(eap->arg, '?')
3246 && (!job_running || (job_running && !job_none_open)))
3247 || (vim_strchr(eap->arg, 'F')
3248 && (job_running || buf->b_term == NULL))
3249#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003250 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3251 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3252 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3253 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3254 || (vim_strchr(eap->arg, '#')
3255 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003258 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 else
3260 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003261 if (message_filtered(NameBuff))
3262 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003264 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3265 : (bufIsChanged(buf) ? '+' : ' ');
3266#ifdef FEAT_TERMINAL
3267 if (term_job_running(buf->b_term))
3268 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003269 if (term_none_open(buf->b_term))
3270 ro_char = '?';
3271 else
3272 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003273 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3274 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003275 }
3276 else if (buf->b_term != NULL)
3277 ro_char = 'F';
3278 else
3279#endif
3280 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3281
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003282 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003283 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 buf->b_fnum,
3285 buf->b_p_bl ? ' ' : 'u',
3286 buf == curbuf ? '%' :
3287 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3288 buf->b_ml.ml_mfp == NULL ? ' ' :
3289 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003290 ro_char,
3291 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003292 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003293 if (len > IOSIZE - 20)
3294 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295
Bram Moolenaarc667da52019-11-30 20:52:27 +01003296 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 i = 40 - vim_strsize(IObuff);
3298 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003300 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003301#ifdef FEAT_VIMINFO
3302 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3303 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3304 else
3305#endif
3306 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3307 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003308 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003310 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 ui_breakcheck();
3312 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003313
3314#ifdef FEAT_VIMINFO
3315 if (buflist_data)
3316 ga_clear(&buflist);
3317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319
3320/*
3321 * Get file name and line number for file 'fnum'.
3322 * Used by DoOneCmd() for translating '%' and '#'.
3323 * Used by insert_reg() and cmdline_paste() for '#' register.
3324 * Return FAIL if not found, OK for success.
3325 */
3326 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003327buflist_name_nr(
3328 int fnum,
3329 char_u **fname,
3330 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
3332 buf_T *buf;
3333
3334 buf = buflist_findnr(fnum);
3335 if (buf == NULL || buf->b_fname == NULL)
3336 return FAIL;
3337
3338 *fname = buf->b_fname;
3339 *lnum = buflist_findlnum(buf);
3340
3341 return OK;
3342}
3343
3344/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003345 * Set the file name for "buf"' to "ffname_arg", short file name to
3346 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 * The file name with the full path is also remembered, for when :cd is used.
3348 * Returns FAIL for failure (file name already in use by other buffer)
3349 * OK otherwise.
3350 */
3351 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003352setfname(
3353 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003354 char_u *ffname_arg,
3355 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003356 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003358 char_u *ffname = ffname_arg;
3359 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003360 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003362 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363#endif
3364
3365 if (ffname == NULL || *ffname == NUL)
3366 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003367 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003368 if (buf->b_sfname != buf->b_ffname)
3369 VIM_CLEAR(buf->b_sfname);
3370 else
3371 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003372 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373#ifdef UNIX
3374 st.st_dev = (dev_T)-1;
3375#endif
3376 }
3377 else
3378 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003379 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3380 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 return FAIL;
3382
3383 /*
3384 * if the file name is already used in another buffer:
3385 * - if the buffer is loaded, fail
3386 * - if the buffer is not loaded, delete it from the list
3387 */
3388#ifdef UNIX
3389 if (mch_stat((char *)ffname, &st) < 0)
3390 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003391#endif
3392 if (!(buf->b_flags & BF_DUMMY))
3393#ifdef UNIX
3394 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003396 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397#endif
3398 if (obuf != NULL && obuf != buf)
3399 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003400 win_T *win;
3401 tabpage_T *tab;
3402 int in_use = FALSE;
3403
3404 // during startup a window may use a buffer that is not loaded yet
3405 FOR_ALL_TAB_WINDOWS(tab, win)
3406 if (win->w_buffer == obuf)
3407 in_use = TRUE;
3408
3409 // it's loaded or used in a window, fail
3410 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 {
3412 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003413 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 vim_free(ffname);
3415 return FAIL;
3416 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003417 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003418 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 }
3420 sfname = vim_strsave(sfname);
3421 if (ffname == NULL || sfname == NULL)
3422 {
3423 vim_free(sfname);
3424 vim_free(ffname);
3425 return FAIL;
3426 }
3427#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003428 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003430 if (buf->b_sfname != buf->b_ffname)
3431 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 buf->b_ffname = ffname;
3434 buf->b_sfname = sfname;
3435 }
3436 buf->b_fname = buf->b_sfname;
3437#ifdef UNIX
3438 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003439 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 else
3441 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003442 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 buf->b_dev = st.st_dev;
3444 buf->b_ino = st.st_ino;
3445 }
3446#endif
3447
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449
3450 buf_name_changed(buf);
3451 return OK;
3452}
3453
3454/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003455 * Crude way of changing the name of a buffer. Use with care!
3456 * The name should be relative to the current directory.
3457 */
3458 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003459buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003460{
3461 buf_T *buf;
3462
3463 buf = buflist_findnr(fnum);
3464 if (buf != NULL)
3465 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003466 if (buf->b_sfname != buf->b_ffname)
3467 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003468 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003469 buf->b_ffname = vim_strsave(name);
3470 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003471 // Allocate ffname and expand into full path. Also resolves .lnk
3472 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003473 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003474 buf->b_fname = buf->b_sfname;
3475 }
3476}
3477
3478/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 * Take care of what needs to be done when the name of buffer "buf" has
3480 * changed.
3481 */
3482 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003483buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484{
3485 /*
3486 * If the file name changed, also change the name of the swapfile
3487 */
3488 if (buf->b_ml.ml_mfp != NULL)
3489 ml_setname(buf);
3490
3491 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003492 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493#ifdef FEAT_TITLE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003494 maketitle(); // set window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003496 status_redraw_all(); // status lines need to be redrawn
3497 fmarks_check_names(buf); // check named file marks
3498 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499}
3500
3501/*
3502 * set alternate file name for current window
3503 *
3504 * Used by do_one_cmd(), do_write() and do_ecmd().
3505 * Return the buffer.
3506 */
3507 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003508setaltfname(
3509 char_u *ffname,
3510 char_u *sfname,
3511 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512{
3513 buf_T *buf;
3514
Bram Moolenaarc667da52019-11-30 20:52:27 +01003515 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003517 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 curwin->w_alt_fnum = buf->b_fnum;
3519 return buf;
3520}
3521
3522/*
3523 * Get alternate file name for current window.
3524 * Return NULL if there isn't any, and give error message if requested.
3525 */
3526 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003527getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003528 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529{
3530 char_u *fname;
3531 linenr_T dummy;
3532
3533 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3534 {
3535 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003536 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 return NULL;
3538 }
3539 return fname;
3540}
3541
3542/*
3543 * Add a file name to the buflist and return its number.
3544 * Uses same flags as buflist_new(), except BLN_DUMMY.
3545 *
3546 * used by qf_init(), main() and doarglist()
3547 */
3548 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003549buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550{
3551 buf_T *buf;
3552
3553 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3554 if (buf != NULL)
3555 return buf->b_fnum;
3556 return 0;
3557}
3558
3559#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3560/*
3561 * Adjust slashes in file names. Called after 'shellslash' was set.
3562 */
3563 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003564buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565{
3566 buf_T *bp;
3567
Bram Moolenaar29323592016-07-24 22:04:11 +02003568 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 {
3570 if (bp->b_ffname != NULL)
3571 slash_adjust(bp->b_ffname);
3572 if (bp->b_sfname != NULL)
3573 slash_adjust(bp->b_sfname);
3574 }
3575}
3576#endif
3577
3578/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003579 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 * Also save the local window option values.
3581 */
3582 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003583buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003585 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586}
3587
3588/*
3589 * Return TRUE if 'ffname' is not the same file as current file.
3590 * Fname must have a full path (expanded by mch_FullName()).
3591 */
3592 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003593otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594{
3595 return otherfile_buf(curbuf, ffname
3596#ifdef UNIX
3597 , NULL
3598#endif
3599 );
3600}
3601
3602 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003603otherfile_buf(
3604 buf_T *buf,
3605 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003607 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003609 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003611 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3613 return TRUE;
3614 if (fnamecmp(ffname, buf->b_ffname) == 0)
3615 return FALSE;
3616#ifdef UNIX
3617 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003618 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619
Bram Moolenaarc667da52019-11-30 20:52:27 +01003620 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 if (stp == NULL)
3622 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003623 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 st.st_dev = (dev_T)-1;
3625 stp = &st;
3626 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003627 // Use dev/ino to check if the files are the same, even when the names
3628 // are different (possible with links). Still need to compare the
3629 // name above, for when the file doesn't exist yet.
3630 // Problem: The dev/ino changes when a file is deleted (and created
3631 // again) and remains the same when renamed/moved. We don't want to
3632 // mch_stat() each buffer each time, that would be too slow. Get the
3633 // dev/ino again when they appear to match, but not when they appear
3634 // to be different: Could skip a buffer when it's actually the same
3635 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 if (buf_same_ino(buf, stp))
3637 {
3638 buf_setino(buf);
3639 if (buf_same_ino(buf, stp))
3640 return FALSE;
3641 }
3642 }
3643#endif
3644 return TRUE;
3645}
3646
3647#if defined(UNIX) || defined(PROTO)
3648/*
3649 * Set inode and device number for a buffer.
3650 * Must always be called when b_fname is changed!.
3651 */
3652 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003653buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003655 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656
3657 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3658 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003659 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 buf->b_dev = st.st_dev;
3661 buf->b_ino = st.st_ino;
3662 }
3663 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003664 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665}
3666
3667/*
3668 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3669 */
3670 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003671buf_same_ino(
3672 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003673 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003675 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 && stp->st_dev == buf->b_dev
3677 && stp->st_ino == buf->b_ino);
3678}
3679#endif
3680
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003681/*
3682 * Print info about the current buffer.
3683 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003685fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003686 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003687 int shorthelp,
3688 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689{
3690 char_u *name;
3691 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003692 char *p;
3693 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003694 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003696 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 if (buffer == NULL)
3698 return;
3699
Bram Moolenaarc667da52019-11-30 20:52:27 +01003700 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003702 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 p = buffer + STRLEN(buffer);
3704 }
3705 else
3706 p = buffer;
3707
3708 *p++ = '"';
3709 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003710 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 else
3712 {
3713 if (!fullname && curbuf->b_fname != NULL)
3714 name = curbuf->b_fname;
3715 else
3716 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003717 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 (int)(IOSIZE - (p - buffer)), TRUE);
3719 }
3720
Bram Moolenaar32526b32019-01-19 17:43:09 +01003721 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 curbufIsChanged() ? (shortmess(SHM_MOD)
3723 ? " [+]" : _(" [Modified]")) : " ",
3724 (curbuf->b_flags & BF_NOTEDITED)
3725#ifdef FEAT_QUICKFIX
3726 && !bt_dontwrite(curbuf)
3727#endif
3728 ? _("[Not edited]") : "",
3729 (curbuf->b_flags & BF_NEW)
3730#ifdef FEAT_QUICKFIX
3731 && !bt_dontwrite(curbuf)
3732#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003733 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003735 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 : _("[readonly]")) : "",
3737 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3738 || curbuf->b_p_ro) ?
3739 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003740 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3741 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 if (curwin->w_cursor.lnum > 1000000L)
3743 n = (int)(((long)curwin->w_cursor.lnum) /
3744 ((long)curbuf->b_ml.ml_line_count / 100L));
3745 else
3746 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3747 (long)curbuf->b_ml.ml_line_count);
3748 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003749 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750#ifdef FEAT_CMDL_INFO
3751 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003752 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003753 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003754 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3755 curbuf->b_ml.ml_line_count),
3756 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757#endif
3758 else
3759 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003760 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 _("line %ld of %ld --%d%%-- col "),
3762 (long)curwin->w_cursor.lnum,
3763 (long)curbuf->b_ml.ml_line_count,
3764 n);
3765 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003766 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003767 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3769 }
3770
Bram Moolenaar32526b32019-01-19 17:43:09 +01003771 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3772 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773
3774 if (dont_truncate)
3775 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003776 // Temporarily set msg_scroll to avoid the message being truncated.
3777 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 msg_start();
3779 n = msg_scroll;
3780 msg_scroll = TRUE;
3781 msg(buffer);
3782 msg_scroll = n;
3783 }
3784 else
3785 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003786 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003788 // Need to repeat the message after redrawing when:
3789 // - When restart_edit is set (otherwise there will be a delay
3790 // before redrawing).
3791 // - When the screen was scrolled but there is no wait-return
3792 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003793 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 }
3795
3796 vim_free(buffer);
3797}
3798
3799 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003800col_print(
3801 char_u *buf,
3802 size_t buflen,
3803 int col,
3804 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805{
3806 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003807 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003809 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810}
3811
3812#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813static char_u *lasttitle = NULL;
3814static char_u *lasticon = NULL;
3815
Bram Moolenaar84a93082018-06-16 22:58:15 +02003816/*
3817 * Put the file name in the title bar and icon of the window.
3818 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003820maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821{
3822 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003823 char_u *title_str = NULL;
3824 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 int maxlen = 0;
3826 int len;
3827 int mustset;
3828 char_u buf[IOSIZE];
3829 int off;
3830
3831 if (!redrawing())
3832 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003833 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 need_maketitle = TRUE;
3835 return;
3836 }
3837
3838 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003839 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003840 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841
3842 if (p_title)
3843 {
3844 if (p_titlelen > 0)
3845 {
3846 maxlen = p_titlelen * Columns / 100;
3847 if (maxlen < 10)
3848 maxlen = 10;
3849 }
3850
Bram Moolenaar84a93082018-06-16 22:58:15 +02003851 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 if (*p_titlestring != NUL)
3853 {
3854#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003855 if (stl_syntax & STL_IN_TITLE)
3856 {
3857 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003858 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003859
3860# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003861 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003862# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003863 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003864 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003865 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003866 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003867 set_string_option_direct((char_u *)"titlestring", -1,
3868 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 else
3871#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003872 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 }
3874 else
3875 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003876 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877
Bram Moolenaar2c666692012-09-05 13:30:40 +02003878#define SPACE_FOR_FNAME (IOSIZE - 100)
3879#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003880#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003882 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003883#ifdef FEAT_TERMINAL
3884 else if (curbuf->b_term != NULL)
3885 {
3886 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3887 SPACE_FOR_FNAME);
3888 }
3889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 else
3891 {
3892 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003893 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 }
3896
Bram Moolenaar21554412017-07-24 21:44:43 +02003897#ifdef FEAT_TERMINAL
3898 if (curbuf->b_term == NULL)
3899#endif
3900 switch (bufIsChanged(curbuf)
3901 + (curbuf->b_p_ro * 2)
3902 + (!curbuf->b_p_ma * 4))
3903 {
3904 case 1: STRCAT(buf, " +"); break;
3905 case 2: STRCAT(buf, " ="); break;
3906 case 3: STRCAT(buf, " =+"); break;
3907 case 4:
3908 case 6: STRCAT(buf, " -"); break;
3909 case 5:
3910 case 7: STRCAT(buf, " -+"); break;
3911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912
Bram Moolenaar21554412017-07-24 21:44:43 +02003913 if (curbuf->b_fname != NULL
3914#ifdef FEAT_TERMINAL
3915 && curbuf->b_term == NULL
3916#endif
3917 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003919 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 off = (int)STRLEN(buf);
3921 buf[off++] = ' ';
3922 buf[off++] = '(';
3923 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003924 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003926 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 if (isalpha(buf[off]) && buf[off + 1] == ':')
3928 off += 2;
3929#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003930 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003931 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003933 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003934 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003935 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003936 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003940
Bram Moolenaarc667da52019-11-30 20:52:27 +01003941 // Translate unprintable chars and concatenate. Keep some
3942 // room for the server name. When there is no room (very long
3943 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003944 if (off < SPACE_FOR_DIR)
3945 {
3946 p = transstr(buf + off);
3947 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3948 vim_free(p);
3949 }
3950 else
3951 {
3952 vim_strncpy(buf + off, (char_u *)"...",
3953 (size_t)(SPACE_FOR_ARGNR - off));
3954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 STRCAT(buf, ")");
3956 }
3957
Bram Moolenaar2c666692012-09-05 13:30:40 +02003958 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959
3960#if defined(FEAT_CLIENTSERVER)
3961 if (serverName != NULL)
3962 {
3963 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003964 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 }
3966 else
3967#endif
3968 STRCAT(buf, " - VIM");
3969
3970 if (maxlen > 0)
3971 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003972 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003973 if (vim_strsize(buf) > maxlen)
3974 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 }
3976 }
3977 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003978 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979
3980 if (p_icon)
3981 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003982 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 if (*p_iconstring != NUL)
3984 {
3985#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003986 if (stl_syntax & STL_IN_ICON)
3987 {
3988 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003989 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003990
3991# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003992 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003993# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003994 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003995 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003996 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003997 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003998 set_string_option_direct((char_u *)"iconstring", -1,
3999 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00004000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 else
4002#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02004003 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 }
4005 else
4006 {
4007 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004008 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004009 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02004010 p = gettail(curbuf->b_ffname);
4011 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004012 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004013 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 if (len > 100)
4015 {
4016 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004018 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02004019 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02004021 STRCPY(icon_str, p);
4022 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 }
4024 }
4025
Bram Moolenaar84a93082018-06-16 22:58:15 +02004026 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027
4028 if (mustset)
4029 resettitle();
4030}
4031
4032/*
4033 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4034 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004035 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 */
4037 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004038value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039{
4040 if ((str == NULL) != (*last == NULL)
4041 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4042 {
4043 vim_free(*last);
4044 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004045 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004047 mch_restore_title(
4048 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004051 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004053 return TRUE;
4054 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 }
4056 return FALSE;
4057}
4058
4059/*
4060 * Put current window title back (used after calling a shell)
4061 */
4062 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004063resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064{
4065 mch_settitle(lasttitle, lasticon);
4066}
Bram Moolenaarea408852005-06-25 22:49:46 +00004067
4068# if defined(EXITFREE) || defined(PROTO)
4069 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004070free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004071{
4072 vim_free(lasttitle);
4073 vim_free(lasticon);
4074}
4075# endif
4076
Bram Moolenaarc667da52019-11-30 20:52:27 +01004077#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004079#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004080
4081/*
4082 * Used for building in the status line.
4083 */
4084typedef struct
4085{
4086 char_u *stl_start;
4087 int stl_minwid;
4088 int stl_maxwid;
4089 enum {
4090 Normal,
4091 Empty,
4092 Group,
4093 Middle,
4094 Highlight,
4095 TabPage,
4096 Trunc
4097 } stl_type;
4098} stl_item_T;
4099
4100static size_t stl_items_len = 20; // Initial value, grows as needed.
4101static stl_item_T *stl_items = NULL;
4102static int *stl_groupitem = NULL;
4103static stl_hlrec_T *stl_hltab = NULL;
4104static stl_hlrec_T *stl_tabtab = NULL;
4105
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004107 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 * Return length of string in screen cells.
4109 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004110 * Normally works for window "wp", except when working for 'tabline' then it
4111 * is "curwin".
4112 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 * Items are drawn interspersed with the text that surrounds it
4114 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4115 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4116 *
4117 * If maxwidth is not zero, the string will be filled at any middle marker
4118 * or truncated if too long, fillchar is used for all whitespace.
4119 */
4120 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004121build_stl_str_hl(
4122 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004123 char_u *out, // buffer to write into != NameBuff
4124 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004125 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004126 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004127 int fillchar,
4128 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004129 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4130 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131{
Bram Moolenaar10772302019-01-20 18:25:54 +01004132 linenr_T lnum;
4133 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 char_u *p;
4135 char_u *s;
4136 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004137 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004139 win_T *save_curwin;
4140 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004141 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142#endif
4143 int empty_line;
4144 colnr_T virtcol;
4145 long l;
4146 long n;
4147 int prevchar_isflag;
4148 int prevchar_isitem;
4149 int itemisflag;
4150 int fillable;
4151 char_u *str;
4152 long num;
4153 int width;
4154 int itemcnt;
4155 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004156 int group_end_userhl;
4157 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004159#ifdef FEAT_EVAL
4160 int evaldepth;
4161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 int minwid;
4163 int maxwid;
4164 int zeropad;
4165 char_u base;
4166 char_u opt;
4167#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004168 char_u buf_tmp[TMPLEN];
4169 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004170 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004171 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004172 int save_must_redraw = must_redraw;
4173 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004174
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004175 if (stl_items == NULL)
4176 {
4177 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4178 stl_groupitem = ALLOC_MULT(int, stl_items_len);
4179 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4180 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4181 }
4182
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004183#ifdef FEAT_EVAL
4184 /*
4185 * When the format starts with "%!" then evaluate it as an expression and
4186 * use the result as the actual format string.
4187 */
4188 if (fmt[0] == '%' && fmt[1] == '!')
4189 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004190 typval_T tv;
4191
4192 tv.v_type = VAR_NUMBER;
4193 tv.vval.v_number = wp->w_id;
4194 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4195
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004196 usefmt = eval_to_string_safe(fmt + 2, use_sandbox);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004197 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004198 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004199
4200 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004201 }
4202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203
4204 if (fillchar == 0)
4205 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004206
Bram Moolenaar10772302019-01-20 18:25:54 +01004207 // The cursor in windows other than the current one isn't always
4208 // up-to-date, esp. because of autocommands and timers.
4209 lnum = wp->w_cursor.lnum;
4210 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4211 {
4212 lnum = wp->w_buffer->b_ml.ml_line_count;
4213 wp->w_cursor.lnum = lnum;
4214 }
4215
4216 // Get line & check if empty (cursorpos will show "0-1"). Note that
4217 // p will become invalid when getting another buffer line.
4218 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004219 empty_line = (*p == NUL);
4220
Bram Moolenaar10772302019-01-20 18:25:54 +01004221 // Get the byte value now, in case we need it below. This is more efficient
4222 // than making a copy of the line.
4223 len = STRLEN(p);
4224 if (wp->w_cursor.col > (colnr_T)len)
4225 {
4226 // Line may have changed since checking the cursor column, or the lnum
4227 // was adjusted above.
4228 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004229 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004230 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004231 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004232 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004233 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234
4235 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004236#ifdef FEAT_EVAL
4237 evaldepth = 0;
4238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 p = out;
4240 curitem = 0;
4241 prevchar_isflag = TRUE;
4242 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004243 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004245 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004246 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004247 size_t new_len = stl_items_len * 3 / 2;
4248 stl_item_T *new_items;
4249 int *new_groupitem;
4250 stl_hlrec_T *new_hlrec;
4251
4252 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4253 if (new_items == NULL)
4254 break;
4255 stl_items = new_items;
4256 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4257 if (new_groupitem == NULL)
4258 break;
4259 stl_groupitem = new_groupitem;
4260 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len);
4261 if (new_hlrec == NULL)
4262 break;
4263 stl_hltab = new_hlrec;
4264 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len);
4265 if (new_hlrec == NULL)
4266 break;
4267 stl_tabtab = new_hlrec;
4268 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004269 }
4270
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 if (*s != NUL && *s != '%')
4272 prevchar_isflag = prevchar_isitem = FALSE;
4273
4274 /*
4275 * Handle up to the next '%' or the end.
4276 */
4277 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4278 *p++ = *s++;
4279 if (*s == NUL || p + 1 >= out + outlen)
4280 break;
4281
4282 /*
4283 * Handle one '%' item.
4284 */
4285 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004286 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004287 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 if (*s == '%')
4289 {
4290 if (p + 1 >= out + outlen)
4291 break;
4292 *p++ = *s++;
4293 prevchar_isflag = prevchar_isitem = FALSE;
4294 continue;
4295 }
4296 if (*s == STL_MIDDLEMARK)
4297 {
4298 s++;
4299 if (groupdepth > 0)
4300 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004301 stl_items[curitem].stl_type = Middle;
4302 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 continue;
4304 }
4305 if (*s == STL_TRUNCMARK)
4306 {
4307 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004308 stl_items[curitem].stl_type = Trunc;
4309 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 continue;
4311 }
4312 if (*s == ')')
4313 {
4314 s++;
4315 if (groupdepth < 1)
4316 continue;
4317 groupdepth--;
4318
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004319 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 *p = NUL;
4321 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004322 if (curitem > stl_groupitem[groupdepth] + 1
4323 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004325 // remove group if all items are empty and highlight group
4326 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004327 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004328 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004329 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004330 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004331 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004332 group_start_userhl = group_end_userhl =
4333 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004334 break;
4335 }
4336 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004337 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004338 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004339 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004341 if (stl_items[n].stl_type == Highlight)
4342 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004343 }
4344 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004346 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 p = t;
4348 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004349 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004350 {
4351 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004352 if (stl_items[n].stl_type == Highlight)
4353 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004354 // adjust the start position of TabPage to the next
4355 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004356 if (stl_items[n].stl_type == TabPage)
4357 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 }
4360 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004361 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004363 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 if (has_mbyte)
4365 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004366 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004368 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 {
4370 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004371 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 }
4373 }
4374 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004375 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4376 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377
4378 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004379 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004381
4382 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004383 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004384 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385
Bram Moolenaarc667da52019-11-30 20:52:27 +01004386 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004387 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004389 stl_items[l].stl_start -= n;
4390 if (stl_items[l].stl_start < t)
4391 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 }
4393 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004394 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004396 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004397 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 if (n < 0)
4399 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004400 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 n = 0 - n;
4402 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004403 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 }
4405 else
4406 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004407 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004408 l = (n - l) * MB_CHAR2LEN(fillchar);
4409 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004411 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004413 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4414 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004416 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 }
4418 }
4419 continue;
4420 }
4421 minwid = 0;
4422 maxwid = 9999;
4423 zeropad = FALSE;
4424 l = 1;
4425 if (*s == '0')
4426 {
4427 s++;
4428 zeropad = TRUE;
4429 }
4430 if (*s == '-')
4431 {
4432 s++;
4433 l = -1;
4434 }
4435 if (VIM_ISDIGIT(*s))
4436 {
4437 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004438 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 minwid = 0;
4440 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004441 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004443 stl_items[curitem].stl_type = Highlight;
4444 stl_items[curitem].stl_start = p;
4445 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 s++;
4447 curitem++;
4448 continue;
4449 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004450 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4451 {
4452 if (*s == STL_TABCLOSENR)
4453 {
4454 if (minwid == 0)
4455 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004456 // %X ends the close label, go back to the previously
4457 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004458 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004459 if (stl_items[n].stl_type == TabPage
4460 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004461 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004462 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004463 break;
4464 }
4465 }
4466 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004467 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004468 minwid = - minwid;
4469 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004470 stl_items[curitem].stl_type = TabPage;
4471 stl_items[curitem].stl_start = p;
4472 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004473 s++;
4474 curitem++;
4475 continue;
4476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 if (*s == '.')
4478 {
4479 s++;
4480 if (VIM_ISDIGIT(*s))
4481 {
4482 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004483 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 maxwid = 50;
4485 }
4486 }
4487 minwid = (minwid > 50 ? 50 : minwid) * l;
4488 if (*s == '(')
4489 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004490 stl_groupitem[groupdepth++] = curitem;
4491 stl_items[curitem].stl_type = Group;
4492 stl_items[curitem].stl_start = p;
4493 stl_items[curitem].stl_minwid = minwid;
4494 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 s++;
4496 curitem++;
4497 continue;
4498 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004499#ifdef FEAT_EVAL
4500 // Denotes end of expanded %{} block
4501 if (*s == '}' && evaldepth > 0)
4502 {
4503 s++;
4504 evaldepth--;
4505 continue;
4506 }
4507#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 if (vim_strchr(STL_ALL, *s) == NULL)
4509 {
4510 s++;
4511 continue;
4512 }
4513 opt = *s++;
4514
Bram Moolenaarc667da52019-11-30 20:52:27 +01004515 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 base = 'D';
4517 itemisflag = FALSE;
4518 fillable = TRUE;
4519 num = -1;
4520 str = NULL;
4521 switch (opt)
4522 {
4523 case STL_FILEPATH:
4524 case STL_FULLPATH:
4525 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004526 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004528 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 else
4530 {
4531 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004532 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4534 }
4535 trans_characters(NameBuff, MAXPATHL);
4536 if (opt != STL_FILENAME)
4537 str = NameBuff;
4538 else
4539 str = gettail(NameBuff);
4540 break;
4541
Bram Moolenaarc667da52019-11-30 20:52:27 +01004542 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004543 {
4544#ifdef FEAT_EVAL
4545 char_u *block_start = s - 1;
4546#endif
4547 int reevaluate = (*s == '%');
4548
4549 if (reevaluate)
4550 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 itemisflag = TRUE;
4552 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004553 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4554 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004556 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 break;
4558 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004559 if (reevaluate)
4560 p[-1] = 0; // remove the % at the end of %{% expr %}
4561 else
4562 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004565 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4566 "%d", curbuf->b_fnum);
4567 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4568 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4569 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004571 save_curbuf = curbuf;
4572 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004573 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 curwin = wp;
4575 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004576 // Visual mode is only valid in the current window.
4577 if (curwin != save_curwin)
4578 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004580 str = eval_to_string_safe(p, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004582 curwin = save_curwin;
4583 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004584 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004585 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004586 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587
4588 if (str != NULL && *str != 0)
4589 {
4590 if (*skipdigits(str) == NUL)
4591 {
4592 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004593 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 itemisflag = FALSE;
4595 }
4596 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004597
4598 // If the output of the expression needs to be evaluated
4599 // replace the %{} block with the result of evaluation
4600 if (reevaluate && str != NULL && *str != 0
4601 && strchr((const char *)str, '%') != NULL
4602 && evaldepth < MAX_STL_EVAL_DEPTH)
4603 {
4604 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4605 size_t str_length = strlen((const char *)str);
4606 size_t fmt_length = strlen((const char *)s);
4607 size_t new_fmt_len = parsed_usefmt
4608 + str_length + fmt_length + 3;
4609 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4610 char_u *new_fmt_p = new_fmt;
4611
4612 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4613 + parsed_usefmt;
4614 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4615 + str_length;
4616 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4617 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4618 + fmt_length;
4619 *new_fmt_p = 0;
4620 new_fmt_p = NULL;
4621
4622 if (usefmt != fmt)
4623 vim_free(usefmt);
4624 VIM_CLEAR(str);
4625 usefmt = new_fmt;
4626 s = usefmt + parsed_usefmt;
4627 evaldepth++;
4628 continue;
4629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630#endif
4631 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 case STL_LINE:
4634 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4635 ? 0L : (long)(wp->w_cursor.lnum);
4636 break;
4637
4638 case STL_NUMLINES:
4639 num = wp->w_buffer->b_ml.ml_line_count;
4640 break;
4641
4642 case STL_COLUMN:
4643 num = !(State & INSERT) && empty_line
4644 ? 0 : (int)wp->w_cursor.col + 1;
4645 break;
4646
4647 case STL_VIRTCOL:
4648 case STL_VIRTCOL_ALT:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004649 // In list mode virtcol needs to be recomputed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 virtcol = wp->w_virtcol;
Bram Moolenaareed9d462021-02-15 20:38:25 +01004651 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 {
4653 wp->w_p_list = FALSE;
4654 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4655 wp->w_p_list = TRUE;
4656 }
4657 ++virtcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004658 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 if (opt == STL_VIRTCOL_ALT
4660 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4661 ? 0 : (int)wp->w_cursor.col + 1)))
4662 break;
4663 num = (long)virtcol;
4664 break;
4665
4666 case STL_PERCENTAGE:
4667 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4668 (long)wp->w_buffer->b_ml.ml_line_count);
4669 break;
4670
4671 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004672 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004673 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 break;
4675
4676 case STL_ARGLISTSTAT:
4677 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004678 buf_tmp[0] = 0;
4679 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4680 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 break;
4682
4683 case STL_KEYMAP:
4684 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004685 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4686 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 break;
4688 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004689#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004690 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691#else
4692 num = 0;
4693#endif
4694 break;
4695
4696 case STL_BUFNO:
4697 num = wp->w_buffer->b_fnum;
4698 break;
4699
4700 case STL_OFFSET_X:
4701 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004702 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 case STL_OFFSET:
4704#ifdef FEAT_BYTEOFF
4705 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4706 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4707 0L : l + 1 + (!(State & INSERT) && empty_line ?
4708 0 : (int)wp->w_cursor.col);
4709#endif
4710 break;
4711
4712 case STL_BYTEVAL_X:
4713 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004714 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004716 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 if (num == NL)
4718 num = 0;
4719 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4720 num = NL;
4721 break;
4722
4723 case STL_ROFLAG:
4724 case STL_ROFLAG_ALT:
4725 itemisflag = TRUE;
4726 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004727 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 break;
4729
4730 case STL_HELPFLAG:
4731 case STL_HELPFLAG_ALT:
4732 itemisflag = TRUE;
4733 if (wp->w_buffer->b_help)
4734 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004735 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 break;
4737
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 case STL_FILETYPE:
4739 if (*wp->w_buffer->b_p_ft != NUL
4740 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4741 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004742 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004743 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004744 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 }
4746 break;
4747
4748 case STL_FILETYPE_ALT:
4749 itemisflag = TRUE;
4750 if (*wp->w_buffer->b_p_ft != NUL
4751 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4752 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004753 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004754 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004755 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004757 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 }
4759 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760
Bram Moolenaar4033c552017-09-16 20:54:51 +02004761#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 case STL_PREVIEWFLAG:
4763 case STL_PREVIEWFLAG_ALT:
4764 itemisflag = TRUE;
4765 if (wp->w_p_pvw)
4766 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4767 : _("[Preview]"));
4768 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004769
4770 case STL_QUICKFIX:
4771 if (bt_quickfix(wp->w_buffer))
4772 str = (char_u *)(wp->w_llist_ref
4773 ? _(msg_loclist)
4774 : _(msg_qflist));
4775 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776#endif
4777
4778 case STL_MODIFIED:
4779 case STL_MODIFIED_ALT:
4780 itemisflag = TRUE;
4781 switch ((opt == STL_MODIFIED_ALT)
4782 + bufIsChanged(wp->w_buffer) * 2
4783 + (!wp->w_buffer->b_p_ma) * 4)
4784 {
4785 case 2: str = (char_u *)"[+]"; break;
4786 case 3: str = (char_u *)",+"; break;
4787 case 4: str = (char_u *)"[-]"; break;
4788 case 5: str = (char_u *)",-"; break;
4789 case 6: str = (char_u *)"[+-]"; break;
4790 case 7: str = (char_u *)",+-"; break;
4791 }
4792 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004793
4794 case STL_HIGHLIGHT:
4795 t = s;
4796 while (*s != '#' && *s != NUL)
4797 ++s;
4798 if (*s == '#')
4799 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004800 stl_items[curitem].stl_type = Highlight;
4801 stl_items[curitem].stl_start = p;
4802 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004803 curitem++;
4804 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004805 if (*s != NUL)
4806 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004807 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 }
4809
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004810 stl_items[curitem].stl_start = p;
4811 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 if (str != NULL && *str)
4813 {
4814 t = str;
4815 if (itemisflag)
4816 {
4817 if ((t[0] && t[1])
4818 && ((!prevchar_isitem && *t == ',')
4819 || (prevchar_isflag && *t == ' ')))
4820 t++;
4821 prevchar_isflag = TRUE;
4822 }
4823 l = vim_strsize(t);
4824 if (l > 0)
4825 prevchar_isitem = TRUE;
4826 if (l > maxwid)
4827 {
4828 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 if (has_mbyte)
4830 {
4831 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004832 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 }
4834 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 l -= byte2cells(*t++);
4836 if (p + 1 >= out + outlen)
4837 break;
4838 *p++ = '<';
4839 }
4840 if (minwid > 0)
4841 {
4842 for (; l < minwid && p + 1 < out + outlen; l++)
4843 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004844 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4846 *p++ = ' ';
4847 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004848 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 }
4850 minwid = 0;
4851 }
4852 else
4853 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004854 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004856 // Change a space by fillchar, unless fillchar is '-' and a
4857 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004858 if (fillable && *t == ' '
4859 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4860 MB_CHAR2BYTES(fillchar, p);
4861 else
4862 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 }
4864 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004865 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 }
4867 else if (num >= 0)
4868 {
4869 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4870 char_u nstr[20];
4871
4872 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004873 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 prevchar_isitem = TRUE;
4875 t = nstr;
4876 if (opt == STL_VIRTCOL_ALT)
4877 {
4878 *t++ = '-';
4879 minwid--;
4880 }
4881 *t++ = '%';
4882 if (zeropad)
4883 *t++ = '0';
4884 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004885 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 *t = 0;
4887
4888 for (n = num, l = 1; n >= nbase; n /= nbase)
4889 l++;
4890 if (opt == STL_VIRTCOL_ALT)
4891 l++;
4892 if (l > maxwid)
4893 {
4894 l += 2;
4895 n = l - maxwid;
4896 while (l-- > maxwid)
4897 num /= nbase;
4898 *t++ = '>';
4899 *t++ = '%';
4900 *t = t[-3];
4901 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004902 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4903 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 }
4905 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004906 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4907 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 p += STRLEN(p);
4909 }
4910 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004911 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912
4913 if (opt == STL_VIM_EXPR)
4914 vim_free(str);
4915
4916 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004917 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 curitem++;
4919 }
4920 *p = NUL;
4921 itemcnt = curitem;
4922
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004923#ifdef FEAT_EVAL
4924 if (usefmt != fmt)
4925 vim_free(usefmt);
4926#endif
4927
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 width = vim_strsize(out);
4929 if (maxwidth > 0 && width > maxwidth)
4930 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004931 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 l = 0;
4933 if (itemcnt == 0)
4934 s = out;
4935 else
4936 {
4937 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004938 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004940 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004941 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 break;
4943 }
4944 if (l == itemcnt)
4945 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004946 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004947 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 l = 0;
4949 }
4950 }
4951
4952 if (width - vim_strsize(s) >= maxwidth)
4953 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004954 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 if (has_mbyte)
4956 {
4957 s = out;
4958 width = 0;
4959 for (;;)
4960 {
4961 width += ptr2cells(s);
4962 if (width >= maxwidth)
4963 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004964 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01004966 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004968 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
4970 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 s = out + maxwidth - 1;
4972 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004973 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 break;
4975 itemcnt = l;
4976 *s++ = '>';
4977 *s = 0;
4978 }
4979 else
4980 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 if (has_mbyte)
4982 {
4983 n = 0;
4984 while (width >= maxwidth)
4985 {
4986 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004987 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 }
4989 }
4990 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 n = width - maxwidth + 1;
4992 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004993 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 *s = '<';
4995
Bram Moolenaarc667da52019-11-30 20:52:27 +01004996 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 while (++width < maxwidth)
4998 {
4999 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005000 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 *s = NUL;
5002 }
5003
Bram Moolenaarc667da52019-11-30 20:52:27 +01005004 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 for (; l < itemcnt; l++)
5006 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005007 if (stl_items[l].stl_start - n >= s)
5008 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005010 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 }
5012 }
5013 width = maxwidth;
5014 }
5015 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
5016 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005017 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005019 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 break;
5021 if (l < itemcnt)
5022 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01005023 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
5024 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005025 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01005026 for (s = stl_items[l].stl_start; s < p;)
5027 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005029 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 width = maxwidth;
5031 }
5032 }
5033
Bram Moolenaarc667da52019-11-30 20:52:27 +01005034 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005035 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005037 *hltab = stl_hltab;
5038 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 for (l = 0; l < itemcnt; l++)
5040 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005041 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005043 sp->start = stl_items[l].stl_start;
5044 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005045 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 }
5047 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005048 sp->start = NULL;
5049 sp->userhl = 0;
5050 }
5051
Bram Moolenaarc667da52019-11-30 20:52:27 +01005052 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005053 if (tabtab != NULL)
5054 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005055 *tabtab = stl_tabtab;
5056 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005057 for (l = 0; l < itemcnt; l++)
5058 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005059 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005060 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005061 sp->start = stl_items[l].stl_start;
5062 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005063 sp++;
5064 }
5065 }
5066 sp->start = NULL;
5067 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 }
5069
Bram Moolenaarc667da52019-11-30 20:52:27 +01005070 // When inside update_screen we do not want redrawing a stausline, ruler,
5071 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005072 if (updating_screen)
5073 {
5074 must_redraw = save_must_redraw;
5075 curwin->w_redr_type = save_redr_type;
5076 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005077
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 return width;
5079}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005080#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005082#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5083 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005085 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5086 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 */
5088 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005089get_rel_pos(
5090 win_T *wp,
5091 char_u *buf,
5092 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005094 long above; // number of lines above window
5095 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096
Bram Moolenaarc667da52019-11-30 20:52:27 +01005097 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005098 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 above = wp->w_topline - 1;
5100#ifdef FEAT_DIFF
5101 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005102 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005103 above = 0; // All buffer lines are displayed and there is an
5104 // indication of filler lines, that can be considered
5105 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106#endif
5107 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5108 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005109 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5110 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005112 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005114 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 ? (int)(above / ((above + below) / 100L))
5116 : (int)(above * 100L / (above + below)));
5117}
5118#endif
5119
5120/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005121 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 * Return TRUE if it was appended.
5123 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005124 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005125append_arg_number(
5126 win_T *wp,
5127 char_u *buf,
5128 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005129 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130{
5131 char_u *p;
5132
Bram Moolenaarc667da52019-11-30 20:52:27 +01005133 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 return FALSE;
5135
Bram Moolenaarc667da52019-11-30 20:52:27 +01005136 p = buf + STRLEN(buf); // go to the end of the buffer
5137 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 return FALSE;
5139 *p++ = ' ';
5140 *p++ = '(';
5141 if (add_file)
5142 {
5143 STRCPY(p, "file ");
5144 p += 5;
5145 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005146 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5147 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5149 return TRUE;
5150}
5151
5152/*
5153 * If fname is not a full path, make it a full path.
5154 * Returns pointer to allocated memory (NULL for failure).
5155 */
5156 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005157fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158{
5159 /*
5160 * Force expanding the path always for Unix, because symbolic links may
5161 * mess up the full path name, even though it starts with a '/'.
5162 * Also expand when there is ".." in the file name, try to remove it,
5163 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005164 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 * For MS-Windows also expand names like "longna~1" to "longname".
5166 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005167#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 return FullName_save(fname, TRUE);
5169#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005170 if (!vim_isAbsName(fname)
5171 || strstr((char *)fname, "..") != NULL
5172 || strstr((char *)fname, "//") != NULL
5173# ifdef BACKSLASH_IN_FILENAME
5174 || strstr((char *)fname, "\\\\") != NULL
5175# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005176# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005178# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 )
5180 return FullName_save(fname, FALSE);
5181
5182 fname = vim_strsave(fname);
5183
Bram Moolenaar9b942202007-10-03 12:31:33 +00005184# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005185 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005186 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005187# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188
5189 return fname;
5190#endif
5191}
5192
5193/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005194 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5195 * "*ffname" becomes a pointer to allocated memory (or NULL).
5196 * When resolving a link both "*sfname" and "*ffname" will point to the same
5197 * allocated memory.
5198 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005199 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005202fname_expand(
5203 buf_T *buf UNUSED,
5204 char_u **ffname,
5205 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005207 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005209 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005211 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212
5213#ifdef FEAT_SHORTCUT
5214 if (!buf->b_p_bin)
5215 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005216 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005218 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005219 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005220 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 {
5222 vim_free(*ffname);
5223 *ffname = rfname;
5224 *sfname = rfname;
5225 }
5226 }
5227#endif
5228}
5229
5230/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 * Open a window for a number of buffers.
5232 */
5233 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005234ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235{
5236 buf_T *buf;
5237 win_T *wp, *wpnext;
5238 int split_ret = OK;
5239 int p_ea_save;
5240 int open_wins = 0;
5241 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005242 int count; // Maximum number of windows to open.
5243 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005244 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005245 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246
Bram Moolenaarc667da52019-11-30 20:52:27 +01005247 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 count = 9999;
5249 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005250 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5252 all = FALSE;
5253 else
5254 all = TRUE;
5255
5256 setpcmark();
5257
5258#ifdef FEAT_GUI
5259 need_mouse_correct = TRUE;
5260#endif
5261
5262 /*
5263 * Close superfluous windows (two windows for the same buffer).
5264 * Also close windows that are not full-width.
5265 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005266 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005267 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005268 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005270 tpnext = curtab->tp_next;
5271 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005273 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005274 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1004402020-10-24 20:49:43 +02005275 || ((cmdmod.cmod_split & WSP_VERT)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005276 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005277 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005278 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005279 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005280 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005281 {
5282 win_close(wp, FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01005283 wpnext = firstwin; // just in case an autocommand does
5284 // something strange with windows
5285 tpnext = first_tabpage; // start all over...
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005286 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005287 }
5288 else
5289 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005291
Bram Moolenaarc667da52019-11-30 20:52:27 +01005292 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005293 if (had_tab == 0 || tpnext == NULL)
5294 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005295 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 }
5297
5298 /*
5299 * Go through the buffer list. When a buffer doesn't have a window yet,
5300 * open one. Otherwise move the window to the right position.
5301 * Watch out for autocommands that delete buffers or windows!
5302 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005303 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5308 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005309 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5311 continue;
5312
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005313 if (had_tab != 0)
5314 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005315 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005316 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005317 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005318 else
5319 wp = NULL;
5320 }
5321 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005322 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005323 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005324 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005325 if (wp->w_buffer == buf)
5326 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005327 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005328 if (wp != NULL)
5329 win_move_after(wp, curwin);
5330 }
5331
5332 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005334 bufref_T bufref;
5335
5336 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005337
Bram Moolenaarc667da52019-11-30 20:52:27 +01005338 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005340 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5342 ++open_wins;
5343 p_ea = p_ea_save;
5344 if (split_ret == FAIL)
5345 continue;
5346
Bram Moolenaarc667da52019-11-30 20:52:27 +01005347 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005350 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005352 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 break;
5355 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 if (swap_exists_action == SEA_QUIT)
5357 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005358#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005359 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005360
Bram Moolenaarc667da52019-11-30 20:52:27 +01005361 // Reset the error/interrupt/exception state here so that
5362 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005363 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005364#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005365
Bram Moolenaarc667da52019-11-30 20:52:27 +01005366 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 win_close(curwin, TRUE);
5368 --open_wins;
5369 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005370 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005371
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005372#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005373 // Restore the error/interrupt/exception state if not
5374 // discarded by a new aborting error, interrupt, or uncaught
5375 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005376 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 }
5379 else
5380 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 }
5382
5383 ui_breakcheck();
5384 if (got_int)
5385 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005386 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 break;
5388 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005389#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005390 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005391 if (aborting())
5392 break;
5393#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005394 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005395 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005396 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005399 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401
5402 /*
5403 * Close superfluous windows.
5404 */
5405 for (wp = lastwin; open_wins > count; )
5406 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005407 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 if (!win_valid(wp))
5410 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005411 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 wp = lastwin;
5413 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005414 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005416 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 --open_wins;
5418 wp = lastwin;
5419 }
5420 else
5421 {
5422 wp = wp->w_prev;
5423 if (wp == NULL)
5424 break;
5425 }
5426 }
5427}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005430static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005431
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432/*
5433 * do_modelines() - process mode lines for the current file
5434 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005435 * "flags" can be:
5436 * OPT_WINONLY only set options local to window
5437 * OPT_NOWIN don't set options local to window
5438 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 * Returns immediately if the "ml" option isn't set.
5440 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005442do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005444 linenr_T lnum;
5445 int nmlines;
5446 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447
5448 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5449 return;
5450
Bram Moolenaarc667da52019-11-30 20:52:27 +01005451 // Disallow recursive entry here. Can happen when executing a modeline
5452 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 if (entered)
5454 return;
5455
5456 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005457 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005459 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 nmlines = 0;
5461
Hu Jialun9dcd3492021-08-28 20:42:50 +02005462 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005464 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 nmlines = 0;
5466 --entered;
5467}
5468
Bram Moolenaarc667da52019-11-30 20:52:27 +01005469#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
5471/*
5472 * chk_modeline() - check a single line for a mode string
5473 * Return FAIL if an error encountered.
5474 */
5475 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005476chk_modeline(
5477 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005478 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479{
5480 char_u *s;
5481 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005482 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 int prev;
5484 int vers;
5485 int end;
5486 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005487 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005488
Bram Moolenaare31ee862020-01-07 20:59:34 +01005489 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490
5491 prev = -1;
5492 for (s = ml_get(lnum); *s != NUL; ++s)
5493 {
5494 if (prev == -1 || vim_isspace(prev))
5495 {
5496 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5497 || STRNCMP(s, "vi:", (size_t)3) == 0)
5498 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005499 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005500 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501 {
5502 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5503 e = s + 4;
5504 else
5505 e = s + 3;
5506 vers = getdigits(&e);
5507 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005508 && (s[0] != 'V'
5509 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 && (s[3] == ':'
5511 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5512 || (VIM_VERSION_100 < vers && s[3] == '<')
5513 || (VIM_VERSION_100 > vers && s[3] == '>')
5514 || (VIM_VERSION_100 == vers && s[3] == '=')))
5515 break;
5516 }
5517 }
5518 prev = *s;
5519 }
5520
5521 if (*s)
5522 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005523 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 ++s;
5525 while (s[-1] != ':');
5526
Bram Moolenaarc667da52019-11-30 20:52:27 +01005527 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 if (linecopy == NULL)
5529 return FAIL;
5530
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005531 // prepare for emsg()
5532 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005533 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
5535 end = FALSE;
5536 while (end == FALSE)
5537 {
5538 s = skipwhite(s);
5539 if (*s == NUL)
5540 break;
5541
5542 /*
5543 * Find end of set command: ':' or end of line.
5544 * Skip over "\:", replacing it with ":".
5545 */
5546 for (e = s; *e != ':' && *e != NUL; ++e)
5547 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005548 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 if (*e == NUL)
5550 end = TRUE;
5551
5552 /*
5553 * If there is a "set" command, require a terminating ':' and
5554 * ignore the stuff after the ':'.
5555 * "vi:set opt opt opt: foo" -- foo not interpreted
5556 * "vi:opt opt opt: foo" -- foo interpreted
5557 * Accept "se" for compatibility with Elvis.
5558 */
5559 if (STRNCMP(s, "set ", (size_t)4) == 0
5560 || STRNCMP(s, "se ", (size_t)3) == 0)
5561 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005562 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 break;
5564 end = TRUE;
5565 s = vim_strchr(s, ' ') + 1;
5566 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005567 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568
Bram Moolenaarc667da52019-11-30 20:52:27 +01005569 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005571 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005572
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005573 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005574 current_sctx.sc_version = 1;
5575#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005576 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005577 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005578 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005580
Bram Moolenaar5958f952018-11-20 04:25:21 +01005581 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005582 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005583
Bram Moolenaara3227e22006-03-08 21:32:40 +00005584 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005585
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005586 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005587 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005588 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589 break;
5590 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005591 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 }
5593
Bram Moolenaare31ee862020-01-07 20:59:34 +01005594 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005595 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 vim_free(linecopy);
5597 }
5598 return retval;
5599}
5600
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005601/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005602 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5603 */
5604 int
5605bt_normal(buf_T *buf)
5606{
5607 return buf != NULL && buf->b_p_bt[0] == NUL;
5608}
5609
Bram Moolenaar113e1072019-01-20 15:30:40 +01005610#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005611/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005612 * Return TRUE if "buf" is the quickfix buffer.
5613 */
5614 int
5615bt_quickfix(buf_T *buf)
5616{
5617 return buf != NULL && buf->b_p_bt[0] == 'q';
5618}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005619#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005620
Bram Moolenaar113e1072019-01-20 15:30:40 +01005621#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005622/*
5623 * Return TRUE if "buf" is a terminal buffer.
5624 */
5625 int
5626bt_terminal(buf_T *buf)
5627{
5628 return buf != NULL && buf->b_p_bt[0] == 't';
5629}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005630#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005631
5632/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005633 * Return TRUE if "buf" is a help buffer.
5634 */
5635 int
5636bt_help(buf_T *buf)
5637{
5638 return buf != NULL && buf->b_help;
5639}
5640
5641/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005642 * Return TRUE if "buf" is a prompt buffer.
5643 */
5644 int
5645bt_prompt(buf_T *buf)
5646{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005647 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5648}
5649
5650/*
5651 * Return TRUE if "buf" is a buffer for a popup window.
5652 */
5653 int
5654bt_popup(buf_T *buf)
5655{
5656 return buf != NULL && buf->b_p_bt != NULL
5657 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005658}
5659
5660/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005661 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5662 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005663 */
5664 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005665bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005666{
5667 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5668 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005669 || buf->b_p_bt[0] == 't'
5670 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005671}
5672
5673/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005674 * Return TRUE if "buf" has 'buftype' set to "nofile".
5675 */
5676 int
5677bt_nofile(buf_T *buf)
5678{
5679 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5680}
5681
5682/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005683 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5684 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005685 */
5686 int
5687bt_dontwrite(buf_T *buf)
5688{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005689 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005690 || buf->b_p_bt[0] == 't'
5691 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005692}
5693
Bram Moolenaar113e1072019-01-20 15:30:40 +01005694#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005695 int
5696bt_dontwrite_msg(buf_T *buf)
5697{
5698 if (bt_dontwrite(buf))
5699 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005700 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005701 return TRUE;
5702 }
5703 return FALSE;
5704}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005705#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005706
5707/*
5708 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5709 * and 'bufhidden'.
5710 */
5711 int
5712buf_hide(buf_T *buf)
5713{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005714 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005715 switch (buf->b_p_bh[0])
5716 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005717 case 'u': // "unload"
5718 case 'w': // "wipe"
5719 case 'd': return FALSE; // "delete"
5720 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005721 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005722 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005723}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724
5725/*
5726 * Return special buffer name.
5727 * Returns NULL when the buffer has a normal file name.
5728 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005729 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005730buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005732#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005734 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005735 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005736 * Differentiate between the quickfix and location list buffers using
5737 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005738 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005739 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005740 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005741 else
5742 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005743 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005745
Bram Moolenaarc667da52019-11-30 20:52:27 +01005746 // There is no _file_ when 'buftype' is "nofile", b_sfname
5747 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005748 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005750#ifdef FEAT_TERMINAL
5751 if (buf->b_term != NULL)
5752 return term_get_status_text(buf->b_term);
5753#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005754 if (buf->b_fname != NULL)
5755 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005756#ifdef FEAT_JOB_CHANNEL
5757 if (bt_prompt(buf))
5758 return (char_u *)_("[Prompt]");
5759#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005760#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005761 if (bt_popup(buf))
5762 return (char_u *)_("[Popup]");
5763#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005764 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005766
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005768 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 return NULL;
5770}
5771
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005773 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5774 */
5775 char_u *
5776buf_get_fname(buf_T *buf)
5777{
5778 if (buf->b_fname == NULL)
5779 return (char_u *)_("[No Name]");
5780 return buf->b_fname;
5781}
5782
5783/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5785 */
5786 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005787set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788{
5789 if (on != curbuf->b_p_bl)
5790 {
5791 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 if (on)
5793 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5794 else
5795 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 }
5797}
5798
5799/*
5800 * Read the file for "buf" again and check if the contents changed.
5801 * Return TRUE if it changed or this could not be checked.
5802 */
5803 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005804buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805{
5806 buf_T *newbuf;
5807 int differ = TRUE;
5808 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 exarg_T ea;
5811
Bram Moolenaarc667da52019-11-30 20:52:27 +01005812 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5814 if (newbuf == NULL)
5815 return TRUE;
5816
Bram Moolenaarc667da52019-11-30 20:52:27 +01005817 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 if (prep_exarg(&ea, buf) == FAIL)
5819 {
5820 wipe_buffer(newbuf, FALSE);
5821 return TRUE;
5822 }
5823
Bram Moolenaarc667da52019-11-30 20:52:27 +01005824 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826
Bram Moolenaar4770d092006-01-12 23:22:24 +00005827 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 && readfile(buf->b_ffname, buf->b_fname,
5829 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5830 &ea, READ_NEW | READ_DUMMY) == OK)
5831 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005832 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5834 {
5835 differ = FALSE;
5836 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5837 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5838 {
5839 differ = TRUE;
5840 break;
5841 }
5842 }
5843 }
5844 vim_free(ea.cmd);
5845
Bram Moolenaarc667da52019-11-30 20:52:27 +01005846 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848
Bram Moolenaarc667da52019-11-30 20:52:27 +01005849 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 wipe_buffer(newbuf, FALSE);
5851
5852 return differ;
5853}
5854
5855/*
5856 * Wipe out a buffer and decrement the last buffer number if it was used for
5857 * this buffer. Call this to wipe out a temp buffer that does not contain any
5858 * marks.
5859 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005861wipe_buffer(
5862 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005863 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864{
5865 if (buf->b_fnum == top_file_num - 1)
5866 --top_file_num;
5867
Bram Moolenaarc667da52019-11-30 20:52:27 +01005868 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005869 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005870
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005871 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005872
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005874 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875}