blob: e2732de7a8aeec4b892beb33a4c7332aee7e485e [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
Bram Moolenaarc5935a82021-10-19 20:48:52 +010097 // Read from the buffer which the text is already filled in and append at
98 // the end. This makes it possible to retry when 'fileformat' or
99 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200100 line_count = curbuf->b_ml.ml_line_count;
101 retval = readfile(
102 read_stdin ? NULL : curbuf->b_ffname,
103 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100104 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200105 flags | READ_BUFFER);
106 if (retval == OK)
107 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100108 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200109 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200110 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200111 }
112 else
113 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100114 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200115 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200116 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200117 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100118 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200119 curwin->w_cursor.lnum = 1;
120 curwin->w_cursor.col = 0;
121
122 if (read_stdin)
123 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100124 // Set or reset 'modified' before executing autocommands, so that
125 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100126 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200129 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200130
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100131 if (retval == OK)
132 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100133#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100134 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100135 curbuf, &retval);
136#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100137 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200138#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100139 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200140 }
141 return retval;
142}
143
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200145 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
146 */
147 void
148buffer_ensure_loaded(buf_T *buf)
149{
150 if (buf->b_ml.ml_mfp == NULL)
151 {
152 aco_save_T aco;
153
154 aucmd_prepbuf(&aco, buf);
155 swap_exists_action = SEA_NONE;
156 open_buffer(FALSE, NULL, 0);
157 aucmd_restbuf(&aco);
158 }
159}
160
161/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200162 * Open current buffer, that is: open the memfile and read the file into
163 * memory.
164 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 */
166 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100167open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100168 int read_stdin, // read file from stdin
169 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
170 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171{
172 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200173 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100174#ifdef FEAT_SYN_HL
175 long old_tw = curbuf->b_p_tw;
176#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200177 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100179 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
180 // When re-entering the same buffer, it should not change, because the
181 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 if (readonlymode && curbuf->b_ffname != NULL
183 && (curbuf->b_flags & BF_NEVERLOADED))
184 curbuf->b_p_ro = TRUE;
185
Bram Moolenaar4770d092006-01-12 23:22:24 +0000186 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100188 // There MUST be a memfile, otherwise we can't do anything
189 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100190 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200191 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 if (curbuf->b_ml.ml_mfp != NULL)
193 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100194 // If there is no memfile at all, exit.
195 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 if (curbuf == NULL)
197 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100198 emsg(_("E82: Cannot allocate any buffer, exiting..."));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200199
200 // Don't try to do any saving, with "curbuf" NULL almost nothing
201 // will work.
202 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 getout(2);
204 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200205
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100206 emsg(_("E83: Cannot allocate buffer, using other one..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100208#ifdef FEAT_SYN_HL
209 if (old_tw != curbuf->b_p_tw)
210 check_colorcolumn(curwin);
211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 return FAIL;
213 }
214
Bram Moolenaarc667da52019-11-30 20:52:27 +0100215 // The autocommands in readfile() may change the buffer, but only AFTER
216 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200217 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
Bram Moolenaarc667da52019-11-30 20:52:27 +0100220 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100221 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
223 if (curbuf->b_ffname != NULL
224#ifdef FEAT_NETBEANS_INTG
225 && netbeansReadFile
226#endif
227 )
228 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100229 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200230#ifdef UNIX
231 int save_bin = curbuf->b_p_bin;
232 int perm;
233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234#ifdef FEAT_NETBEANS_INTG
235 int oldFire = netbeansFireChanges;
236
237 netbeansFireChanges = 0;
238#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200239#ifdef UNIX
240 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200241 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200242 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200243# ifdef OPEN_CHR_FILES
244 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
245# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200246 ))
247 read_fifo = TRUE;
248 if (read_fifo)
249 curbuf->b_p_bin = TRUE;
250#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100251 if (shortmess(SHM_FILEINFO))
252 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200254 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200255 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
256#ifdef UNIX
257 if (read_fifo)
258 {
259 curbuf->b_p_bin = save_bin;
260 if (retval == OK)
261 retval = read_buffer(FALSE, eap, flags);
262 }
263#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100264 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265#ifdef FEAT_NETBEANS_INTG
266 netbeansFireChanges = oldFire;
267#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100268 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200269 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 fix_help_buffer();
271 }
272 else if (read_stdin)
273 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200274 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100276 // First read the text in binary mode into the buffer.
277 // Then read from that same buffer and append at the end. This makes
278 // it possible to retry when 'fileformat' or 'fileencoding' was
279 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 curbuf->b_p_bin = TRUE;
281 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200282 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
283 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 curbuf->b_p_bin = save_bin;
285 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200286 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 }
288
Bram Moolenaarc667da52019-11-30 20:52:27 +0100289 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100291 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100293#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100294 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100295#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100298 // Set/reset the Changed flag first, autocmds may change the buffer.
299 // Apply the automatic commands, before processing the modelines.
300 // So the modelines have priority over autocommands.
301 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100302 // When reading stdin, the buffer contents always needs writing, so set
303 // the changed flag. Unless in readonly mode: "ls | gview -".
304 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000305 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100306 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100307#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000310 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100312 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200313 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100314 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315
Bram Moolenaarc667da52019-11-30 20:52:27 +0100316 // Set last_changedtick to avoid triggering a TextChanged autocommand right
317 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100318 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100319 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100320 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100321
Bram Moolenaarc667da52019-11-30 20:52:27 +0100322 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323#ifdef FEAT_EVAL
324 if (aborting())
325#else
326 if (got_int)
327#endif
328 curbuf->b_flags |= BF_READERR;
329
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000330#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100331 // Need to update automatic folding. Do this before the autocommands,
332 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000333 foldUpdateAll(curwin);
334#endif
335
Bram Moolenaarc667da52019-11-30 20:52:27 +0100336 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 if (!(curwin->w_valid & VALID_TOPLINE))
338 {
339 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100344#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100346#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348#endif
349
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100350 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100352 // The autocommands may have changed the current buffer. Apply the
353 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200354 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {
356 aco_save_T aco;
357
Bram Moolenaarc667da52019-11-30 20:52:27 +0100358 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200359 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000360 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
362
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100363 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100364#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100365 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
366 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100367#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100368 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370
Bram Moolenaarc667da52019-11-30 20:52:27 +0100371 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 aucmd_restbuf(&aco);
373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 }
375
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 return retval;
377}
378
379/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200380 * Store "buf" in "bufref" and set the free count.
381 */
382 void
383set_bufref(bufref_T *bufref, buf_T *buf)
384{
385 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200386 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200387 bufref->br_buf_free_count = buf_free_count;
388}
389
390/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200391 * Return TRUE if "bufref->br_buf" points to the same buffer as when
392 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200393 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200394 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
395 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200396 */
397 int
398bufref_valid(bufref_T *bufref)
399{
400 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200401 ? TRUE : buf_valid(bufref->br_buf)
402 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200403}
404
405/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200407 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 */
409 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100410buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411{
412 buf_T *bp;
413
Bram Moolenaarc667da52019-11-30 20:52:27 +0100414 // Assume that we more often have a recent buffer, start with the last
415 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200416 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 if (bp == buf)
418 return TRUE;
419 return FALSE;
420}
421
422/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200423 * A hash table used to quickly lookup a buffer by its number.
424 */
425static hashtab_T buf_hashtab;
426
427 static void
428buf_hashtab_add(buf_T *buf)
429{
430 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
431 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100432 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200433}
434
435 static void
436buf_hashtab_remove(buf_T *buf)
437{
438 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
439
440 if (!HASHITEM_EMPTY(hi))
441 hash_remove(&buf_hashtab, hi);
442}
443
Bram Moolenaar94f01952018-09-01 15:30:03 +0200444/*
445 * Return TRUE when buffer "buf" can be unloaded.
446 * Give an error message and return FALSE when the buffer is locked or the
447 * screen is being redrawn and the buffer is in a window.
448 */
449 static int
450can_unload_buffer(buf_T *buf)
451{
452 int can_unload = !buf->b_locked;
453
454 if (can_unload && updating_screen)
455 {
456 win_T *wp;
457
458 FOR_ALL_WINDOWS(wp)
459 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200460 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200461 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200462 break;
463 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200464 }
465 if (!can_unload)
Bram Moolenaardefa0672019-07-21 19:25:37 +0200466 semsg(_("E937: Attempt to delete a buffer that is in use: %s"),
467 buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200468 return can_unload;
469}
Bram Moolenaara997b452018-04-17 23:24:06 +0200470
Bram Moolenaar480778b2016-07-14 22:09:39 +0200471/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 * Close the link to a buffer.
473 * "action" is used when there is no longer a window for the buffer.
474 * It can be:
475 * 0 buffer becomes hidden
476 * DOBUF_UNLOAD buffer is unloaded
477 * DOBUF_DELETE buffer is unloaded and removed from buffer list
478 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200479 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 * When doing all but the first one on the current buffer, the caller should
481 * get a new buffer very soon!
482 *
483 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100484 *
485 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
486 * cause there to be only one window with this buffer. e.g. when ":quit" is
487 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100488 *
489 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100490 *
491 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100493 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100494close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100495 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100496 buf_T *buf,
497 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100498 int abort_if_last,
499 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100502 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200503 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100504 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200505 win_T *the_curwin = curwin;
506 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200508 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
509 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510
Bram Moolenaarcee52202020-03-11 14:19:58 +0100511 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100512
513 // Force unloading or deleting when 'bufhidden' says so.
514 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
515 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100516 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200517 {
518 del_buf = TRUE;
519 unload_buf = TRUE;
520 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100521 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200522 {
523 del_buf = TRUE;
524 unload_buf = TRUE;
525 wipe_buf = TRUE;
526 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100527 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200528 unload_buf = TRUE;
529
Bram Moolenaar94053a52017-08-01 21:44:33 +0200530#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200531 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100533 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200534 if (term_job_running(buf->b_term))
535 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200536 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200537 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200538 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100539 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200540
Bram Moolenaarc667da52019-11-30 20:52:27 +0100541 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200543 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200544 else
545 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100546 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200547 del_buf = FALSE;
548 unload_buf = FALSE;
549 }
550 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100551 else if (buf->b_p_bh[0] == 'h' && !del_buf)
552 {
553 // Hide a terminal buffer.
554 unload_buf = FALSE;
555 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200556 else
557 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100558 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200559 del_buf = TRUE;
560 unload_buf = TRUE;
561 wipe_buf = TRUE;
562 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100563 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200564 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566
Bram Moolenaarc667da52019-11-30 20:52:27 +0100567 // Disallow deleting the buffer when it is locked (already being closed or
568 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200569 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100570 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200571
Bram Moolenaarc667da52019-11-30 20:52:27 +0100572 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200573 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100575 // Set b_last_cursor when closing the last window for the buffer.
576 // Remember the last cursor position and window options of the buffer.
577 // This used to be only for the current window, but then options like
578 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 if (buf->b_nwindows == 1)
580 set_last_cursor(win);
581 buflist_setfpos(buf, win,
582 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
583 win->w_cursor.col, TRUE);
584 }
585
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200586 set_bufref(&bufref, buf);
587
Bram Moolenaarc667da52019-11-30 20:52:27 +0100588 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 if (buf->b_nwindows == 1)
590 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200591 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100592 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200593 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
594 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200595 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100596 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100597 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200598aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100599 emsg(_(e_auabort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100600 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100601 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200602 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100603 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100605 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200606 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
Bram Moolenaarc667da52019-11-30 20:52:27 +0100608 // When the buffer becomes hidden, but is not unloaded, trigger
609 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 if (!unload_buf)
611 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200612 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100613 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200614 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
615 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200616 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100617 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200618 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200619 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100620 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200621 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100622 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200623 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100625#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100626 // autocmds may abort script processing
627 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100628 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200631
Bram Moolenaarc667da52019-11-30 20:52:27 +0100632 // If the buffer was in curwin and the window has changed, go back to that
633 // window, if it still exists. This avoids that ":edit x" triggering a
634 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200635 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
636 {
637 block_autocmds();
638 goto_tabpage_win(the_curtab, the_curwin);
639 unblock_autocmds();
640 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
Bram Moolenaarc667da52019-11-30 20:52:27 +0100644 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 if (buf->b_nwindows > 0)
646 --buf->b_nwindows;
647
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100648#ifdef FEAT_DIFF
649 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100650 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100651#endif
652
Bram Moolenaarc667da52019-11-30 20:52:27 +0100653 // Return when a window is displaying the buffer or when it's not
654 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100656 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657
Bram Moolenaarc667da52019-11-30 20:52:27 +0100658 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 if (buf->b_ffname == NULL)
660 del_buf = TRUE;
661
Bram Moolenaarc667da52019-11-30 20:52:27 +0100662 // When closing the current buffer stop Visual mode before freeing
663 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200664 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200665#if defined(EXITFREE)
666 && !entered_free_all_mem
667#endif
668 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200669 end_visual_mode();
670
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100671 // Free all things allocated for this buffer.
672 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
673 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100674 // Remember if we are closing the current buffer. Restore the number of
675 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 is_curbuf = (buf == curbuf);
677 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100679 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100680 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100681 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
Bram Moolenaarc667da52019-11-30 20:52:27 +0100683 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200684 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100685 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100686#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100687 // autocmds may abort script processing
688 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100689 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100692 // It's possible that autocommands change curbuf to the one being deleted.
693 // This might cause the previous curbuf to be deleted unexpectedly. But
694 // in some cases it's OK to delete the curbuf, because a new one is
695 // obtained anyway. Therefore only return if curbuf changed to the
696 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100698 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200699
Bram Moolenaar4033c552017-09-16 20:54:51 +0200700 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100701 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200702
Bram Moolenaarc667da52019-11-30 20:52:27 +0100703 // Autocommands may have opened or closed windows for this buffer.
704 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200705 if (buf->b_nwindows > 0)
706 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 /*
709 * Remove the buffer from the list.
710 */
711 if (wipe_buf)
712 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200713 if (action == DOBUF_WIPE_REUSE)
714 {
715 // we can re-use this buffer number, store it
716 if (buf_reuse.ga_itemsize == 0)
717 ga_init2(&buf_reuse, sizeof(int), 50);
718 if (ga_grow(&buf_reuse, 1) == OK)
719 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
720 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200721 if (buf->b_sfname != buf->b_ffname)
722 VIM_CLEAR(buf->b_sfname);
723 else
724 buf->b_sfname = NULL;
725 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 if (buf->b_prev == NULL)
727 firstbuf = buf->b_next;
728 else
729 buf->b_prev->b_next = buf->b_next;
730 if (buf->b_next == NULL)
731 lastbuf = buf->b_prev;
732 else
733 buf->b_next->b_prev = buf->b_prev;
734 free_buffer(buf);
735 }
736 else
737 {
738 if (del_buf)
739 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100740 // Free all internal variables and reset option values, to make
741 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 free_buffer_stuff(buf, TRUE);
743
Bram Moolenaarc667da52019-11-30 20:52:27 +0100744 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
746
Bram Moolenaarc667da52019-11-30 20:52:27 +0100747 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 buf->b_p_initialized = FALSE;
749 }
750 buf_clear_file(buf);
751 if (del_buf)
752 buf->b_p_bl = FALSE;
753 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100754 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100755 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756}
757
758/*
759 * Make buffer not contain a file.
760 */
761 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100762buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763{
764 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200765 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 buf->b_p_eol = TRUE;
768 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000770 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100772 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773#ifdef FEAT_NETBEANS_INTG
774 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775#endif
776}
777
778/*
779 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200780 * the file. Careful: get here with "curwin" NULL when exiting.
781 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100782 * BFA_DEL buffer is going to be deleted
783 * BFA_WIPE buffer is going to be wiped out
784 * BFA_KEEP_UNDO do not free undo information
785 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100788buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200791 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200792 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200793 win_T *the_curwin = curwin;
794 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795
Bram Moolenaarc667da52019-11-30 20:52:27 +0100796 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200797 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100798 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200799 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200800 if (buf->b_ml.ml_mfp != NULL)
801 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200802 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
803 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200804 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100805 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200806 return;
807 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200808 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200810 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
811 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200812 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100813 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 return;
815 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200816 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200818 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
819 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200820 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100821 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 return;
823 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200824 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100825 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200826
Bram Moolenaarc667da52019-11-30 20:52:27 +0100827 // If the buffer was in curwin and the window has changed, go back to that
828 // window, if it still exists. This avoids that ":edit x" triggering a
829 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200830 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
831 {
832 block_autocmds();
833 goto_tabpage_win(the_curtab, the_curwin);
834 unblock_autocmds();
835 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200836
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100837#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100838 // autocmds may abort script processing
839 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100843 // It's possible that autocommands change curbuf to the one being deleted.
844 // This might cause curbuf to be deleted unexpectedly. But in some cases
845 // it's OK to delete the curbuf, because a new one is obtained anyway.
846 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 if (buf == curbuf && !is_curbuf)
848 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100850 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200852#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100853 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200854 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100855 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200856#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000857
858#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100859 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000860 {
861 win_T *win;
862 tabpage_T *tp;
863
864 FOR_ALL_TAB_WINDOWS(tp, win)
865 if (win->w_buffer == buf)
866 clearFolding(win);
867 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000868#endif
869
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870#ifdef FEAT_TCL
871 tcl_buffer_free(buf);
872#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100873 ml_close(buf, TRUE); // close and delete the memline/memfile
874 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200875 if ((flags & BFA_KEEP_UNDO) == 0)
876 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100877 u_blockfree(buf); // free the memory allocated for undo
878 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100881 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100883#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100884 clear_buf_prop_types(buf);
885#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100886 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887}
888
889/*
890 * Free a buffer structure and the things it contains related to the buffer
891 * itself (not the file, that must have been done already).
892 */
893 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100894free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200896 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200898#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100899 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200900 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200901 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200902 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200903#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200904#ifdef FEAT_LUA
905 lua_buffer_free(buf);
906#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000907#ifdef FEAT_MZSCHEME
908 mzscheme_buffer_free(buf);
909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910#ifdef FEAT_PERL
911 perl_buf_free(buf);
912#endif
913#ifdef FEAT_PYTHON
914 python_buffer_free(buf);
915#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200916#ifdef FEAT_PYTHON3
917 python3_buffer_free(buf);
918#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919#ifdef FEAT_RUBY
920 ruby_buffer_free(buf);
921#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200922#ifdef FEAT_JOB_CHANNEL
923 channel_buffer_free(buf);
924#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200925#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200926 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200927#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200928#ifdef FEAT_JOB_CHANNEL
929 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200930 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200931 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200932#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200933
934 buf_hashtab_remove(buf);
935
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200936 aubuflocal_remove(buf);
937
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200938 if (autocmd_busy)
939 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100940 // Do not free the buffer structure while autocommands are executing,
941 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200942 buf->b_next = au_pending_free_buf;
943 au_pending_free_buf = buf;
944 }
945 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100946 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200947 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100948 if (curbuf == buf)
949 curbuf = NULL; // make clear it's not to be used
950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951}
952
953/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100954 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100955 */
956 static void
957init_changedtick(buf_T *buf)
958{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100959 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100960
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100961 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
962 di->di_tv.v_type = VAR_NUMBER;
963 di->di_tv.v_lock = VAR_FIXED;
964 di->di_tv.vval.v_number = 0;
965
Bram Moolenaar92769c32017-02-25 15:41:37 +0100966#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100967 STRCPY(buf->b_ct_di.di_key, "changedtick");
968 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100969#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100970}
971
972/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
974 */
975 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100976free_buffer_stuff(
977 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100978 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979{
980 if (free_options)
981 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100982 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200984#ifdef FEAT_SPELL
985 ga_clear(&buf->b_s.b_langp);
986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 }
988#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100989 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100990 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100991
Bram Moolenaarc667da52019-11-30 20:52:27 +0100992 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100993 hash_init(&buf->b_vars->dv_hashtab);
994 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100995 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100996 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200999 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001001 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001003#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001004 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001005#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001006 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1007 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001008 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009}
1010
1011/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001012 * Free one wininfo_T.
1013 */
1014 void
1015free_wininfo(wininfo_T *wip)
1016{
1017 if (wip->wi_optset)
1018 {
1019 clear_winopt(&wip->wi_opt);
1020#ifdef FEAT_FOLDING
1021 deleteFoldRecurse(&wip->wi_folds);
1022#endif
1023 }
1024 vim_free(wip);
1025}
1026
1027/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 * Free the b_wininfo list for buffer "buf".
1029 */
1030 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001031clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032{
1033 wininfo_T *wip;
1034
1035 while (buf->b_wininfo != NULL)
1036 {
1037 wip = buf->b_wininfo;
1038 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001039 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 }
1041}
1042
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043/*
1044 * Go to another buffer. Handles the result of the ATTENTION dialog.
1045 */
1046 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001047goto_buffer(
1048 exarg_T *eap,
1049 int start,
1050 int dir,
1051 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001053 bufref_T old_curbuf;
1054
1055 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056
1057 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1059 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1061 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001062#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001063 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001064
Bram Moolenaarc667da52019-11-30 20:52:27 +01001065 // Reset the error/interrupt/exception state here so that
1066 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001067 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001068#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001069
Bram Moolenaarc667da52019-11-30 20:52:27 +01001070 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 win_close(curwin, TRUE);
1072 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001073 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001074
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001075#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001076 // Restore the error/interrupt/exception state if not discarded by a
1077 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001078 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 }
1081 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001082 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001083}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085/*
1086 * Handle the situation of swap_exists_action being set.
1087 * It is allowed for "old_curbuf" to be NULL or invalid.
1088 */
1089 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001090handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001092#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001093 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001094#endif
1095#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001096 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001097#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001098 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 if (swap_exists_action == SEA_QUIT)
1101 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001102#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001103 // Reset the error/interrupt/exception state here so that
1104 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001105 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001106#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001107
Bram Moolenaarc667da52019-11-30 20:52:27 +01001108 // User selected Quit at ATTENTION prompt. Go back to previous
1109 // buffer. If that buffer is gone or the same as the current one,
1110 // open a new, empty buffer.
1111 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001112 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001113 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001114 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1115 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001116 {
1117 // Block autocommands here because curwin->w_buffer is NULL.
1118 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001119 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001120 unblock_autocmds();
1121 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001122 else
1123 buf = old_curbuf->br_buf;
1124 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001125 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001126 int old_msg_silent = msg_silent;
1127
1128 if (shortmess(SHM_FILEINFO))
1129 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001130 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001131 // restore msg_silent, so that the command line will be shown
1132 msg_silent = old_msg_silent;
1133
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001134#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001135 if (old_tw != curbuf->b_p_tw)
1136 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001137#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001138 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001139 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001140
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001141#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001142 // Restore the error/interrupt/exception state if not discarded by a
1143 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001144 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001145#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 }
1147 else if (swap_exists_action == SEA_RECOVER)
1148 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001149#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001150 // Reset the error/interrupt/exception state here so that
1151 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001152 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001153#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001154
Bram Moolenaarc667da52019-11-30 20:52:27 +01001155 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001157 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001158 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001160 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001161
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001162#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001163 // Restore the error/interrupt/exception state if not discarded by a
1164 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001165 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 }
1168 swap_exists_action = SEA_NONE;
1169}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001172 * Make the current buffer empty.
1173 * Used when it is wiped out and it's the last buffer.
1174 */
1175 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001176empty_curbuf(
1177 int close_others,
1178 int forceit,
1179 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001180{
1181 int retval;
1182 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001183 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001184
1185 if (action == DOBUF_UNLOAD)
1186 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001187 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001188 return FAIL;
1189 }
1190
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001191 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001192 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001193 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001194 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001195
1196 setpcmark();
1197 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1198 forceit ? ECMD_FORCEIT : 0, curwin);
1199
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001200 // do_ecmd() may create a new buffer, then we have to delete
1201 // the old one. But do_ecmd() may have done that already, check
1202 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001203 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001204 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001205 if (!close_others)
1206 need_fileinfo = FALSE;
1207 return retval;
1208}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001209
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210/*
1211 * Implementation of the commands for the buffer list.
1212 *
1213 * action == DOBUF_GOTO go to specified buffer
1214 * action == DOBUF_SPLIT split window and go to specified buffer
1215 * action == DOBUF_UNLOAD unload specified buffer(s)
1216 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1217 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001218 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 *
1220 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1221 * start == DOBUF_FIRST go to "count" buffer from first buffer
1222 * start == DOBUF_LAST go to "count" buffer from last buffer
1223 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1224 *
1225 * Return FAIL or OK.
1226 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001227 static int
1228do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001229 int action,
1230 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001231 int dir, // FORWARD or BACKWARD
1232 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001233 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234{
1235 buf_T *buf;
1236 buf_T *bp;
1237 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001238 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239
1240 switch (start)
1241 {
1242 case DOBUF_FIRST: buf = firstbuf; break;
1243 case DOBUF_LAST: buf = lastbuf; break;
1244 default: buf = curbuf; break;
1245 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001246 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 {
1248 while (count-- > 0)
1249 {
1250 do
1251 {
1252 buf = buf->b_next;
1253 if (buf == NULL)
1254 buf = firstbuf;
1255 }
1256 while (buf != curbuf && !bufIsChanged(buf));
1257 }
1258 if (!bufIsChanged(buf))
1259 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001260 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 return FAIL;
1262 }
1263 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001264 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
1266 while (buf != NULL && buf->b_fnum != count)
1267 buf = buf->b_next;
1268 }
1269 else
1270 {
1271 bp = NULL;
1272 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1273 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001274 // remember the buffer where we start, we come back there when all
1275 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 if (bp == NULL)
1277 bp = buf;
1278 if (dir == FORWARD)
1279 {
1280 buf = buf->b_next;
1281 if (buf == NULL)
1282 buf = firstbuf;
1283 }
1284 else
1285 {
1286 buf = buf->b_prev;
1287 if (buf == NULL)
1288 buf = lastbuf;
1289 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001290 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 if (unload || buf->b_p_bl)
1292 {
1293 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001294 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 }
1296 if (bp == buf)
1297 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001298 // back where we started, didn't find anything.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001299 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 return FAIL;
1301 }
1302 }
1303 }
1304
Bram Moolenaarc667da52019-11-30 20:52:27 +01001305 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 {
1307 if (start == DOBUF_FIRST)
1308 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001309 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001311 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 }
1313 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001314 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001316 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 return FAIL;
1318 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001319#ifdef FEAT_PROP_POPUP
1320 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1321# ifdef FEAT_TERMINAL
1322 && !bt_terminal(buf)
1323#endif
1324 )
1325 return OK;
1326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327
1328#ifdef FEAT_GUI
1329 need_mouse_correct = TRUE;
1330#endif
1331
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001333 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 */
1335 if (unload)
1336 {
1337 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001338 bufref_T bufref;
1339
Bram Moolenaar94f01952018-09-01 15:30:03 +02001340 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001341 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001342
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001343 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344
Bram Moolenaarc667da52019-11-30 20:52:27 +01001345 // When unloading or deleting a buffer that's already unloaded and
1346 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001347 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1348 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 return FAIL;
1350
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001351 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001353#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001354 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 {
1356 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001357 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001358 // Autocommand deleted buffer, oops! It's not changed
1359 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001361 // If it's still changed fail silently, the dialog already
1362 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001363 if (bufIsChanged(buf))
1364 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001366 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001369 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 buf->b_fnum);
1371 return FAIL;
1372 }
1373 }
1374
Bram Moolenaarc667da52019-11-30 20:52:27 +01001375 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001376 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001377 end_visual_mode();
1378
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001379 // If deleting the last (listed) buffer, make it empty.
1380 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001381 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 if (bp->b_p_bl && bp != buf)
1383 break;
1384 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001385 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001387 // If the deleted buffer is the current one, close the current window
1388 // (unless it's the only window). Repeat this so long as we end up in
1389 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001390 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001391 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001392 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001393 {
1394 if (win_close(curwin, FALSE) == FAIL)
1395 break;
1396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001398 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (buf != curbuf)
1400 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001401 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001402 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001403 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 return OK;
1405 }
1406
1407 /*
1408 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001409 * There should be another, otherwise it would have been handled
1410 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001411 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 * Then prefer the buffer we most recently visited.
1413 * Else try to find one that is loaded, after the current buffer,
1414 * then before the current buffer.
1415 * Finally use any buffer.
1416 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001417 buf = NULL; // selected buffer
1418 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001419 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1420 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001422 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 {
1424 int jumpidx;
1425
1426 jumpidx = curwin->w_jumplistidx - 1;
1427 if (jumpidx < 0)
1428 jumpidx = curwin->w_jumplistlen - 1;
1429
1430 forward = jumpidx;
1431 while (jumpidx != curwin->w_jumplistidx)
1432 {
1433 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1434 if (buf != NULL)
1435 {
1436 if (buf == curbuf || !buf->b_p_bl)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001437 buf = NULL; // skip current and unlisted bufs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 else if (buf->b_ml.ml_mfp == NULL)
1439 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001440 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 if (bp == NULL)
1442 bp = buf;
1443 buf = NULL;
1444 }
1445 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001446 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001448 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1450 break;
1451 if (--jumpidx < 0)
1452 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001453 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 break;
1455 }
1456 }
1457#endif
1458
Bram Moolenaarc667da52019-11-30 20:52:27 +01001459 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 {
1461 forward = TRUE;
1462 buf = curbuf->b_next;
1463 for (;;)
1464 {
1465 if (buf == NULL)
1466 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001467 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 break;
1469 buf = curbuf->b_prev;
1470 forward = FALSE;
1471 continue;
1472 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001473 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1475 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001476 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001478 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 bp = buf;
1480 }
1481 if (forward)
1482 buf = buf->b_next;
1483 else
1484 buf = buf->b_prev;
1485 }
1486 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001487 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001489 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001491 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 if (buf->b_p_bl && buf != curbuf)
1493 break;
1494 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001495 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
1497 if (curbuf->b_next != NULL)
1498 buf = curbuf->b_next;
1499 else
1500 buf = curbuf->b_prev;
1501 }
1502 }
1503
Bram Moolenaara02471e2014-01-10 16:43:14 +01001504 if (buf == NULL)
1505 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001506 // Autocommands must have wiped out all other buffers. Only option
1507 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001508 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001509 }
1510
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001512 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001514 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001516 // If 'switchbuf' contains "useopen": jump to first window containing
1517 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001518 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001519 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001520 // If 'switchbuf' contains "usetab": jump to first window in any tab
1521 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001522 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 return OK;
1524 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 return FAIL;
1526 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527
Bram Moolenaarc667da52019-11-30 20:52:27 +01001528 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 if (buf == curbuf)
1530 return OK;
1531
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001532 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001533 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 {
1535#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001536 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001538 bufref_T bufref;
1539
1540 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001542 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001543 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 }
1546 if (bufIsChanged(curbuf))
1547#endif
1548 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001549 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 return FAIL;
1551 }
1552 }
1553
Bram Moolenaarc667da52019-11-30 20:52:27 +01001554 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 set_curbuf(buf, action);
1556
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001558 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001560#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001561 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 return FAIL;
1563#endif
1564
1565 return OK;
1566}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001568 int
1569do_buffer(
1570 int action,
1571 int start,
1572 int dir, // FORWARD or BACKWARD
1573 int count, // buffer number or number of buffers
1574 int forceit) // TRUE when using !
1575{
1576 return do_buffer_ext(action, start, dir, count,
1577 forceit ? DOBUF_FORCEIT : 0);
1578}
1579
1580/*
1581 * do_bufdel() - delete or unload buffer(s)
1582 *
1583 * addr_count == 0: ":bdel" - delete current buffer
1584 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1585 * buffer "end_bnr", then any other arguments.
1586 * addr_count == 2: ":N,N bdel" - delete buffers in range
1587 *
1588 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1589 * DOBUF_DEL (":bdel")
1590 *
1591 * Returns error message or NULL
1592 */
1593 char *
1594do_bufdel(
1595 int command,
1596 char_u *arg, // pointer to extra arguments
1597 int addr_count,
1598 int start_bnr, // first buffer number in a range
1599 int end_bnr, // buffer nr or last buffer nr in a range
1600 int forceit)
1601{
1602 int do_current = 0; // delete current buffer?
1603 int deleted = 0; // number of buffers deleted
1604 char *errormsg = NULL; // return value
1605 int bnr; // buffer number
1606 char_u *p;
1607
1608 if (addr_count == 0)
1609 {
1610 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1611 }
1612 else
1613 {
1614 if (addr_count == 2)
1615 {
1616 if (*arg) // both range and argument is not allowed
1617 return ex_errmsg(e_trailing_arg, arg);
1618 bnr = start_bnr;
1619 }
1620 else // addr_count == 1
1621 bnr = end_bnr;
1622
1623 for ( ;!got_int; ui_breakcheck())
1624 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001625 // Delete the current buffer last, otherwise when the
1626 // current buffer is deleted, the next buffer becomes
1627 // the current one and will be loaded, which may then
1628 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001629 if (bnr == curbuf->b_fnum)
1630 do_current = bnr;
1631 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr,
1632 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1633 ++deleted;
1634
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001635 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001636 if (addr_count == 2)
1637 {
1638 if (++bnr > end_bnr)
1639 break;
1640 }
1641 else // addr_count == 1
1642 {
1643 arg = skipwhite(arg);
1644 if (*arg == NUL)
1645 break;
1646 if (!VIM_ISDIGIT(*arg))
1647 {
1648 p = skiptowhite_esc(arg);
1649 bnr = buflist_findpat(arg, p,
1650 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1651 FALSE, FALSE);
1652 if (bnr < 0) // failed
1653 break;
1654 arg = p;
1655 }
1656 else
1657 bnr = getdigits(&arg);
1658 }
1659 }
1660 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1661 FORWARD, do_current, forceit) == OK)
1662 ++deleted;
1663
1664 if (deleted == 0)
1665 {
1666 if (command == DOBUF_UNLOAD)
1667 STRCPY(IObuff, _("E515: No buffers were unloaded"));
1668 else if (command == DOBUF_DEL)
1669 STRCPY(IObuff, _("E516: No buffers were deleted"));
1670 else
1671 STRCPY(IObuff, _("E517: No buffers were wiped out"));
1672 errormsg = (char *)IObuff;
1673 }
1674 else if (deleted >= p_report)
1675 {
1676 if (command == DOBUF_UNLOAD)
1677 smsg(NGETTEXT("%d buffer unloaded",
1678 "%d buffers unloaded", deleted), deleted);
1679 else if (command == DOBUF_DEL)
1680 smsg(NGETTEXT("%d buffer deleted",
1681 "%d buffers deleted", deleted), deleted);
1682 else
1683 smsg(NGETTEXT("%d buffer wiped out",
1684 "%d buffers wiped out", deleted), deleted);
1685 }
1686 }
1687
1688
1689 return errormsg;
1690}
1691
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692/*
1693 * Set current buffer to "buf". Executes autocommands and closes current
1694 * buffer. "action" tells how to close the current buffer:
1695 * DOBUF_GOTO free or hide it
1696 * DOBUF_SPLIT nothing
1697 * DOBUF_UNLOAD unload it
1698 * DOBUF_DEL delete it
1699 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001700 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 */
1702 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001703set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704{
1705 buf_T *prevbuf;
1706 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001707 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001708#ifdef FEAT_SYN_HL
1709 long old_tw = curbuf->b_p_tw;
1710#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001711 bufref_T newbufref;
1712 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713
1714 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001715 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001716 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1717 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718
Bram Moolenaarc667da52019-11-30 20:52:27 +01001719 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721
Bram Moolenaarc667da52019-11-30 20:52:27 +01001722 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001724 set_bufref(&prevbufref, prevbuf);
1725 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001727 // Autocommands may delete the current buffer and/or the buffer we want to
1728 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001729 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001730 || (bufref_valid(&prevbufref)
1731 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001732#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001733 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001735 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001737#ifdef FEAT_SYN_HL
1738 if (prevbuf == curwin->w_buffer)
1739 reset_synblock(curwin);
1740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001742 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001743#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001744 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001746 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001748 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001749 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001750
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001751 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001752 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1754 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001755 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001756 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1757 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001758 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001759 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001760 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001763 // An autocommand may have deleted "buf", already entered it (e.g., when
1764 // it did ":bunload") or aborted the script processing.
1765 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9e931222012-06-20 11:55:01 +02001766 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001767#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001768 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001770 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001771 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001773#ifdef FEAT_SYN_HL
1774 if (old_tw != curbuf->b_p_tw)
1775 check_colorcolumn(curwin);
1776#endif
1777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778}
1779
1780/*
1781 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001782 * Old curbuf must have been abandoned already! This also means "curbuf" may
1783 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001785 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001786enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001788 // Get the buffer in the current window.
1789 curwin->w_buffer = buf;
1790 curbuf = buf;
1791 ++curbuf->b_nwindows;
1792
1793 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1795 if (!buf->b_help)
1796 get_winopts(buf);
1797#ifdef FEAT_FOLDING
1798 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001799 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001801 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802#endif
1803
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001805 if (curwin->w_p_diff)
1806 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807#endif
1808
Bram Moolenaara971b822011-09-14 14:43:25 +02001809#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001810 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001811#endif
1812
Bram Moolenaarc667da52019-11-30 20:52:27 +01001813 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 curwin->w_cursor.lnum = 1;
1815 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001818 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
Bram Moolenaarc667da52019-11-30 20:52:27 +01001820 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001821 curwin->w_valid = 0;
1822
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001823 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1824 curbuf->b_last_cursor.col, TRUE);
1825
Bram Moolenaarc667da52019-11-30 20:52:27 +01001826 // Make sure the buffer is loaded.
1827 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001828 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001829 // If there is no filetype, allow for detecting one. Esp. useful for
1830 // ":ball" used in a autocommand. If there already is a filetype we
1831 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001832 if (*curbuf->b_p_ft == NUL)
1833 did_filetype = FALSE;
1834
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001835 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 else
1838 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001839 if (!msg_silent && !shortmess(SHM_FILEINFO))
1840 need_fileinfo = TRUE; // display file info after redraw
1841
1842 // check if file changed
1843 (void)buf_check_timestamp(curbuf, FALSE);
1844
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001846#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001848#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1850 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 }
1852
Bram Moolenaarc667da52019-11-30 20:52:27 +01001853 // If autocommands did not change the cursor position, restore cursor lnum
1854 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 if (curwin->w_cursor.lnum == 1 && inindent(0))
1856 buflist_getfpos();
1857
Bram Moolenaarc667da52019-11-30 20:52:27 +01001858 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859#ifdef FEAT_TITLE
1860 maketitle();
1861#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001862 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001863 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001864 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
Bram Moolenaar009b2592004-10-24 19:18:58 +00001866#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001867 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001868 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001869#endif
1870
Bram Moolenaarc667da52019-11-30 20:52:27 +01001871 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001872 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873
1874#ifdef FEAT_KEYMAP
1875 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001876 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001878#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001879 // May need to set the spell language. Can only do this after the buffer
1880 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001881 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1882 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001883#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001884#ifdef FEAT_VIMINFO
1885 curbuf->b_last_used = vim_time();
1886#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001887
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 redraw_later(NOT_VALID);
1889}
1890
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001891#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1892/*
1893 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001894 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001895 */
1896 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001897do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001898{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001899 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001900 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001901 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001902 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001903 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001904 last_chdir_reason = "autochdir";
1905 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001906}
1907#endif
1908
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001909 void
1910no_write_message(void)
1911{
1912#ifdef FEAT_TERMINAL
1913 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001914 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001915 else
1916#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001917 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001918}
1919
1920 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001921no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001922{
1923#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001924 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001925 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001926 else
1927#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001928 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001929}
1930
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931/*
1932 * functions for dealing with the buffer list
1933 */
1934
1935/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001936 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1937 * only one window. That means it can be re-used.
1938 */
1939 int
1940curbuf_reusable(void)
1941{
1942 return (curbuf != NULL
1943 && curbuf->b_ffname == NULL
1944 && curbuf->b_nwindows <= 1
1945 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001946#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001947 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001948#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001949 && !curbufIsChanged());
1950}
1951
1952/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 * Add a file name to the buffer list. Return a pointer to the buffer.
1954 * If the same file name already exists return a pointer to that buffer.
1955 * If it does not exist, or if fname == NULL, a new entry is created.
1956 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1957 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1958 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001959 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001960 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1961 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001962 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 * This is the ONLY way to create a new buffer.
1964 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001966buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001967 char_u *ffname_arg, // full path of fname or relative
1968 char_u *sfname_arg, // short fname or NULL
1969 linenr_T lnum, // preferred cursor line
1970 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001972 char_u *ffname = ffname_arg;
1973 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 buf_T *buf;
1975#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001976 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977#endif
1978
Bram Moolenaar480778b2016-07-14 22:09:39 +02001979 if (top_file_num == 1)
1980 hash_init(&buf_hashtab);
1981
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001982 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983
1984 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001985 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 */
1987#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01001988 // On Unix we can use inode numbers when the file exists. Works better
1989 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1991 st.st_dev = (dev_T)-1;
1992#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001993 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994#ifdef UNIX
1995 buflist_findname_stat(ffname, &st)
1996#else
1997 buflist_findname(ffname)
1998#endif
1999 ) != NULL)
2000 {
2001 vim_free(ffname);
2002 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002003 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2004 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002005
2006 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002007 // copy the options now, if 'cpo' doesn't have 's' and not done
2008 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002009 buf_copy_options(buf, 0);
2010
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2012 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002013 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002014
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002016 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002018 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002019 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002020 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002021 return NULL;
2022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 }
2024 return buf;
2025 }
2026
2027 /*
2028 * If the current buffer has no name and no contents, use the current
2029 * buffer. Otherwise: Need to allocate a new buffer structure.
2030 *
2031 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002032 * (A spell file buffer is allocated in spell.c, but that's not a normal
2033 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 */
2035 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002036 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 {
2038 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002039 // It's like this buffer is deleted. Watch out for autocommands that
2040 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 if (curbuf->b_p_bl)
2042 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2043 if (buf == curbuf)
2044 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002045#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002046 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002047 {
2048 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002054 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 clear_string_option(&buf->b_p_bh);
2056 clear_string_option(&buf->b_p_bt);
2057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 }
2059 if (buf != curbuf || curbuf == NULL)
2060 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002061 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 if (buf == NULL)
2063 {
2064 vim_free(ffname);
2065 return NULL;
2066 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002067#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002068 // init b: variables
Bram Moolenaar429fa852013-04-15 12:27:36 +02002069 buf->b_vars = dict_alloc();
2070 if (buf->b_vars == NULL)
2071 {
2072 vim_free(ffname);
2073 vim_free(buf);
2074 return NULL;
2075 }
2076 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2077#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002078 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 }
2080
2081 if (ffname != NULL)
2082 {
2083 buf->b_ffname = ffname;
2084 buf->b_sfname = vim_strsave(sfname);
2085 }
2086
2087 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002088 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089
2090 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2091 || buf->b_wininfo == NULL)
2092 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002093 if (buf->b_sfname != buf->b_ffname)
2094 VIM_CLEAR(buf->b_sfname);
2095 else
2096 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002097 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (buf != curbuf)
2099 free_buffer(buf);
2100 return NULL;
2101 }
2102
2103 if (buf == curbuf)
2104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002105 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002106 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002107 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002109#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002110 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 return NULL;
2112#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002113 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002114
Bram Moolenaarc667da52019-11-30 20:52:27 +01002115 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002116 buf->b_p_initialized = FALSE;
2117 buf_copy_options(buf, BCO_ENTER);
2118
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002120 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 curbuf->b_kmap_state |= KEYMAP_INIT;
2122#endif
2123 }
2124 else
2125 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002126 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002128 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 {
2130 buf->b_prev = NULL;
2131 firstbuf = buf;
2132 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002133 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 {
2135 lastbuf->b_next = buf;
2136 buf->b_prev = lastbuf;
2137 }
2138 lastbuf = buf;
2139
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002140 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2141 {
2142 // Recycle a previously used buffer number. Used for buffers which
2143 // are normally hidden, e.g. in a popup window. Avoids that the
2144 // buffer number grows rapidly.
2145 --buf_reuse.ga_len;
2146 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002147
2148 // Move buffer to the right place in the buffer list.
2149 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2150 {
2151 buf_T *prev = buf->b_prev;
2152
2153 prev->b_next = buf->b_next;
2154 if (prev->b_next != NULL)
2155 prev->b_next->b_prev = prev;
2156 buf->b_next = prev;
2157 buf->b_prev = prev->b_prev;
2158 if (buf->b_prev != NULL)
2159 buf->b_prev->b_next = buf;
2160 prev->b_prev = buf;
2161 if (lastbuf == buf)
2162 lastbuf = prev;
2163 if (firstbuf == prev)
2164 firstbuf = buf;
2165 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002166 }
2167 else
2168 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002169 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002171 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002172 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 {
2174 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002175 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 }
2177 top_file_num = 1;
2178 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002179 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002181 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 buf_copy_options(buf, BCO_ALWAYS);
2183 }
2184
2185 buf->b_wininfo->wi_fpos.lnum = lnum;
2186 buf->b_wininfo->wi_win = curwin;
2187
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002188#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002189 hash_init(&buf->b_s.b_keywtab);
2190 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191#endif
2192
2193 buf->b_fname = buf->b_sfname;
2194#ifdef UNIX
2195 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002196 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 else
2198 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002199 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 buf->b_dev = st.st_dev;
2201 buf->b_ino = st.st_ino;
2202 }
2203#endif
2204 buf->b_u_synced = TRUE;
2205 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002206 if (flags & BLN_DUMMY)
2207 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002209 clrallmarks(buf); // clear marks
2210 fmarks_check_names(buf); // check file marks for this file
2211 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 if (!(flags & BLN_DUMMY))
2213 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002214 bufref_T bufref;
2215
Bram Moolenaarc667da52019-11-30 20:52:27 +01002216 // Tricky: these autocommands may change the buffer list. They could
2217 // also split the window with re-using the one empty buffer. This may
2218 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002219 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002220 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002221 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002222 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002224 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002225 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002226 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002227 return NULL;
2228 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002229#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002230 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
2235 return buf;
2236}
2237
2238/*
2239 * Free the memory for the options of a buffer.
2240 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2241 * 'fileencoding'.
2242 */
2243 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002244free_buf_options(
2245 buf_T *buf,
2246 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247{
2248 if (free_p_ff)
2249 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 clear_string_option(&buf->b_p_bh);
2253 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 }
2255#ifdef FEAT_FIND_ID
2256 clear_string_option(&buf->b_p_def);
2257 clear_string_option(&buf->b_p_inc);
2258# ifdef FEAT_EVAL
2259 clear_string_option(&buf->b_p_inex);
2260# endif
2261#endif
2262#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2263 clear_string_option(&buf->b_p_inde);
2264 clear_string_option(&buf->b_p_indk);
2265#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002266#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2267 clear_string_option(&buf->b_p_bexpr);
2268#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002269#if defined(FEAT_CRYPT)
2270 clear_string_option(&buf->b_p_cm);
2271#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002272 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002273#if defined(FEAT_EVAL)
2274 clear_string_option(&buf->b_p_fex);
2275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002277# ifdef FEAT_SODIUM
2278 if (buf->b_p_key != NULL && (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2279 sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
2280# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 clear_string_option(&buf->b_p_key);
2282#endif
2283 clear_string_option(&buf->b_p_kp);
2284 clear_string_option(&buf->b_p_mps);
2285 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002286 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002288#ifdef FEAT_VARTABS
2289 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002290 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002291 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002292 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002293 buf->b_p_vsts_array = NULL;
2294 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002295 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002296#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297#ifdef FEAT_KEYMAP
2298 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002299 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 ga_clear(&buf->b_kmap_ga);
2301#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303#ifdef FEAT_FOLDING
2304 clear_string_option(&buf->b_p_cms);
2305#endif
2306 clear_string_option(&buf->b_p_nf);
2307#ifdef FEAT_SYN_HL
2308 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002309 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002310#endif
2311#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002312 clear_string_option(&buf->b_s.b_p_spc);
2313 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002314 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002315 buf->b_s.b_cap_prog = NULL;
2316 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002317 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318#endif
2319#ifdef FEAT_SEARCHPATH
2320 clear_string_option(&buf->b_p_sua);
2321#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323#ifdef FEAT_CINDENT
2324 clear_string_option(&buf->b_p_cink);
2325 clear_string_option(&buf->b_p_cino);
2326#endif
2327#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2328 clear_string_option(&buf->b_p_cinw);
2329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002331#ifdef FEAT_COMPL_FUNC
2332 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002333 clear_string_option(&buf->b_p_ofu);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002334 clear_string_option(&buf->b_p_tsrfu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002335#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336#ifdef FEAT_QUICKFIX
2337 clear_string_option(&buf->b_p_gp);
2338 clear_string_option(&buf->b_p_mp);
2339 clear_string_option(&buf->b_p_efm);
2340#endif
2341 clear_string_option(&buf->b_p_ep);
2342 clear_string_option(&buf->b_p_path);
2343 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002344 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002345#ifdef FEAT_EVAL
2346 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002347 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 clear_string_option(&buf->b_p_dict);
2350 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002351#ifdef FEAT_TEXTOBJ
2352 clear_string_option(&buf->b_p_qe);
2353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002355 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002356#ifdef FEAT_LISP
2357 clear_string_option(&buf->b_p_lw);
2358#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002359 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002360 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361}
2362
2363/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002364 * Get alternate file "n".
2365 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2366 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 * if (options & GETF_SETMARK) call setpcmark()
2368 * if (options & GETF_ALT) we are jumping to an alternate file.
2369 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2370 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002371 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 */
2373 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002374buflist_getfile(
2375 int n,
2376 linenr_T lnum,
2377 int options,
2378 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379{
2380 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 pos_T *fpos;
2383 colnr_T col;
2384
2385 buf = buflist_findnr(n);
2386 if (buf == NULL)
2387 {
2388 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002389 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002391 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 return FAIL;
2393 }
2394
Bram Moolenaarc667da52019-11-30 20:52:27 +01002395 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 if (buf == curbuf)
2397 return OK;
2398
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002399 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002400 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002401 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002403 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002404 if (curbuf_locked())
2405 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406
Bram Moolenaarc667da52019-11-30 20:52:27 +01002407 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 if (lnum == 0)
2409 {
2410 fpos = buflist_findfpos(buf);
2411 lnum = fpos->lnum;
2412 col = fpos->col;
2413 }
2414 else
2415 col = 0;
2416
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 if (options & GETF_SWITCH)
2418 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002419 // If 'switchbuf' contains "useopen": jump to first window containing
2420 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002421 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002423
Bram Moolenaarc667da52019-11-30 20:52:27 +01002424 // If 'switchbuf' contains "usetab": jump to first window in any tab
2425 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002426 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002427 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002428
Bram Moolenaarc667da52019-11-30 20:52:27 +01002429 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2430 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002431 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002432 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002434 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002435 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002436 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2437 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002439 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 }
2441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002444 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2445 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 {
2447 --RedrawingDisabled;
2448
Bram Moolenaarc667da52019-11-30 20:52:27 +01002449 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 if (!p_sol && col != 0)
2451 {
2452 curwin->w_cursor.col = col;
2453 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 curwin->w_set_curswant = TRUE;
2456 }
2457 return OK;
2458 }
2459 --RedrawingDisabled;
2460 return FAIL;
2461}
2462
2463/*
2464 * go to the last know line number for the current buffer
2465 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002466 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002467buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468{
2469 pos_T *fpos;
2470
2471 fpos = buflist_findfpos(curbuf);
2472
2473 curwin->w_cursor.lnum = fpos->lnum;
2474 check_cursor_lnum();
2475
2476 if (p_sol)
2477 curwin->w_cursor.col = 0;
2478 else
2479 {
2480 curwin->w_cursor.col = fpos->col;
2481 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 curwin->w_set_curswant = TRUE;
2484 }
2485}
2486
Bram Moolenaar81695252004-12-29 20:58:21 +00002487#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2488/*
2489 * Find file in buffer list by name (it has to be for the current window).
2490 * Returns NULL if not found.
2491 */
2492 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002493buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002494{
2495 char_u *ffname;
2496 buf_T *buf = NULL;
2497
Bram Moolenaarc667da52019-11-30 20:52:27 +01002498 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002499 ffname = FullName_save(fname,
2500#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002501 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002502#else
2503 FALSE
2504#endif
2505 );
2506 if (ffname != NULL)
2507 {
2508 buf = buflist_findname(ffname);
2509 vim_free(ffname);
2510 }
2511 return buf;
2512}
2513#endif
2514
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515/*
2516 * Find file in buffer list by name (it has to be for the current window).
2517 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002518 * Skips dummy buffers.
2519 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 */
2521 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002522buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523{
2524#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002525 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526
2527 if (mch_stat((char *)ffname, &st) < 0)
2528 st.st_dev = (dev_T)-1;
2529 return buflist_findname_stat(ffname, &st);
2530}
2531
2532/*
2533 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2534 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002535 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 */
2537 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002538buflist_findname_stat(
2539 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002540 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542#endif
2543 buf_T *buf;
2544
Bram Moolenaarc667da52019-11-30 20:52:27 +01002545 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002546 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002547 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548#ifdef UNIX
2549 , stp
2550#endif
2551 ))
2552 return buf;
2553 return NULL;
2554}
2555
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556/*
2557 * Find file in buffer list by a regexp pattern.
2558 * Return fnum of the found buffer.
2559 * Return < 0 for error.
2560 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002562buflist_findpat(
2563 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002564 char_u *pattern_end, // pointer to first char after pattern
2565 int unlisted, // find unlisted buffers
2566 int diffmode UNUSED, // find diff-mode buffers only
2567 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568{
2569 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 int match = -1;
2571 int find_listed;
2572 char_u *pat;
2573 char_u *patend;
2574 int attempt;
2575 char_u *p;
2576 int toggledollar;
2577
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002578 // "%" is current file, "%%" or "#" is alternate file
2579 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2580 || (in_vim9script() && pattern_end == pattern + 2
2581 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002583 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002585 else
2586 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587#ifdef FEAT_DIFF
2588 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2589 match = -1;
2590#endif
2591 }
2592
2593 /*
2594 * Try four ways of matching a listed buffer:
2595 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002596 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 * attempt == 2: with '$' at end (only match at end)
2598 * attempt == 3: with '^' at start and '$' at end (only full match)
2599 * Repeat this for finding an unlisted buffer if there was no matching
2600 * listed buffer.
2601 */
2602 else
2603 {
2604 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2605 if (pat == NULL)
2606 return -1;
2607 patend = pat + STRLEN(pat) - 1;
2608 toggledollar = (patend > pat && *patend == '$');
2609
Bram Moolenaarc667da52019-11-30 20:52:27 +01002610 // First try finding a listed buffer. If not found and "unlisted"
2611 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 find_listed = TRUE;
2613 for (;;)
2614 {
2615 for (attempt = 0; attempt <= 3; ++attempt)
2616 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002617 regmatch_T regmatch;
2618
Bram Moolenaarc667da52019-11-30 20:52:27 +01002619 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002621 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002623 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002625 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002626 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 {
2628 vim_free(pat);
2629 return -1;
2630 }
2631
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002632 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (buf->b_p_bl == find_listed
2634#ifdef FEAT_DIFF
2635 && (!diffmode || diff_mode_buf(buf))
2636#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002637 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002639 if (curtab_only)
2640 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002641 // Ignore the match if the buffer is not open in
2642 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002643 win_T *wp;
2644
Bram Moolenaar29323592016-07-24 22:04:11 +02002645 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002646 if (wp->w_buffer == buf)
2647 break;
2648 if (wp == NULL)
2649 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002650 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002651 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 {
2653 match = -2;
2654 break;
2655 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002656 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 }
2658
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002659 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002660 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 break;
2662 }
2663
Bram Moolenaarc667da52019-11-30 20:52:27 +01002664 // Only search for unlisted buffers if there was no match with
2665 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (!unlisted || !find_listed || match != -1)
2667 break;
2668 find_listed = FALSE;
2669 }
2670
2671 vim_free(pat);
2672 }
2673
2674 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002675 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002677 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 return match;
2679}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
Bram Moolenaar52410572019-10-27 05:12:45 +01002681#ifdef FEAT_VIMINFO
2682typedef struct {
2683 buf_T *buf;
2684 char_u *match;
2685} bufmatch_T;
2686#endif
2687
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688/*
2689 * Find all buffer names that match.
2690 * For command line expansion of ":buf" and ":sbuf".
2691 * Return OK if matches found, FAIL otherwise.
2692 */
2693 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002694ExpandBufnames(
2695 char_u *pat,
2696 int *num_file,
2697 char_u ***file,
2698 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
2700 int count = 0;
2701 buf_T *buf;
2702 int round;
2703 char_u *p;
2704 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002705 char_u *patc;
Bram Moolenaar52410572019-10-27 05:12:45 +01002706#ifdef FEAT_VIMINFO
2707 bufmatch_T *matches = NULL;
2708#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709
Bram Moolenaarc667da52019-11-30 20:52:27 +01002710 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 *file = NULL;
2712
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002713#ifdef FEAT_DIFF
2714 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2715 return FAIL;
2716#endif
2717
Bram Moolenaarc667da52019-11-30 20:52:27 +01002718 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002719 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002721 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002722 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002724 STRCPY(patc, "\\(^\\|[\\/]\\)");
2725 STRCPY(patc + 11, pat + 1);
2726 }
2727 else
2728 patc = pat;
2729
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002730 // attempt == 0: try match with '\<', match at start of word
2731 // attempt == 1: try match without '\<', match anywhere
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002732 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002733 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002734 regmatch_T regmatch;
2735
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002736 if (attempt > 0 && patc == pat)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002737 break; // there was no anchor, no need to try again
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002738 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2739 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002740 {
2741 if (patc != pat)
2742 vim_free(patc);
2743 return FAIL;
2744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002746 // round == 1: Count the matches.
2747 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 for (round = 1; round <= 2; ++round)
2749 {
2750 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002751 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002753 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002755#ifdef FEAT_DIFF
2756 if (options & BUF_DIFF_FILTER)
2757 // Skip buffers not suitable for
2758 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002759 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002760 continue;
2761#endif
2762
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002763 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 if (p != NULL)
2765 {
2766 if (round == 1)
2767 ++count;
2768 else
2769 {
2770 if (options & WILD_HOME_REPLACE)
2771 p = home_replace_save(buf, p);
2772 else
2773 p = vim_strsave(p);
Bram Moolenaar52410572019-10-27 05:12:45 +01002774#ifdef FEAT_VIMINFO
2775 if (matches != NULL)
2776 {
2777 matches[count].buf = buf;
2778 matches[count].match = p;
2779 count++;
2780 }
2781 else
2782#endif
2783 (*file)[count++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 }
2785 }
2786 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002787 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 break;
2789 if (round == 1)
2790 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002791 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 if (*file == NULL)
2793 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002794 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002795 if (patc != pat)
2796 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 return FAIL;
2798 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002799#ifdef FEAT_VIMINFO
2800 if (options & WILD_BUFLASTUSED)
2801 matches = ALLOC_MULT(bufmatch_T, count);
2802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 }
2804 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002805 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002806 if (count) // match(es) found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 break;
2808 }
2809
Bram Moolenaar05159a02005-02-26 23:04:13 +00002810 if (patc != pat)
2811 vim_free(patc);
2812
Bram Moolenaar52410572019-10-27 05:12:45 +01002813#ifdef FEAT_VIMINFO
2814 if (matches != NULL)
2815 {
2816 int i;
2817 if (count > 1)
2818 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2819 // if the current buffer is first in the list, place it at the end
2820 if (matches[0].buf == curbuf)
2821 {
2822 for (i = 1; i < count; i++)
2823 (*file)[i-1] = matches[i].match;
2824 (*file)[count-1] = matches[0].match;
2825 }
2826 else
2827 {
2828 for (i = 0; i < count; i++)
2829 (*file)[i] = matches[i].match;
2830 }
2831 vim_free(matches);
2832 }
2833#endif
2834
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 *num_file = count;
2836 return (count == 0 ? FAIL : OK);
2837}
2838
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839/*
2840 * Check for a match on the file name for buffer "buf" with regprog "prog".
2841 */
2842 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002843buflist_match(
2844 regmatch_T *rmp,
2845 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002846 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847{
2848 char_u *match;
2849
Bram Moolenaarc667da52019-11-30 20:52:27 +01002850 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002851 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002853 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854
2855 return match;
2856}
2857
2858/*
2859 * Try matching the regexp in "prog" with file name "name".
2860 * Return "name" when there is a match, NULL when not.
2861 */
2862 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002863fname_match(
2864 regmatch_T *rmp,
2865 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002866 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867{
2868 char_u *match = NULL;
2869 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870
2871 if (name != NULL)
2872 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002873 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002874 rmp->rm_ic = p_fic || ignore_case;
2875 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 match = name;
2877 else
2878 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002879 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002881 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 match = name;
2883 vim_free(p);
2884 }
2885 }
2886
2887 return match;
2888}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889
2890/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002891 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 */
2893 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002894buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002896 char_u key[VIM_SIZEOF_INT * 2 + 1];
2897 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898
2899 if (nr == 0)
2900 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002901 sprintf((char *)key, "%x", nr);
2902 hi = hash_find(&buf_hashtab, key);
2903
2904 if (!HASHITEM_EMPTY(hi))
2905 return (buf_T *)(hi->hi_key
2906 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 return NULL;
2908}
2909
2910/*
2911 * Get name of file 'n' in the buffer list.
2912 * When the file has no name an empty string is returned.
2913 * home_replace() is used to shorten the file name (used for marks).
2914 * Returns a pointer to allocated memory, of NULL when failed.
2915 */
2916 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002917buflist_nr2name(
2918 int n,
2919 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002920 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921{
2922 buf_T *buf;
2923
2924 buf = buflist_findnr(n);
2925 if (buf == NULL)
2926 return NULL;
2927 return home_replace_save(helptail ? buf : NULL,
2928 fullname ? buf->b_ffname : buf->b_fname);
2929}
2930
2931/*
2932 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2933 * When "copy_options" is TRUE save the local window option values.
2934 * When "lnum" is 0 only do the options.
2935 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002936 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002937buflist_setfpos(
2938 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002939 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01002940 linenr_T lnum,
2941 colnr_T col,
2942 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943{
2944 wininfo_T *wip;
2945
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002946 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 if (wip->wi_win == win)
2948 break;
2949 if (wip == NULL)
2950 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002951 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002952 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 if (wip == NULL)
2954 return;
2955 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002956 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 lnum = 1;
2958 }
2959 else
2960 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002961 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 if (wip->wi_prev)
2963 wip->wi_prev->wi_next = wip->wi_next;
2964 else
2965 buf->b_wininfo = wip->wi_next;
2966 if (wip->wi_next)
2967 wip->wi_next->wi_prev = wip->wi_prev;
2968 if (copy_options && wip->wi_optset)
2969 {
2970 clear_winopt(&wip->wi_opt);
2971#ifdef FEAT_FOLDING
2972 deleteFoldRecurse(&wip->wi_folds);
2973#endif
2974 }
2975 }
2976 if (lnum != 0)
2977 {
2978 wip->wi_fpos.lnum = lnum;
2979 wip->wi_fpos.col = col;
2980 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002981 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002983 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2985#ifdef FEAT_FOLDING
2986 wip->wi_fold_manual = win->w_fold_manual;
2987 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2988#endif
2989 wip->wi_optset = TRUE;
2990 }
2991
Bram Moolenaarc667da52019-11-30 20:52:27 +01002992 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 wip->wi_next = buf->b_wininfo;
2994 buf->b_wininfo = wip;
2995 wip->wi_prev = NULL;
2996 if (wip->wi_next)
2997 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998}
2999
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003000#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003001/*
3002 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3003 * page. That's because a diff is local to a tab page.
3004 */
3005 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003006wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003007{
3008 win_T *wp;
3009
3010 if (wip->wi_opt.wo_diff)
3011 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003012 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003013 // return FALSE when it's a window in the current tab page, thus
3014 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003015 if (wip->wi_win == wp)
3016 return FALSE;
3017 return TRUE;
3018 }
3019 return FALSE;
3020}
3021#endif
3022
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023/*
3024 * Find info for the current window in buffer "buf".
3025 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003026 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003027 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3028 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 * Returns NULL when there isn't any info.
3030 */
3031 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003032find_wininfo(
3033 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003034 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003035 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
3037 wininfo_T *wip;
3038
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003039 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003040 if (wip->wi_win == curwin
3041#ifdef FEAT_DIFF
3042 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3043#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003044
3045 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003047
Bram Moolenaarc667da52019-11-30 20:52:27 +01003048 // If no wininfo for curwin, use the first in the list (that doesn't have
3049 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003050 // If "need_options" is TRUE skip entries that don't have options set,
3051 // unless the window is editing "buf", so we can copy from the window
3052 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003053 if (wip == NULL)
3054 {
3055#ifdef FEAT_DIFF
3056 if (skip_diff_buffer)
3057 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003058 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003059 if (!wininfo_other_tab_diff(wip)
3060 && (!need_options || wip->wi_optset
3061 || (wip->wi_win != NULL
3062 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003063 break;
3064 }
3065 else
3066#endif
3067 wip = buf->b_wininfo;
3068 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 return wip;
3070}
3071
3072/*
3073 * Reset the local window options to the values last used in this window.
3074 * If the buffer wasn't used in this window before, use the values from
3075 * the most recently used window. If the values were never set, use the
3076 * global values for the window.
3077 */
3078 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003079get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080{
3081 wininfo_T *wip;
3082
3083 clear_winopt(&curwin->w_onebuf_opt);
3084#ifdef FEAT_FOLDING
3085 clearFolding(curwin);
3086#endif
3087
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003088 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003089 if (wip != NULL && wip->wi_win != NULL
3090 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003092 // The buffer is currently displayed in the window: use the actual
3093 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003094 win_T *wp = wip->wi_win;
3095
3096 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3097#ifdef FEAT_FOLDING
3098 curwin->w_fold_manual = wp->w_fold_manual;
3099 curwin->w_foldinvalid = TRUE;
3100 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3101#endif
3102 }
3103 else if (wip != NULL && wip->wi_optset)
3104 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003105 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3107#ifdef FEAT_FOLDING
3108 curwin->w_fold_manual = wip->wi_fold_manual;
3109 curwin->w_foldinvalid = TRUE;
3110 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3111#endif
3112 }
3113 else
3114 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3115
3116#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003117 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 if (p_fdls >= 0)
3119 curwin->w_p_fdl = p_fdls;
3120#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003121 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122}
3123
3124/*
3125 * Find the position (lnum and col) for the buffer 'buf' for the current
3126 * window.
3127 * Returns a pointer to no_position if no position is found.
3128 */
3129 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003130buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131{
3132 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003133 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003135 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 if (wip != NULL)
3137 return &(wip->wi_fpos);
3138 else
3139 return &no_position;
3140}
3141
3142/*
3143 * Find the lnum for the buffer 'buf' for the current window.
3144 */
3145 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003146buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147{
3148 return buflist_findfpos(buf)->lnum;
3149}
3150
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003152 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003155buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156{
Bram Moolenaar52410572019-10-27 05:12:45 +01003157 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 int len;
3159 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003160 int ro_char;
3161 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003162#ifdef FEAT_TERMINAL
3163 int job_running;
3164 int job_none_open;
3165#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166
Bram Moolenaar52410572019-10-27 05:12:45 +01003167#ifdef FEAT_VIMINFO
3168 garray_T buflist;
3169 buf_T **buflist_data = NULL, **p;
3170
3171 if (vim_strchr(eap->arg, 't'))
3172 {
3173 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003174 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003175 {
3176 if (ga_grow(&buflist, 1) == OK)
3177 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3178 }
3179
3180 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3181 sizeof(buf_T *), buf_compare);
3182
Bram Moolenaar3b991522019-11-06 23:26:20 +01003183 buflist_data = (buf_T **)buflist.ga_data;
3184 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003185 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003186 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003187
Bram Moolenaar3b991522019-11-06 23:26:20 +01003188 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003189 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3190 : buf->b_next)
3191#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003193#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003195#ifdef FEAT_TERMINAL
3196 job_running = term_job_running(buf->b_term);
3197 job_none_open = job_running && term_none_open(buf->b_term);
3198#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003199 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003200 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3201 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3202 || (vim_strchr(eap->arg, '+')
3203 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3204 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003205 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003206 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003207 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3208#ifdef FEAT_TERMINAL
3209 || (vim_strchr(eap->arg, 'R')
3210 && (!job_running || (job_running && job_none_open)))
3211 || (vim_strchr(eap->arg, '?')
3212 && (!job_running || (job_running && !job_none_open)))
3213 || (vim_strchr(eap->arg, 'F')
3214 && (job_running || buf->b_term == NULL))
3215#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003216 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3217 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3218 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3219 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3220 || (vim_strchr(eap->arg, '#')
3221 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003224 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 else
3226 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003227 if (message_filtered(NameBuff))
3228 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003230 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3231 : (bufIsChanged(buf) ? '+' : ' ');
3232#ifdef FEAT_TERMINAL
3233 if (term_job_running(buf->b_term))
3234 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003235 if (term_none_open(buf->b_term))
3236 ro_char = '?';
3237 else
3238 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003239 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3240 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003241 }
3242 else if (buf->b_term != NULL)
3243 ro_char = 'F';
3244 else
3245#endif
3246 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3247
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003248 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003249 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 buf->b_fnum,
3251 buf->b_p_bl ? ' ' : 'u',
3252 buf == curbuf ? '%' :
3253 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3254 buf->b_ml.ml_mfp == NULL ? ' ' :
3255 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003256 ro_char,
3257 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003258 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003259 if (len > IOSIZE - 20)
3260 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261
Bram Moolenaarc667da52019-11-30 20:52:27 +01003262 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 i = 40 - vim_strsize(IObuff);
3264 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003266 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003267#ifdef FEAT_VIMINFO
3268 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3269 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3270 else
3271#endif
3272 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3273 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003274 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003276 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 ui_breakcheck();
3278 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003279
3280#ifdef FEAT_VIMINFO
3281 if (buflist_data)
3282 ga_clear(&buflist);
3283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285
3286/*
3287 * Get file name and line number for file 'fnum'.
3288 * Used by DoOneCmd() for translating '%' and '#'.
3289 * Used by insert_reg() and cmdline_paste() for '#' register.
3290 * Return FAIL if not found, OK for success.
3291 */
3292 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003293buflist_name_nr(
3294 int fnum,
3295 char_u **fname,
3296 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297{
3298 buf_T *buf;
3299
3300 buf = buflist_findnr(fnum);
3301 if (buf == NULL || buf->b_fname == NULL)
3302 return FAIL;
3303
3304 *fname = buf->b_fname;
3305 *lnum = buflist_findlnum(buf);
3306
3307 return OK;
3308}
3309
3310/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003311 * Set the file name for "buf"' to "ffname_arg", short file name to
3312 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 * The file name with the full path is also remembered, for when :cd is used.
3314 * Returns FAIL for failure (file name already in use by other buffer)
3315 * OK otherwise.
3316 */
3317 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003318setfname(
3319 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003320 char_u *ffname_arg,
3321 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003322 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003324 char_u *ffname = ffname_arg;
3325 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003326 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003328 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329#endif
3330
3331 if (ffname == NULL || *ffname == NUL)
3332 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003333 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003334 if (buf->b_sfname != buf->b_ffname)
3335 VIM_CLEAR(buf->b_sfname);
3336 else
3337 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003338 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339#ifdef UNIX
3340 st.st_dev = (dev_T)-1;
3341#endif
3342 }
3343 else
3344 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003345 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3346 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 return FAIL;
3348
3349 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003350 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 * - if the buffer is loaded, fail
3352 * - if the buffer is not loaded, delete it from the list
3353 */
3354#ifdef UNIX
3355 if (mch_stat((char *)ffname, &st) < 0)
3356 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003357#endif
3358 if (!(buf->b_flags & BF_DUMMY))
3359#ifdef UNIX
3360 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003362 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363#endif
3364 if (obuf != NULL && obuf != buf)
3365 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003366 win_T *win;
3367 tabpage_T *tab;
3368 int in_use = FALSE;
3369
3370 // during startup a window may use a buffer that is not loaded yet
3371 FOR_ALL_TAB_WINDOWS(tab, win)
3372 if (win->w_buffer == obuf)
3373 in_use = TRUE;
3374
3375 // it's loaded or used in a window, fail
3376 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 {
3378 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003379 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 vim_free(ffname);
3381 return FAIL;
3382 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003383 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003384 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 }
3386 sfname = vim_strsave(sfname);
3387 if (ffname == NULL || sfname == NULL)
3388 {
3389 vim_free(sfname);
3390 vim_free(ffname);
3391 return FAIL;
3392 }
3393#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003394 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003396 if (buf->b_sfname != buf->b_ffname)
3397 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 buf->b_ffname = ffname;
3400 buf->b_sfname = sfname;
3401 }
3402 buf->b_fname = buf->b_sfname;
3403#ifdef UNIX
3404 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003405 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 else
3407 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003408 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 buf->b_dev = st.st_dev;
3410 buf->b_ino = st.st_ino;
3411 }
3412#endif
3413
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415
3416 buf_name_changed(buf);
3417 return OK;
3418}
3419
3420/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003421 * Crude way of changing the name of a buffer. Use with care!
3422 * The name should be relative to the current directory.
3423 */
3424 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003425buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003426{
3427 buf_T *buf;
3428
3429 buf = buflist_findnr(fnum);
3430 if (buf != NULL)
3431 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003432 if (buf->b_sfname != buf->b_ffname)
3433 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003434 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003435 buf->b_ffname = vim_strsave(name);
3436 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003437 // Allocate ffname and expand into full path. Also resolves .lnk
3438 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003439 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003440 buf->b_fname = buf->b_sfname;
3441 }
3442}
3443
3444/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 * Take care of what needs to be done when the name of buffer "buf" has
3446 * changed.
3447 */
3448 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003449buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450{
3451 /*
3452 * If the file name changed, also change the name of the swapfile
3453 */
3454 if (buf->b_ml.ml_mfp != NULL)
3455 ml_setname(buf);
3456
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003457#ifdef FEAT_TERMINAL
3458 if (buf->b_term != NULL)
3459 term_clear_status_text(buf->b_term);
3460#endif
3461
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003463 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464#ifdef FEAT_TITLE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003465 maketitle(); // set window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003467 status_redraw_all(); // status lines need to be redrawn
3468 fmarks_check_names(buf); // check named file marks
3469 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470}
3471
3472/*
3473 * set alternate file name for current window
3474 *
3475 * Used by do_one_cmd(), do_write() and do_ecmd().
3476 * Return the buffer.
3477 */
3478 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003479setaltfname(
3480 char_u *ffname,
3481 char_u *sfname,
3482 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483{
3484 buf_T *buf;
3485
Bram Moolenaarc667da52019-11-30 20:52:27 +01003486 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003488 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 curwin->w_alt_fnum = buf->b_fnum;
3490 return buf;
3491}
3492
3493/*
3494 * Get alternate file name for current window.
3495 * Return NULL if there isn't any, and give error message if requested.
3496 */
3497 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003498getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003499 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500{
3501 char_u *fname;
3502 linenr_T dummy;
3503
3504 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3505 {
3506 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003507 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 return NULL;
3509 }
3510 return fname;
3511}
3512
3513/*
3514 * Add a file name to the buflist and return its number.
3515 * Uses same flags as buflist_new(), except BLN_DUMMY.
3516 *
3517 * used by qf_init(), main() and doarglist()
3518 */
3519 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003520buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521{
3522 buf_T *buf;
3523
3524 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3525 if (buf != NULL)
3526 return buf->b_fnum;
3527 return 0;
3528}
3529
3530#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3531/*
3532 * Adjust slashes in file names. Called after 'shellslash' was set.
3533 */
3534 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003535buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536{
3537 buf_T *bp;
3538
Bram Moolenaar29323592016-07-24 22:04:11 +02003539 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 {
3541 if (bp->b_ffname != NULL)
3542 slash_adjust(bp->b_ffname);
3543 if (bp->b_sfname != NULL)
3544 slash_adjust(bp->b_sfname);
3545 }
3546}
3547#endif
3548
3549/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003550 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 * Also save the local window option values.
3552 */
3553 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003554buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003556 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557}
3558
3559/*
3560 * Return TRUE if 'ffname' is not the same file as current file.
3561 * Fname must have a full path (expanded by mch_FullName()).
3562 */
3563 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003564otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565{
3566 return otherfile_buf(curbuf, ffname
3567#ifdef UNIX
3568 , NULL
3569#endif
3570 );
3571}
3572
3573 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003574otherfile_buf(
3575 buf_T *buf,
3576 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003578 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003580 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003582 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3584 return TRUE;
3585 if (fnamecmp(ffname, buf->b_ffname) == 0)
3586 return FALSE;
3587#ifdef UNIX
3588 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003589 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
Bram Moolenaarc667da52019-11-30 20:52:27 +01003591 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 if (stp == NULL)
3593 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003594 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 st.st_dev = (dev_T)-1;
3596 stp = &st;
3597 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003598 // Use dev/ino to check if the files are the same, even when the names
3599 // are different (possible with links). Still need to compare the
3600 // name above, for when the file doesn't exist yet.
3601 // Problem: The dev/ino changes when a file is deleted (and created
3602 // again) and remains the same when renamed/moved. We don't want to
3603 // mch_stat() each buffer each time, that would be too slow. Get the
3604 // dev/ino again when they appear to match, but not when they appear
3605 // to be different: Could skip a buffer when it's actually the same
3606 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 if (buf_same_ino(buf, stp))
3608 {
3609 buf_setino(buf);
3610 if (buf_same_ino(buf, stp))
3611 return FALSE;
3612 }
3613 }
3614#endif
3615 return TRUE;
3616}
3617
3618#if defined(UNIX) || defined(PROTO)
3619/*
3620 * Set inode and device number for a buffer.
3621 * Must always be called when b_fname is changed!.
3622 */
3623 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003624buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003626 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627
3628 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3629 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003630 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 buf->b_dev = st.st_dev;
3632 buf->b_ino = st.st_ino;
3633 }
3634 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003635 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636}
3637
3638/*
3639 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3640 */
3641 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003642buf_same_ino(
3643 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003644 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003646 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 && stp->st_dev == buf->b_dev
3648 && stp->st_ino == buf->b_ino);
3649}
3650#endif
3651
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003652/*
3653 * Print info about the current buffer.
3654 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003656fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003657 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003658 int shorthelp,
3659 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660{
3661 char_u *name;
3662 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003663 char *p;
3664 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003665 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003667 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 if (buffer == NULL)
3669 return;
3670
Bram Moolenaarc667da52019-11-30 20:52:27 +01003671 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003673 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 p = buffer + STRLEN(buffer);
3675 }
3676 else
3677 p = buffer;
3678
3679 *p++ = '"';
3680 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003681 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 else
3683 {
3684 if (!fullname && curbuf->b_fname != NULL)
3685 name = curbuf->b_fname;
3686 else
3687 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003688 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 (int)(IOSIZE - (p - buffer)), TRUE);
3690 }
3691
Bram Moolenaar32526b32019-01-19 17:43:09 +01003692 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 curbufIsChanged() ? (shortmess(SHM_MOD)
3694 ? " [+]" : _(" [Modified]")) : " ",
3695 (curbuf->b_flags & BF_NOTEDITED)
3696#ifdef FEAT_QUICKFIX
3697 && !bt_dontwrite(curbuf)
3698#endif
3699 ? _("[Not edited]") : "",
3700 (curbuf->b_flags & BF_NEW)
3701#ifdef FEAT_QUICKFIX
3702 && !bt_dontwrite(curbuf)
3703#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003704 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003706 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 : _("[readonly]")) : "",
3708 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3709 || curbuf->b_p_ro) ?
3710 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003711 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3712 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 if (curwin->w_cursor.lnum > 1000000L)
3714 n = (int)(((long)curwin->w_cursor.lnum) /
3715 ((long)curbuf->b_ml.ml_line_count / 100L));
3716 else
3717 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3718 (long)curbuf->b_ml.ml_line_count);
3719 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003720 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721#ifdef FEAT_CMDL_INFO
3722 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003723 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003724 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003725 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3726 curbuf->b_ml.ml_line_count),
3727 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728#endif
3729 else
3730 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003731 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 _("line %ld of %ld --%d%%-- col "),
3733 (long)curwin->w_cursor.lnum,
3734 (long)curbuf->b_ml.ml_line_count,
3735 n);
3736 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003737 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003738 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3740 }
3741
Bram Moolenaar32526b32019-01-19 17:43:09 +01003742 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3743 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744
3745 if (dont_truncate)
3746 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003747 // Temporarily set msg_scroll to avoid the message being truncated.
3748 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 msg_start();
3750 n = msg_scroll;
3751 msg_scroll = TRUE;
3752 msg(buffer);
3753 msg_scroll = n;
3754 }
3755 else
3756 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003757 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003759 // Need to repeat the message after redrawing when:
3760 // - When restart_edit is set (otherwise there will be a delay
3761 // before redrawing).
3762 // - When the screen was scrolled but there is no wait-return
3763 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003764 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 }
3766
3767 vim_free(buffer);
3768}
3769
3770 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003771col_print(
3772 char_u *buf,
3773 size_t buflen,
3774 int col,
3775 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776{
3777 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003778 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003780 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781}
3782
3783#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784static char_u *lasttitle = NULL;
3785static char_u *lasticon = NULL;
3786
Bram Moolenaar84a93082018-06-16 22:58:15 +02003787/*
3788 * Put the file name in the title bar and icon of the window.
3789 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003791maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792{
3793 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003794 char_u *title_str = NULL;
3795 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 int maxlen = 0;
3797 int len;
3798 int mustset;
3799 char_u buf[IOSIZE];
3800 int off;
3801
3802 if (!redrawing())
3803 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003804 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 need_maketitle = TRUE;
3806 return;
3807 }
3808
3809 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003810 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003811 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812
3813 if (p_title)
3814 {
3815 if (p_titlelen > 0)
3816 {
3817 maxlen = p_titlelen * Columns / 100;
3818 if (maxlen < 10)
3819 maxlen = 10;
3820 }
3821
Bram Moolenaar84a93082018-06-16 22:58:15 +02003822 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 if (*p_titlestring != NUL)
3824 {
3825#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003826 if (stl_syntax & STL_IN_TITLE)
3827 {
3828 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003829 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003830
3831# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003832 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003833# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003834 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003835 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003836 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003837 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003838 set_string_option_direct((char_u *)"titlestring", -1,
3839 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 else
3842#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003843 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 }
3845 else
3846 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003847 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848
Bram Moolenaar2c666692012-09-05 13:30:40 +02003849#define SPACE_FOR_FNAME (IOSIZE - 100)
3850#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003851#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003853 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003854#ifdef FEAT_TERMINAL
3855 else if (curbuf->b_term != NULL)
3856 {
3857 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3858 SPACE_FOR_FNAME);
3859 }
3860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 else
3862 {
3863 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003864 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 }
3867
Bram Moolenaar21554412017-07-24 21:44:43 +02003868#ifdef FEAT_TERMINAL
3869 if (curbuf->b_term == NULL)
3870#endif
3871 switch (bufIsChanged(curbuf)
3872 + (curbuf->b_p_ro * 2)
3873 + (!curbuf->b_p_ma * 4))
3874 {
3875 case 1: STRCAT(buf, " +"); break;
3876 case 2: STRCAT(buf, " ="); break;
3877 case 3: STRCAT(buf, " =+"); break;
3878 case 4:
3879 case 6: STRCAT(buf, " -"); break;
3880 case 5:
3881 case 7: STRCAT(buf, " -+"); break;
3882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
Bram Moolenaar21554412017-07-24 21:44:43 +02003884 if (curbuf->b_fname != NULL
3885#ifdef FEAT_TERMINAL
3886 && curbuf->b_term == NULL
3887#endif
3888 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003890 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 off = (int)STRLEN(buf);
3892 buf[off++] = ' ';
3893 buf[off++] = '(';
3894 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003895 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003897 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 if (isalpha(buf[off]) && buf[off + 1] == ':')
3899 off += 2;
3900#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003901 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003902 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003904 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003905 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003906 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003907 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003908 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003911
Bram Moolenaarc667da52019-11-30 20:52:27 +01003912 // Translate unprintable chars and concatenate. Keep some
3913 // room for the server name. When there is no room (very long
3914 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003915 if (off < SPACE_FOR_DIR)
3916 {
3917 p = transstr(buf + off);
3918 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3919 vim_free(p);
3920 }
3921 else
3922 {
3923 vim_strncpy(buf + off, (char_u *)"...",
3924 (size_t)(SPACE_FOR_ARGNR - off));
3925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 STRCAT(buf, ")");
3927 }
3928
Bram Moolenaar2c666692012-09-05 13:30:40 +02003929 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930
3931#if defined(FEAT_CLIENTSERVER)
3932 if (serverName != NULL)
3933 {
3934 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003935 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 }
3937 else
3938#endif
3939 STRCAT(buf, " - VIM");
3940
3941 if (maxlen > 0)
3942 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003943 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003944 if (vim_strsize(buf) > maxlen)
3945 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 }
3947 }
3948 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003949 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950
3951 if (p_icon)
3952 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003953 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 if (*p_iconstring != NUL)
3955 {
3956#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003957 if (stl_syntax & STL_IN_ICON)
3958 {
3959 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003960 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003961
3962# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003963 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003964# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003965 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003966 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003967 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003968 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003969 set_string_option_direct((char_u *)"iconstring", -1,
3970 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 else
3973#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003974 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 }
3976 else
3977 {
3978 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003979 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003980 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02003981 p = gettail(curbuf->b_ffname);
3982 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003983 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003984 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 if (len > 100)
3986 {
3987 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003989 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003990 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003992 STRCPY(icon_str, p);
3993 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 }
3995 }
3996
Bram Moolenaar84a93082018-06-16 22:58:15 +02003997 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998
3999 if (mustset)
4000 resettitle();
4001}
4002
4003/*
4004 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4005 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004006 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 */
4008 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004009value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010{
4011 if ((str == NULL) != (*last == NULL)
4012 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4013 {
4014 vim_free(*last);
4015 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004016 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004018 mch_restore_title(
4019 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004022 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004024 return TRUE;
4025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 }
4027 return FALSE;
4028}
4029
4030/*
4031 * Put current window title back (used after calling a shell)
4032 */
4033 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004034resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035{
4036 mch_settitle(lasttitle, lasticon);
4037}
Bram Moolenaarea408852005-06-25 22:49:46 +00004038
4039# if defined(EXITFREE) || defined(PROTO)
4040 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004041free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004042{
4043 vim_free(lasttitle);
4044 vim_free(lasticon);
4045}
4046# endif
4047
Bram Moolenaarc667da52019-11-30 20:52:27 +01004048#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004050#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004051
4052/*
4053 * Used for building in the status line.
4054 */
4055typedef struct
4056{
4057 char_u *stl_start;
4058 int stl_minwid;
4059 int stl_maxwid;
4060 enum {
4061 Normal,
4062 Empty,
4063 Group,
4064 Middle,
4065 Highlight,
4066 TabPage,
4067 Trunc
4068 } stl_type;
4069} stl_item_T;
4070
4071static size_t stl_items_len = 20; // Initial value, grows as needed.
4072static stl_item_T *stl_items = NULL;
4073static int *stl_groupitem = NULL;
4074static stl_hlrec_T *stl_hltab = NULL;
4075static stl_hlrec_T *stl_tabtab = NULL;
4076
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004078 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 * Return length of string in screen cells.
4080 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004081 * Normally works for window "wp", except when working for 'tabline' then it
4082 * is "curwin".
4083 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 * Items are drawn interspersed with the text that surrounds it
4085 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4086 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4087 *
4088 * If maxwidth is not zero, the string will be filled at any middle marker
4089 * or truncated if too long, fillchar is used for all whitespace.
4090 */
4091 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004092build_stl_str_hl(
4093 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004094 char_u *out, // buffer to write into != NameBuff
4095 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004096 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004097 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004098 int fillchar,
4099 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004100 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4101 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102{
Bram Moolenaar10772302019-01-20 18:25:54 +01004103 linenr_T lnum;
4104 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 char_u *p;
4106 char_u *s;
4107 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004108 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004110 win_T *save_curwin;
4111 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004112 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113#endif
4114 int empty_line;
4115 colnr_T virtcol;
4116 long l;
4117 long n;
4118 int prevchar_isflag;
4119 int prevchar_isitem;
4120 int itemisflag;
4121 int fillable;
4122 char_u *str;
4123 long num;
4124 int width;
4125 int itemcnt;
4126 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004127 int group_end_userhl;
4128 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004130#ifdef FEAT_EVAL
4131 int evaldepth;
4132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 int minwid;
4134 int maxwid;
4135 int zeropad;
4136 char_u base;
4137 char_u opt;
4138#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004139 char_u buf_tmp[TMPLEN];
4140 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004141 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004142 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004143 int save_must_redraw = must_redraw;
4144 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004145
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004146 if (stl_items == NULL)
4147 {
4148 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4149 stl_groupitem = ALLOC_MULT(int, stl_items_len);
4150 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4151 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4152 }
4153
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004154#ifdef FEAT_EVAL
4155 /*
4156 * When the format starts with "%!" then evaluate it as an expression and
4157 * use the result as the actual format string.
4158 */
4159 if (fmt[0] == '%' && fmt[1] == '!')
4160 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004161 typval_T tv;
4162
4163 tv.v_type = VAR_NUMBER;
4164 tv.vval.v_number = wp->w_id;
4165 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4166
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004167 usefmt = eval_to_string_safe(fmt + 2, use_sandbox);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004168 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004169 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004170
4171 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004172 }
4173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
4175 if (fillchar == 0)
4176 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004177
Bram Moolenaar10772302019-01-20 18:25:54 +01004178 // The cursor in windows other than the current one isn't always
4179 // up-to-date, esp. because of autocommands and timers.
4180 lnum = wp->w_cursor.lnum;
4181 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4182 {
4183 lnum = wp->w_buffer->b_ml.ml_line_count;
4184 wp->w_cursor.lnum = lnum;
4185 }
4186
4187 // Get line & check if empty (cursorpos will show "0-1"). Note that
4188 // p will become invalid when getting another buffer line.
4189 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004190 empty_line = (*p == NUL);
4191
Bram Moolenaar10772302019-01-20 18:25:54 +01004192 // Get the byte value now, in case we need it below. This is more efficient
4193 // than making a copy of the line.
4194 len = STRLEN(p);
4195 if (wp->w_cursor.col > (colnr_T)len)
4196 {
4197 // Line may have changed since checking the cursor column, or the lnum
4198 // was adjusted above.
4199 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004200 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004201 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004202 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004203 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004204 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205
4206 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004207#ifdef FEAT_EVAL
4208 evaldepth = 0;
4209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 p = out;
4211 curitem = 0;
4212 prevchar_isflag = TRUE;
4213 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004214 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004216 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004217 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004218 size_t new_len = stl_items_len * 3 / 2;
4219 stl_item_T *new_items;
4220 int *new_groupitem;
4221 stl_hlrec_T *new_hlrec;
4222
4223 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4224 if (new_items == NULL)
4225 break;
4226 stl_items = new_items;
4227 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4228 if (new_groupitem == NULL)
4229 break;
4230 stl_groupitem = new_groupitem;
4231 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len);
4232 if (new_hlrec == NULL)
4233 break;
4234 stl_hltab = new_hlrec;
4235 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len);
4236 if (new_hlrec == NULL)
4237 break;
4238 stl_tabtab = new_hlrec;
4239 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004240 }
4241
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 if (*s != NUL && *s != '%')
4243 prevchar_isflag = prevchar_isitem = FALSE;
4244
4245 /*
4246 * Handle up to the next '%' or the end.
4247 */
4248 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4249 *p++ = *s++;
4250 if (*s == NUL || p + 1 >= out + outlen)
4251 break;
4252
4253 /*
4254 * Handle one '%' item.
4255 */
4256 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004257 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004258 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 if (*s == '%')
4260 {
4261 if (p + 1 >= out + outlen)
4262 break;
4263 *p++ = *s++;
4264 prevchar_isflag = prevchar_isitem = FALSE;
4265 continue;
4266 }
4267 if (*s == STL_MIDDLEMARK)
4268 {
4269 s++;
4270 if (groupdepth > 0)
4271 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004272 stl_items[curitem].stl_type = Middle;
4273 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 continue;
4275 }
4276 if (*s == STL_TRUNCMARK)
4277 {
4278 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004279 stl_items[curitem].stl_type = Trunc;
4280 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 continue;
4282 }
4283 if (*s == ')')
4284 {
4285 s++;
4286 if (groupdepth < 1)
4287 continue;
4288 groupdepth--;
4289
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004290 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 *p = NUL;
4292 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004293 if (curitem > stl_groupitem[groupdepth] + 1
4294 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004296 // remove group if all items are empty and highlight group
4297 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004298 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004299 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004300 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004301 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004302 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004303 group_start_userhl = group_end_userhl =
4304 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004305 break;
4306 }
4307 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004308 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004309 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004310 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004312 if (stl_items[n].stl_type == Highlight)
4313 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004314 }
4315 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004317 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 p = t;
4319 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004320 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004321 {
4322 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004323 if (stl_items[n].stl_type == Highlight)
4324 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004325 // adjust the start position of TabPage to the next
4326 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004327 if (stl_items[n].stl_type == TabPage)
4328 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 }
4331 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004332 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004334 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 if (has_mbyte)
4336 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004337 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004339 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 {
4341 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004342 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 }
4344 }
4345 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004346 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4347 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348
4349 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004350 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004352
4353 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004354 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004355 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356
Bram Moolenaarc667da52019-11-30 20:52:27 +01004357 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004358 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004360 stl_items[l].stl_start -= n;
4361 if (stl_items[l].stl_start < t)
4362 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 }
4364 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004365 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004367 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004368 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 if (n < 0)
4370 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004371 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 n = 0 - n;
4373 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004374 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 }
4376 else
4377 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004378 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004379 l = (n - l) * MB_CHAR2LEN(fillchar);
4380 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004382 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004384 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4385 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004387 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 }
4389 }
4390 continue;
4391 }
4392 minwid = 0;
4393 maxwid = 9999;
4394 zeropad = FALSE;
4395 l = 1;
4396 if (*s == '0')
4397 {
4398 s++;
4399 zeropad = TRUE;
4400 }
4401 if (*s == '-')
4402 {
4403 s++;
4404 l = -1;
4405 }
4406 if (VIM_ISDIGIT(*s))
4407 {
4408 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004409 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 minwid = 0;
4411 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004412 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004414 stl_items[curitem].stl_type = Highlight;
4415 stl_items[curitem].stl_start = p;
4416 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 s++;
4418 curitem++;
4419 continue;
4420 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004421 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4422 {
4423 if (*s == STL_TABCLOSENR)
4424 {
4425 if (minwid == 0)
4426 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004427 // %X ends the close label, go back to the previously
4428 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004429 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004430 if (stl_items[n].stl_type == TabPage
4431 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004432 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004433 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004434 break;
4435 }
4436 }
4437 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004438 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004439 minwid = - minwid;
4440 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004441 stl_items[curitem].stl_type = TabPage;
4442 stl_items[curitem].stl_start = p;
4443 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004444 s++;
4445 curitem++;
4446 continue;
4447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 if (*s == '.')
4449 {
4450 s++;
4451 if (VIM_ISDIGIT(*s))
4452 {
4453 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004454 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 maxwid = 50;
4456 }
4457 }
4458 minwid = (minwid > 50 ? 50 : minwid) * l;
4459 if (*s == '(')
4460 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004461 stl_groupitem[groupdepth++] = curitem;
4462 stl_items[curitem].stl_type = Group;
4463 stl_items[curitem].stl_start = p;
4464 stl_items[curitem].stl_minwid = minwid;
4465 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 s++;
4467 curitem++;
4468 continue;
4469 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004470#ifdef FEAT_EVAL
4471 // Denotes end of expanded %{} block
4472 if (*s == '}' && evaldepth > 0)
4473 {
4474 s++;
4475 evaldepth--;
4476 continue;
4477 }
4478#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 if (vim_strchr(STL_ALL, *s) == NULL)
4480 {
4481 s++;
4482 continue;
4483 }
4484 opt = *s++;
4485
Bram Moolenaarc667da52019-11-30 20:52:27 +01004486 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 base = 'D';
4488 itemisflag = FALSE;
4489 fillable = TRUE;
4490 num = -1;
4491 str = NULL;
4492 switch (opt)
4493 {
4494 case STL_FILEPATH:
4495 case STL_FULLPATH:
4496 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004497 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004499 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 else
4501 {
4502 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004503 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4505 }
4506 trans_characters(NameBuff, MAXPATHL);
4507 if (opt != STL_FILENAME)
4508 str = NameBuff;
4509 else
4510 str = gettail(NameBuff);
4511 break;
4512
Bram Moolenaarc667da52019-11-30 20:52:27 +01004513 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004514 {
4515#ifdef FEAT_EVAL
4516 char_u *block_start = s - 1;
4517#endif
4518 int reevaluate = (*s == '%');
4519
4520 if (reevaluate)
4521 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 itemisflag = TRUE;
4523 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004524 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4525 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004527 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 break;
4529 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004530 if (reevaluate)
4531 p[-1] = 0; // remove the % at the end of %{% expr %}
4532 else
4533 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004536 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4537 "%d", curbuf->b_fnum);
4538 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4539 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4540 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004542 save_curbuf = curbuf;
4543 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004544 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 curwin = wp;
4546 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004547 // Visual mode is only valid in the current window.
4548 if (curwin != save_curwin)
4549 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004551 str = eval_to_string_safe(p, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004553 curwin = save_curwin;
4554 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004555 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004556 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004557 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558
4559 if (str != NULL && *str != 0)
4560 {
4561 if (*skipdigits(str) == NUL)
4562 {
4563 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004564 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 itemisflag = FALSE;
4566 }
4567 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004568
4569 // If the output of the expression needs to be evaluated
4570 // replace the %{} block with the result of evaluation
4571 if (reevaluate && str != NULL && *str != 0
4572 && strchr((const char *)str, '%') != NULL
4573 && evaldepth < MAX_STL_EVAL_DEPTH)
4574 {
4575 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4576 size_t str_length = strlen((const char *)str);
4577 size_t fmt_length = strlen((const char *)s);
4578 size_t new_fmt_len = parsed_usefmt
4579 + str_length + fmt_length + 3;
4580 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4581 char_u *new_fmt_p = new_fmt;
4582
4583 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4584 + parsed_usefmt;
4585 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4586 + str_length;
4587 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4588 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4589 + fmt_length;
4590 *new_fmt_p = 0;
4591 new_fmt_p = NULL;
4592
4593 if (usefmt != fmt)
4594 vim_free(usefmt);
4595 VIM_CLEAR(str);
4596 usefmt = new_fmt;
4597 s = usefmt + parsed_usefmt;
4598 evaldepth++;
4599 continue;
4600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601#endif
4602 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 case STL_LINE:
4605 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4606 ? 0L : (long)(wp->w_cursor.lnum);
4607 break;
4608
4609 case STL_NUMLINES:
4610 num = wp->w_buffer->b_ml.ml_line_count;
4611 break;
4612
4613 case STL_COLUMN:
4614 num = !(State & INSERT) && empty_line
4615 ? 0 : (int)wp->w_cursor.col + 1;
4616 break;
4617
4618 case STL_VIRTCOL:
4619 case STL_VIRTCOL_ALT:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004620 // In list mode virtcol needs to be recomputed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 virtcol = wp->w_virtcol;
Bram Moolenaareed9d462021-02-15 20:38:25 +01004622 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 {
4624 wp->w_p_list = FALSE;
4625 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4626 wp->w_p_list = TRUE;
4627 }
4628 ++virtcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004629 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 if (opt == STL_VIRTCOL_ALT
4631 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4632 ? 0 : (int)wp->w_cursor.col + 1)))
4633 break;
4634 num = (long)virtcol;
4635 break;
4636
4637 case STL_PERCENTAGE:
4638 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4639 (long)wp->w_buffer->b_ml.ml_line_count);
4640 break;
4641
4642 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004643 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004644 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 break;
4646
4647 case STL_ARGLISTSTAT:
4648 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004649 buf_tmp[0] = 0;
4650 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4651 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 break;
4653
4654 case STL_KEYMAP:
4655 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004656 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4657 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 break;
4659 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004660#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004661 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662#else
4663 num = 0;
4664#endif
4665 break;
4666
4667 case STL_BUFNO:
4668 num = wp->w_buffer->b_fnum;
4669 break;
4670
4671 case STL_OFFSET_X:
4672 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004673 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 case STL_OFFSET:
4675#ifdef FEAT_BYTEOFF
4676 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4677 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4678 0L : l + 1 + (!(State & INSERT) && empty_line ?
4679 0 : (int)wp->w_cursor.col);
4680#endif
4681 break;
4682
4683 case STL_BYTEVAL_X:
4684 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004685 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004687 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 if (num == NL)
4689 num = 0;
4690 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4691 num = NL;
4692 break;
4693
4694 case STL_ROFLAG:
4695 case STL_ROFLAG_ALT:
4696 itemisflag = TRUE;
4697 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004698 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 break;
4700
4701 case STL_HELPFLAG:
4702 case STL_HELPFLAG_ALT:
4703 itemisflag = TRUE;
4704 if (wp->w_buffer->b_help)
4705 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004706 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 break;
4708
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 case STL_FILETYPE:
4710 if (*wp->w_buffer->b_p_ft != NUL
4711 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4712 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004713 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004714 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004715 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 }
4717 break;
4718
4719 case STL_FILETYPE_ALT:
4720 itemisflag = TRUE;
4721 if (*wp->w_buffer->b_p_ft != NUL
4722 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4723 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004724 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004725 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004726 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004728 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 }
4730 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731
Bram Moolenaar4033c552017-09-16 20:54:51 +02004732#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 case STL_PREVIEWFLAG:
4734 case STL_PREVIEWFLAG_ALT:
4735 itemisflag = TRUE;
4736 if (wp->w_p_pvw)
4737 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4738 : _("[Preview]"));
4739 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004740
4741 case STL_QUICKFIX:
4742 if (bt_quickfix(wp->w_buffer))
4743 str = (char_u *)(wp->w_llist_ref
4744 ? _(msg_loclist)
4745 : _(msg_qflist));
4746 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747#endif
4748
4749 case STL_MODIFIED:
4750 case STL_MODIFIED_ALT:
4751 itemisflag = TRUE;
4752 switch ((opt == STL_MODIFIED_ALT)
4753 + bufIsChanged(wp->w_buffer) * 2
4754 + (!wp->w_buffer->b_p_ma) * 4)
4755 {
4756 case 2: str = (char_u *)"[+]"; break;
4757 case 3: str = (char_u *)",+"; break;
4758 case 4: str = (char_u *)"[-]"; break;
4759 case 5: str = (char_u *)",-"; break;
4760 case 6: str = (char_u *)"[+-]"; break;
4761 case 7: str = (char_u *)",+-"; break;
4762 }
4763 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004764
4765 case STL_HIGHLIGHT:
4766 t = s;
4767 while (*s != '#' && *s != NUL)
4768 ++s;
4769 if (*s == '#')
4770 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004771 stl_items[curitem].stl_type = Highlight;
4772 stl_items[curitem].stl_start = p;
4773 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004774 curitem++;
4775 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004776 if (*s != NUL)
4777 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004778 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 }
4780
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004781 stl_items[curitem].stl_start = p;
4782 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 if (str != NULL && *str)
4784 {
4785 t = str;
4786 if (itemisflag)
4787 {
4788 if ((t[0] && t[1])
4789 && ((!prevchar_isitem && *t == ',')
4790 || (prevchar_isflag && *t == ' ')))
4791 t++;
4792 prevchar_isflag = TRUE;
4793 }
4794 l = vim_strsize(t);
4795 if (l > 0)
4796 prevchar_isitem = TRUE;
4797 if (l > maxwid)
4798 {
4799 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 if (has_mbyte)
4801 {
4802 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004803 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 }
4805 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 l -= byte2cells(*t++);
4807 if (p + 1 >= out + outlen)
4808 break;
4809 *p++ = '<';
4810 }
4811 if (minwid > 0)
4812 {
4813 for (; l < minwid && p + 1 < out + outlen; l++)
4814 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004815 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4817 *p++ = ' ';
4818 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004819 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 }
4821 minwid = 0;
4822 }
4823 else
4824 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004825 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004827 // Change a space by fillchar, unless fillchar is '-' and a
4828 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004829 if (fillable && *t == ' '
4830 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4831 MB_CHAR2BYTES(fillchar, p);
4832 else
4833 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 }
4835 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004836 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 }
4838 else if (num >= 0)
4839 {
4840 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4841 char_u nstr[20];
4842
4843 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004844 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 prevchar_isitem = TRUE;
4846 t = nstr;
4847 if (opt == STL_VIRTCOL_ALT)
4848 {
4849 *t++ = '-';
4850 minwid--;
4851 }
4852 *t++ = '%';
4853 if (zeropad)
4854 *t++ = '0';
4855 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004856 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 *t = 0;
4858
4859 for (n = num, l = 1; n >= nbase; n /= nbase)
4860 l++;
4861 if (opt == STL_VIRTCOL_ALT)
4862 l++;
4863 if (l > maxwid)
4864 {
4865 l += 2;
4866 n = l - maxwid;
4867 while (l-- > maxwid)
4868 num /= nbase;
4869 *t++ = '>';
4870 *t++ = '%';
4871 *t = t[-3];
4872 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004873 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4874 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 }
4876 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004877 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4878 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 p += STRLEN(p);
4880 }
4881 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004882 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883
4884 if (opt == STL_VIM_EXPR)
4885 vim_free(str);
4886
4887 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004888 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 curitem++;
4890 }
4891 *p = NUL;
4892 itemcnt = curitem;
4893
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004894#ifdef FEAT_EVAL
4895 if (usefmt != fmt)
4896 vim_free(usefmt);
4897#endif
4898
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 width = vim_strsize(out);
4900 if (maxwidth > 0 && width > maxwidth)
4901 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004902 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 l = 0;
4904 if (itemcnt == 0)
4905 s = out;
4906 else
4907 {
4908 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004909 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004911 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004912 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 break;
4914 }
4915 if (l == itemcnt)
4916 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004917 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004918 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 l = 0;
4920 }
4921 }
4922
4923 if (width - vim_strsize(s) >= maxwidth)
4924 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004925 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 if (has_mbyte)
4927 {
4928 s = out;
4929 width = 0;
4930 for (;;)
4931 {
4932 width += ptr2cells(s);
4933 if (width >= maxwidth)
4934 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004935 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01004937 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004939 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 }
4941 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 s = out + maxwidth - 1;
4943 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004944 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 break;
4946 itemcnt = l;
4947 *s++ = '>';
4948 *s = 0;
4949 }
4950 else
4951 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 if (has_mbyte)
4953 {
4954 n = 0;
4955 while (width >= maxwidth)
4956 {
4957 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004958 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 }
4960 }
4961 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 n = width - maxwidth + 1;
4963 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004964 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 *s = '<';
4966
Bram Moolenaarc667da52019-11-30 20:52:27 +01004967 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 while (++width < maxwidth)
4969 {
4970 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01004971 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 *s = NUL;
4973 }
4974
Bram Moolenaarc667da52019-11-30 20:52:27 +01004975 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 for (; l < itemcnt; l++)
4977 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004978 if (stl_items[l].stl_start - n >= s)
4979 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004981 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 }
4983 }
4984 width = maxwidth;
4985 }
4986 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4987 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004988 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004990 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 break;
4992 if (l < itemcnt)
4993 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01004994 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
4995 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004996 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01004997 for (s = stl_items[l].stl_start; s < p;)
4998 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01005000 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 width = maxwidth;
5002 }
5003 }
5004
Bram Moolenaarc667da52019-11-30 20:52:27 +01005005 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005006 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005008 *hltab = stl_hltab;
5009 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 for (l = 0; l < itemcnt; l++)
5011 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005012 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005014 sp->start = stl_items[l].stl_start;
5015 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005016 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 }
5018 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005019 sp->start = NULL;
5020 sp->userhl = 0;
5021 }
5022
Bram Moolenaarc667da52019-11-30 20:52:27 +01005023 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005024 if (tabtab != NULL)
5025 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005026 *tabtab = stl_tabtab;
5027 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005028 for (l = 0; l < itemcnt; l++)
5029 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005030 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005031 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005032 sp->start = stl_items[l].stl_start;
5033 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005034 sp++;
5035 }
5036 }
5037 sp->start = NULL;
5038 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 }
5040
Bram Moolenaarc667da52019-11-30 20:52:27 +01005041 // When inside update_screen we do not want redrawing a stausline, ruler,
5042 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005043 if (updating_screen)
5044 {
5045 must_redraw = save_must_redraw;
5046 curwin->w_redr_type = save_redr_type;
5047 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005048
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 return width;
5050}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005051#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005053#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5054 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005056 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5057 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 */
5059 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005060get_rel_pos(
5061 win_T *wp,
5062 char_u *buf,
5063 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005065 long above; // number of lines above window
5066 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067
Bram Moolenaarc667da52019-11-30 20:52:27 +01005068 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005069 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 above = wp->w_topline - 1;
5071#ifdef FEAT_DIFF
5072 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005073 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005074 above = 0; // All buffer lines are displayed and there is an
5075 // indication of filler lines, that can be considered
5076 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077#endif
5078 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5079 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005080 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5081 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005083 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005085 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 ? (int)(above / ((above + below) / 100L))
5087 : (int)(above * 100L / (above + below)));
5088}
5089#endif
5090
5091/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005092 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 * Return TRUE if it was appended.
5094 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005095 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005096append_arg_number(
5097 win_T *wp,
5098 char_u *buf,
5099 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005100 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101{
5102 char_u *p;
5103
Bram Moolenaarc667da52019-11-30 20:52:27 +01005104 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 return FALSE;
5106
Bram Moolenaarc667da52019-11-30 20:52:27 +01005107 p = buf + STRLEN(buf); // go to the end of the buffer
5108 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 return FALSE;
5110 *p++ = ' ';
5111 *p++ = '(';
5112 if (add_file)
5113 {
5114 STRCPY(p, "file ");
5115 p += 5;
5116 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005117 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5118 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5120 return TRUE;
5121}
5122
5123/*
5124 * If fname is not a full path, make it a full path.
5125 * Returns pointer to allocated memory (NULL for failure).
5126 */
5127 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005128fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129{
5130 /*
5131 * Force expanding the path always for Unix, because symbolic links may
5132 * mess up the full path name, even though it starts with a '/'.
5133 * Also expand when there is ".." in the file name, try to remove it,
5134 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005135 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 * For MS-Windows also expand names like "longna~1" to "longname".
5137 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005138#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 return FullName_save(fname, TRUE);
5140#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005141 if (!vim_isAbsName(fname)
5142 || strstr((char *)fname, "..") != NULL
5143 || strstr((char *)fname, "//") != NULL
5144# ifdef BACKSLASH_IN_FILENAME
5145 || strstr((char *)fname, "\\\\") != NULL
5146# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005147# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005149# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 )
5151 return FullName_save(fname, FALSE);
5152
5153 fname = vim_strsave(fname);
5154
Bram Moolenaar9b942202007-10-03 12:31:33 +00005155# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005156 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005157 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005158# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159
5160 return fname;
5161#endif
5162}
5163
5164/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005165 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5166 * "*ffname" becomes a pointer to allocated memory (or NULL).
5167 * When resolving a link both "*sfname" and "*ffname" will point to the same
5168 * allocated memory.
5169 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005170 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005173fname_expand(
5174 buf_T *buf UNUSED,
5175 char_u **ffname,
5176 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005178 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005180 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005182 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183
5184#ifdef FEAT_SHORTCUT
5185 if (!buf->b_p_bin)
5186 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005187 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005189 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005190 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005191 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 {
5193 vim_free(*ffname);
5194 *ffname = rfname;
5195 *sfname = rfname;
5196 }
5197 }
5198#endif
5199}
5200
5201/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 * Open a window for a number of buffers.
5203 */
5204 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005205ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206{
5207 buf_T *buf;
5208 win_T *wp, *wpnext;
5209 int split_ret = OK;
5210 int p_ea_save;
5211 int open_wins = 0;
5212 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005213 int count; // Maximum number of windows to open.
5214 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005215 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005216 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217
Bram Moolenaarc667da52019-11-30 20:52:27 +01005218 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 count = 9999;
5220 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005221 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5223 all = FALSE;
5224 else
5225 all = TRUE;
5226
5227 setpcmark();
5228
5229#ifdef FEAT_GUI
5230 need_mouse_correct = TRUE;
5231#endif
5232
5233 /*
5234 * Close superfluous windows (two windows for the same buffer).
5235 * Also close windows that are not full-width.
5236 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005237 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005238 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005239 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005241 tpnext = curtab->tp_next;
5242 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005244 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005245 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1004402020-10-24 20:49:43 +02005246 || ((cmdmod.cmod_split & WSP_VERT)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005247 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005248 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005249 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005250 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005251 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005252 {
5253 win_close(wp, FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01005254 wpnext = firstwin; // just in case an autocommand does
5255 // something strange with windows
5256 tpnext = first_tabpage; // start all over...
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005257 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005258 }
5259 else
5260 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005262
Bram Moolenaarc667da52019-11-30 20:52:27 +01005263 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005264 if (had_tab == 0 || tpnext == NULL)
5265 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005266 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 }
5268
5269 /*
5270 * Go through the buffer list. When a buffer doesn't have a window yet,
5271 * open one. Otherwise move the window to the right position.
5272 * Watch out for autocommands that delete buffers or windows!
5273 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005274 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5279 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005280 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5282 continue;
5283
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005284 if (had_tab != 0)
5285 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005286 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005287 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005288 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005289 else
5290 wp = NULL;
5291 }
5292 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005293 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005294 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005295 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005296 if (wp->w_buffer == buf)
5297 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005298 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005299 if (wp != NULL)
5300 win_move_after(wp, curwin);
5301 }
5302
5303 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005305 bufref_T bufref;
5306
5307 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005308
Bram Moolenaarc667da52019-11-30 20:52:27 +01005309 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005311 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5313 ++open_wins;
5314 p_ea = p_ea_save;
5315 if (split_ret == FAIL)
5316 continue;
5317
Bram Moolenaarc667da52019-11-30 20:52:27 +01005318 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005321 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005323 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 break;
5326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 if (swap_exists_action == SEA_QUIT)
5328 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005329#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005330 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005331
Bram Moolenaarc667da52019-11-30 20:52:27 +01005332 // Reset the error/interrupt/exception state here so that
5333 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005334 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005335#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005336
Bram Moolenaarc667da52019-11-30 20:52:27 +01005337 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 win_close(curwin, TRUE);
5339 --open_wins;
5340 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005341 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005342
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005343#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005344 // Restore the error/interrupt/exception state if not
5345 // discarded by a new aborting error, interrupt, or uncaught
5346 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005347 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 }
5350 else
5351 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 }
5353
5354 ui_breakcheck();
5355 if (got_int)
5356 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005357 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 break;
5359 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005360#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005361 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005362 if (aborting())
5363 break;
5364#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005365 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005366 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005367 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005370 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372
5373 /*
5374 * Close superfluous windows.
5375 */
5376 for (wp = lastwin; open_wins > count; )
5377 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005378 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 if (!win_valid(wp))
5381 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005382 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 wp = lastwin;
5384 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005385 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005387 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 --open_wins;
5389 wp = lastwin;
5390 }
5391 else
5392 {
5393 wp = wp->w_prev;
5394 if (wp == NULL)
5395 break;
5396 }
5397 }
5398}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005401static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005402
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403/*
5404 * do_modelines() - process mode lines for the current file
5405 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005406 * "flags" can be:
5407 * OPT_WINONLY only set options local to window
5408 * OPT_NOWIN don't set options local to window
5409 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 * Returns immediately if the "ml" option isn't set.
5411 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005413do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005415 linenr_T lnum;
5416 int nmlines;
5417 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418
5419 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5420 return;
5421
Bram Moolenaarc667da52019-11-30 20:52:27 +01005422 // Disallow recursive entry here. Can happen when executing a modeline
5423 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 if (entered)
5425 return;
5426
5427 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005428 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005430 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 nmlines = 0;
5432
Hu Jialun9dcd3492021-08-28 20:42:50 +02005433 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005435 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 nmlines = 0;
5437 --entered;
5438}
5439
Bram Moolenaarc667da52019-11-30 20:52:27 +01005440#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441
5442/*
5443 * chk_modeline() - check a single line for a mode string
5444 * Return FAIL if an error encountered.
5445 */
5446 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005447chk_modeline(
5448 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005449 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450{
5451 char_u *s;
5452 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005453 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 int prev;
5455 int vers;
5456 int end;
5457 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005458 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005459
Bram Moolenaare31ee862020-01-07 20:59:34 +01005460 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461
5462 prev = -1;
5463 for (s = ml_get(lnum); *s != NUL; ++s)
5464 {
5465 if (prev == -1 || vim_isspace(prev))
5466 {
5467 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5468 || STRNCMP(s, "vi:", (size_t)3) == 0)
5469 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005470 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005471 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 {
5473 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5474 e = s + 4;
5475 else
5476 e = s + 3;
5477 vers = getdigits(&e);
5478 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005479 && (s[0] != 'V'
5480 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 && (s[3] == ':'
5482 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5483 || (VIM_VERSION_100 < vers && s[3] == '<')
5484 || (VIM_VERSION_100 > vers && s[3] == '>')
5485 || (VIM_VERSION_100 == vers && s[3] == '=')))
5486 break;
5487 }
5488 }
5489 prev = *s;
5490 }
5491
5492 if (*s)
5493 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005494 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 ++s;
5496 while (s[-1] != ':');
5497
Bram Moolenaarc667da52019-11-30 20:52:27 +01005498 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (linecopy == NULL)
5500 return FAIL;
5501
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005502 // prepare for emsg()
5503 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005504 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505
5506 end = FALSE;
5507 while (end == FALSE)
5508 {
5509 s = skipwhite(s);
5510 if (*s == NUL)
5511 break;
5512
5513 /*
5514 * Find end of set command: ':' or end of line.
5515 * Skip over "\:", replacing it with ":".
5516 */
5517 for (e = s; *e != ':' && *e != NUL; ++e)
5518 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005519 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 if (*e == NUL)
5521 end = TRUE;
5522
5523 /*
5524 * If there is a "set" command, require a terminating ':' and
5525 * ignore the stuff after the ':'.
5526 * "vi:set opt opt opt: foo" -- foo not interpreted
5527 * "vi:opt opt opt: foo" -- foo interpreted
5528 * Accept "se" for compatibility with Elvis.
5529 */
5530 if (STRNCMP(s, "set ", (size_t)4) == 0
5531 || STRNCMP(s, "se ", (size_t)3) == 0)
5532 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005533 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 break;
5535 end = TRUE;
5536 s = vim_strchr(s, ' ') + 1;
5537 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005538 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539
Bram Moolenaarc667da52019-11-30 20:52:27 +01005540 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005542 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005543
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005544 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005545 current_sctx.sc_version = 1;
5546#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005547 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005548 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005549 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005551
Bram Moolenaar5958f952018-11-20 04:25:21 +01005552 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005553 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005554
Bram Moolenaara3227e22006-03-08 21:32:40 +00005555 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005556
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005557 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005558 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005559 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 break;
5561 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005562 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 }
5564
Bram Moolenaare31ee862020-01-07 20:59:34 +01005565 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005566 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 vim_free(linecopy);
5568 }
5569 return retval;
5570}
5571
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005572/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005573 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5574 */
5575 int
5576bt_normal(buf_T *buf)
5577{
5578 return buf != NULL && buf->b_p_bt[0] == NUL;
5579}
5580
Bram Moolenaar113e1072019-01-20 15:30:40 +01005581#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005582/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005583 * Return TRUE if "buf" is the quickfix buffer.
5584 */
5585 int
5586bt_quickfix(buf_T *buf)
5587{
5588 return buf != NULL && buf->b_p_bt[0] == 'q';
5589}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005590#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005591
Bram Moolenaar113e1072019-01-20 15:30:40 +01005592#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005593/*
5594 * Return TRUE if "buf" is a terminal buffer.
5595 */
5596 int
5597bt_terminal(buf_T *buf)
5598{
5599 return buf != NULL && buf->b_p_bt[0] == 't';
5600}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005601#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005602
5603/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005604 * Return TRUE if "buf" is a help buffer.
5605 */
5606 int
5607bt_help(buf_T *buf)
5608{
5609 return buf != NULL && buf->b_help;
5610}
5611
5612/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005613 * Return TRUE if "buf" is a prompt buffer.
5614 */
5615 int
5616bt_prompt(buf_T *buf)
5617{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005618 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5619}
5620
5621/*
5622 * Return TRUE if "buf" is a buffer for a popup window.
5623 */
5624 int
5625bt_popup(buf_T *buf)
5626{
5627 return buf != NULL && buf->b_p_bt != NULL
5628 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005629}
5630
5631/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005632 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5633 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005634 */
5635 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005636bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005637{
5638 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5639 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005640 || buf->b_p_bt[0] == 't'
5641 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005642}
5643
5644/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005645 * Return TRUE if "buf" has 'buftype' set to "nofile".
5646 */
5647 int
5648bt_nofile(buf_T *buf)
5649{
5650 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5651}
5652
5653/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005654 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5655 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005656 */
5657 int
5658bt_dontwrite(buf_T *buf)
5659{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005660 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005661 || buf->b_p_bt[0] == 't'
5662 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005663}
5664
Bram Moolenaar113e1072019-01-20 15:30:40 +01005665#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005666 int
5667bt_dontwrite_msg(buf_T *buf)
5668{
5669 if (bt_dontwrite(buf))
5670 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005671 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005672 return TRUE;
5673 }
5674 return FALSE;
5675}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005676#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005677
5678/*
5679 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5680 * and 'bufhidden'.
5681 */
5682 int
5683buf_hide(buf_T *buf)
5684{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005685 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005686 switch (buf->b_p_bh[0])
5687 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005688 case 'u': // "unload"
5689 case 'w': // "wipe"
5690 case 'd': return FALSE; // "delete"
5691 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005692 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005693 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005694}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695
5696/*
5697 * Return special buffer name.
5698 * Returns NULL when the buffer has a normal file name.
5699 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005700 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005701buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005703#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005705 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005706 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005707 * Differentiate between the quickfix and location list buffers using
5708 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005709 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005710 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005711 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005712 else
5713 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005716
Bram Moolenaarc667da52019-11-30 20:52:27 +01005717 // There is no _file_ when 'buftype' is "nofile", b_sfname
5718 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005719 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005721#ifdef FEAT_TERMINAL
5722 if (buf->b_term != NULL)
5723 return term_get_status_text(buf->b_term);
5724#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005725 if (buf->b_fname != NULL)
5726 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005727#ifdef FEAT_JOB_CHANNEL
5728 if (bt_prompt(buf))
5729 return (char_u *)_("[Prompt]");
5730#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005731#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005732 if (bt_popup(buf))
5733 return (char_u *)_("[Popup]");
5734#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005735 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005737
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005739 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 return NULL;
5741}
5742
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005744 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5745 */
5746 char_u *
5747buf_get_fname(buf_T *buf)
5748{
5749 if (buf->b_fname == NULL)
5750 return (char_u *)_("[No Name]");
5751 return buf->b_fname;
5752}
5753
5754/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5756 */
5757 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005758set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759{
5760 if (on != curbuf->b_p_bl)
5761 {
5762 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 if (on)
5764 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5765 else
5766 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 }
5768}
5769
5770/*
5771 * Read the file for "buf" again and check if the contents changed.
5772 * Return TRUE if it changed or this could not be checked.
5773 */
5774 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005775buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776{
5777 buf_T *newbuf;
5778 int differ = TRUE;
5779 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 exarg_T ea;
5782
Bram Moolenaarc667da52019-11-30 20:52:27 +01005783 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5785 if (newbuf == NULL)
5786 return TRUE;
5787
Bram Moolenaarc667da52019-11-30 20:52:27 +01005788 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 if (prep_exarg(&ea, buf) == FAIL)
5790 {
5791 wipe_buffer(newbuf, FALSE);
5792 return TRUE;
5793 }
5794
Bram Moolenaarc667da52019-11-30 20:52:27 +01005795 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797
Bram Moolenaar4770d092006-01-12 23:22:24 +00005798 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 && readfile(buf->b_ffname, buf->b_fname,
5800 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5801 &ea, READ_NEW | READ_DUMMY) == OK)
5802 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005803 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5805 {
5806 differ = FALSE;
5807 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5808 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5809 {
5810 differ = TRUE;
5811 break;
5812 }
5813 }
5814 }
5815 vim_free(ea.cmd);
5816
Bram Moolenaarc667da52019-11-30 20:52:27 +01005817 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819
Bram Moolenaarc667da52019-11-30 20:52:27 +01005820 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 wipe_buffer(newbuf, FALSE);
5822
5823 return differ;
5824}
5825
5826/*
5827 * Wipe out a buffer and decrement the last buffer number if it was used for
5828 * this buffer. Call this to wipe out a temp buffer that does not contain any
5829 * marks.
5830 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005832wipe_buffer(
5833 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005834 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835{
5836 if (buf->b_fnum == top_file_num - 1)
5837 --top_file_num;
5838
Bram Moolenaarc667da52019-11-30 20:52:27 +01005839 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005840 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005841
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005842 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005843
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005845 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846}