blob: f86ecdd2696d6785517c728ff168102d77862424 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
shadmansaleh30e3de22021-05-15 17:23:28 +020030
31#ifdef FEAT_EVAL
32// Determines how deeply nested %{} blocks will be evaluated in statusline.
33# define MAX_STL_EVAL_DEPTH 100
34#endif
35
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020036static void enter_buffer(buf_T *buf);
37static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020041static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
42static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
43static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +020047static int value_changed(char_u *str, char_u **last);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010048static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
49static void free_buffer(buf_T *);
50static void free_buffer_stuff(buf_T *buf, int free_options);
51static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar00d253e2020-04-06 22:13:01 +020059#define FOR_ALL_BUFS_FROM_LAST(buf) \
60 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev)
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010066static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020067
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020068// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020069static int buf_free_count = 0;
70
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020071static int top_file_num = 1; // highest file number
72static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
73
74/*
75 * Return the highest possible buffer number.
76 */
77 int
78get_highest_fnum(void)
79{
80 return top_file_num - 1;
81}
82
Bram Moolenaarc024b462019-06-08 18:07:21 +020083/*
84 * Read data from buffer for retrying.
85 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020086 static int
87read_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +010088 int read_stdin, // read file from stdin, otherwise fifo
89 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
90 int flags) // extra flags for readfile()
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020091{
92 int retval = OK;
93 linenr_T line_count;
94
Bram Moolenaarc5935a82021-10-19 20:48:52 +010095 // Read from the buffer which the text is already filled in and append at
96 // the end. This makes it possible to retry when 'fileformat' or
97 // 'fileencoding' was guessed wrong.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020098 line_count = curbuf->b_ml.ml_line_count;
99 retval = readfile(
100 read_stdin ? NULL : curbuf->b_ffname,
101 read_stdin ? NULL : curbuf->b_fname,
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +0100102 line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200103 flags | READ_BUFFER);
104 if (retval == OK)
105 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100106 // Delete the binary lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200107 while (--line_count >= 0)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200108 ml_delete((linenr_T)1);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200109 }
110 else
111 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100112 // Delete the converted lines.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200113 while (curbuf->b_ml.ml_line_count > line_count)
Bram Moolenaarca70c072020-05-30 20:30:46 +0200114 ml_delete(line_count);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200115 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100116 // Put the cursor on the first line.
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200117 curwin->w_cursor.lnum = 1;
118 curwin->w_cursor.col = 0;
119
120 if (read_stdin)
121 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100122 // Set or reset 'modified' before executing autocommands, so that
123 // it can be changed there.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100124 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200125 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100126 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200127 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200128
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100129 if (retval == OK)
130 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100131#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100132 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100133 curbuf, &retval);
134#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100135 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200136#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100137 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200138 }
139 return retval;
140}
141
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200143 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
144 */
145 void
146buffer_ensure_loaded(buf_T *buf)
147{
148 if (buf->b_ml.ml_mfp == NULL)
149 {
150 aco_save_T aco;
151
152 aucmd_prepbuf(&aco, buf);
153 swap_exists_action = SEA_NONE;
154 open_buffer(FALSE, NULL, 0);
155 aucmd_restbuf(&aco);
156 }
157}
158
159/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200160 * Open current buffer, that is: open the memfile and read the file into
161 * memory.
162 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 */
164 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100165open_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100166 int read_stdin, // read file from stdin
167 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL
168 int flags) // extra flags for readfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169{
170 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200171 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100172#ifdef FEAT_SYN_HL
173 long old_tw = curbuf->b_p_tw;
174#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200175 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100177 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
178 // When re-entering the same buffer, it should not change, because the
179 // user may have reset the flag by hand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 if (readonlymode && curbuf->b_ffname != NULL
181 && (curbuf->b_flags & BF_NEVERLOADED))
182 curbuf->b_p_ro = TRUE;
183
Bram Moolenaar4770d092006-01-12 23:22:24 +0000184 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100186 // There MUST be a memfile, otherwise we can't do anything
187 // If we can't create one for the current buffer, take another buffer
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100188 close_buffer(NULL, curbuf, 0, FALSE, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200189 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 if (curbuf->b_ml.ml_mfp != NULL)
191 break;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100192 // If there is no memfile at all, exit.
193 // This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 if (curbuf == NULL)
195 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100196 emsg(_("E82: Cannot allocate any buffer, exiting..."));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200197
198 // Don't try to do any saving, with "curbuf" NULL almost nothing
199 // will work.
200 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 getout(2);
202 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200203
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100204 emsg(_("E83: Cannot allocate buffer, using other one..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100206#ifdef FEAT_SYN_HL
207 if (old_tw != curbuf->b_p_tw)
208 check_colorcolumn(curwin);
209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 return FAIL;
211 }
212
Bram Moolenaarc667da52019-11-30 20:52:27 +0100213 // The autocommands in readfile() may change the buffer, but only AFTER
214 // reading the file.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200215 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
Bram Moolenaarc667da52019-11-30 20:52:27 +0100218 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100219 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
221 if (curbuf->b_ffname != NULL
222#ifdef FEAT_NETBEANS_INTG
223 && netbeansReadFile
224#endif
225 )
226 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100227 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200228#ifdef UNIX
229 int save_bin = curbuf->b_p_bin;
230 int perm;
231#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232#ifdef FEAT_NETBEANS_INTG
233 int oldFire = netbeansFireChanges;
234
235 netbeansFireChanges = 0;
236#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200237#ifdef UNIX
238 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200239 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200240 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200241# ifdef OPEN_CHR_FILES
242 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
243# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200244 ))
245 read_fifo = TRUE;
246 if (read_fifo)
247 curbuf->b_p_bin = TRUE;
248#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100249 if (shortmess(SHM_FILEINFO))
250 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200252 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200253 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
254#ifdef UNIX
255 if (read_fifo)
256 {
257 curbuf->b_p_bin = save_bin;
258 if (retval == OK)
259 retval = read_buffer(FALSE, eap, flags);
260 }
261#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100262 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263#ifdef FEAT_NETBEANS_INTG
264 netbeansFireChanges = oldFire;
265#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100266 // Help buffer is filtered.
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200267 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 fix_help_buffer();
269 }
270 else if (read_stdin)
271 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200272 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100274 // First read the text in binary mode into the buffer.
275 // Then read from that same buffer and append at the end. This makes
276 // it possible to retry when 'fileformat' or 'fileencoding' was
277 // guessed wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 curbuf->b_p_bin = TRUE;
279 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200280 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
281 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 curbuf->b_p_bin = save_bin;
283 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200284 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 }
286
Bram Moolenaarc667da52019-11-30 20:52:27 +0100287 // if first time loading this buffer, init b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100289 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100291#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100292 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100293#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100294 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100296 // Set/reset the Changed flag first, autocmds may change the buffer.
297 // Apply the automatic commands, before processing the modelines.
298 // So the modelines have priority over autocommands.
299 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100300 // When reading stdin, the buffer contents always needs writing, so set
301 // the changed flag. Unless in readonly mode: "ls | gview -".
302 // When interrupted and 'cpoptions' contains 'i' set changed flag.
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000303 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100304 || modified_was_set // ":set modified" used in autocmd
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100305#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000308 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100310 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200311 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100312 save_file_ff(curbuf); // keep this fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313
Bram Moolenaarc667da52019-11-30 20:52:27 +0100314 // Set last_changedtick to avoid triggering a TextChanged autocommand right
315 // after it was added.
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100316 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Christian Brabandtdb3b4462021-10-16 11:58:55 +0100317 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100318 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100319
Bram Moolenaarc667da52019-11-30 20:52:27 +0100320 // require "!" to overwrite the file, because it wasn't read completely
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321#ifdef FEAT_EVAL
322 if (aborting())
323#else
324 if (got_int)
325#endif
326 curbuf->b_flags |= BF_READERR;
327
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000328#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100329 // Need to update automatic folding. Do this before the autocommands,
330 // they may use the fold info.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000331 foldUpdateAll(curwin);
332#endif
333
Bram Moolenaarc667da52019-11-30 20:52:27 +0100334 // need to set w_topline, unless some autocommand already did that.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 if (!(curwin->w_valid & VALID_TOPLINE))
336 {
337 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100338#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100342#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100344#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346#endif
347
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100348 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100350 // The autocommands may have changed the current buffer. Apply the
351 // modelines to the correct buffer, if it still exists and is loaded.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200352 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 {
354 aco_save_T aco;
355
Bram Moolenaarc667da52019-11-30 20:52:27 +0100356 // Go to the buffer that was opened.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200357 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000358 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
360
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100361 if ((flags & READ_NOWINENTER) == 0)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100362#ifdef FEAT_EVAL
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100363 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
364 curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100365#else
Bram Moolenaar1d30fde2021-10-20 21:58:42 +0100366 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
Bram Moolenaarc667da52019-11-30 20:52:27 +0100369 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 aucmd_restbuf(&aco);
371 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 }
373
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 return retval;
375}
376
377/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200378 * Store "buf" in "bufref" and set the free count.
379 */
380 void
381set_bufref(bufref_T *bufref, buf_T *buf)
382{
383 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200384 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200385 bufref->br_buf_free_count = buf_free_count;
386}
387
388/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200389 * Return TRUE if "bufref->br_buf" points to the same buffer as when
390 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200391 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200392 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
393 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200394 */
395 int
396bufref_valid(bufref_T *bufref)
397{
398 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200399 ? TRUE : buf_valid(bufref->br_buf)
400 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200401}
402
403/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200405 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 */
407 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100408buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409{
410 buf_T *bp;
411
Bram Moolenaarc667da52019-11-30 20:52:27 +0100412 // Assume that we more often have a recent buffer, start with the last
413 // one.
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200414 FOR_ALL_BUFS_FROM_LAST(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 if (bp == buf)
416 return TRUE;
417 return FALSE;
418}
419
420/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200421 * A hash table used to quickly lookup a buffer by its number.
422 */
423static hashtab_T buf_hashtab;
424
425 static void
426buf_hashtab_add(buf_T *buf)
427{
428 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
429 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100430 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200431}
432
433 static void
434buf_hashtab_remove(buf_T *buf)
435{
436 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
437
438 if (!HASHITEM_EMPTY(hi))
439 hash_remove(&buf_hashtab, hi);
440}
441
Bram Moolenaar94f01952018-09-01 15:30:03 +0200442/*
443 * Return TRUE when buffer "buf" can be unloaded.
444 * Give an error message and return FALSE when the buffer is locked or the
445 * screen is being redrawn and the buffer is in a window.
446 */
447 static int
448can_unload_buffer(buf_T *buf)
449{
450 int can_unload = !buf->b_locked;
451
452 if (can_unload && updating_screen)
453 {
454 win_T *wp;
455
456 FOR_ALL_WINDOWS(wp)
457 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200458 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200459 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200460 break;
461 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200462 }
463 if (!can_unload)
Bram Moolenaardefa0672019-07-21 19:25:37 +0200464 semsg(_("E937: Attempt to delete a buffer that is in use: %s"),
465 buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200466 return can_unload;
467}
Bram Moolenaara997b452018-04-17 23:24:06 +0200468
Bram Moolenaar480778b2016-07-14 22:09:39 +0200469/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 * Close the link to a buffer.
471 * "action" is used when there is no longer a window for the buffer.
472 * It can be:
473 * 0 buffer becomes hidden
474 * DOBUF_UNLOAD buffer is unloaded
475 * DOBUF_DELETE buffer is unloaded and removed from buffer list
476 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200477 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 * When doing all but the first one on the current buffer, the caller should
479 * get a new buffer very soon!
480 *
481 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100482 *
483 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
484 * cause there to be only one window with this buffer. e.g. when ":quit" is
485 * supposed to close the window but autocommands close all other windows.
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100486 *
487 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE.
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100488 *
489 * Return TRUE when we got to the end and b_nwindows was decremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 */
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100491 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100492close_buffer(
Bram Moolenaarc667da52019-11-30 20:52:27 +0100493 win_T *win, // if not NULL, set b_last_cursor
Bram Moolenaar7454a062016-01-30 15:14:10 +0100494 buf_T *buf,
495 int action,
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100496 int abort_if_last,
497 int ignore_abort)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100500 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200501 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100502 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200503 win_T *the_curwin = curwin;
504 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200506 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
507 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaarcee52202020-03-11 14:19:58 +0100509 CHECK_CURBUF;
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100510
511 // Force unloading or deleting when 'bufhidden' says so.
512 // The caller must take care of NOT deleting/freeing when 'bufhidden' is
513 // "hide" (otherwise we could never free or delete a buffer).
Bram Moolenaarc667da52019-11-30 20:52:27 +0100514 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200515 {
516 del_buf = TRUE;
517 unload_buf = TRUE;
518 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100519 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200520 {
521 del_buf = TRUE;
522 unload_buf = TRUE;
523 wipe_buf = TRUE;
524 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100525 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload"
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200526 unload_buf = TRUE;
527
Bram Moolenaar94053a52017-08-01 21:44:33 +0200528#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200529 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200530 {
Bram Moolenaarcee52202020-03-11 14:19:58 +0100531 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200532 if (term_job_running(buf->b_term))
533 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200534 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200535 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200536 if (!can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100537 return FALSE;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200538
Bram Moolenaarc667da52019-11-30 20:52:27 +0100539 // Wiping out or unloading a terminal buffer kills the job.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200540 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200541 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200542 else
543 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100544 // The job keeps running, hide the buffer.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200545 del_buf = FALSE;
546 unload_buf = FALSE;
547 }
548 }
Bram Moolenaarc9f8b842020-11-24 19:36:16 +0100549 else if (buf->b_p_bh[0] == 'h' && !del_buf)
550 {
551 // Hide a terminal buffer.
552 unload_buf = FALSE;
553 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200554 else
555 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100556 // A terminal buffer is wiped out if the job has finished.
Bram Moolenaar94053a52017-08-01 21:44:33 +0200557 del_buf = TRUE;
558 unload_buf = TRUE;
559 wipe_buf = TRUE;
560 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100561 CHECK_CURBUF;
Bram Moolenaar94053a52017-08-01 21:44:33 +0200562 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
Bram Moolenaarc667da52019-11-30 20:52:27 +0100565 // Disallow deleting the buffer when it is locked (already being closed or
566 // halfway a command that relies on it). Unloading is allowed.
Bram Moolenaar94f01952018-09-01 15:30:03 +0200567 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100568 return FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569
Bram Moolenaarc667da52019-11-30 20:52:27 +0100570 // check no autocommands closed the window
Bram Moolenaar4033c552017-09-16 20:54:51 +0200571 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100573 // Set b_last_cursor when closing the last window for the buffer.
574 // Remember the last cursor position and window options of the buffer.
575 // This used to be only for the current window, but then options like
576 // 'foldmethod' may be lost with a ":only" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 if (buf->b_nwindows == 1)
578 set_last_cursor(win);
579 buflist_setfpos(buf, win,
580 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
581 win->w_cursor.col, TRUE);
582 }
583
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200584 set_bufref(&bufref, buf);
585
Bram Moolenaarc667da52019-11-30 20:52:27 +0100586 // When the buffer is no longer in a window, trigger BufWinLeave
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 if (buf->b_nwindows == 1)
588 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200589 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100590 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200591 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
592 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200593 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100594 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100595 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200596aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100597 emsg(_(e_auabort));
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100598 return FALSE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100599 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200600 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100601 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200602 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100603 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
Bram Moolenaarc667da52019-11-30 20:52:27 +0100606 // When the buffer becomes hidden, but is not unloaded, trigger
607 // BufHidden
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 if (!unload_buf)
609 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200610 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100611 ++buf->b_locked_split;
Bram Moolenaar82404332016-07-10 17:00:38 +0200612 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
613 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200614 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100615 // Autocommands deleted the buffer.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200616 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200617 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100618 --buf->b_locked_split;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200619 if (abort_if_last && one_window())
Bram Moolenaarc667da52019-11-30 20:52:27 +0100620 // Autocommands made this the only window.
Bram Moolenaar362ce482012-06-06 19:02:45 +0200621 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100623#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100624 // autocmds may abort script processing
625 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100626 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200629
Bram Moolenaarc667da52019-11-30 20:52:27 +0100630 // If the buffer was in curwin and the window has changed, go back to that
631 // window, if it still exists. This avoids that ":edit x" triggering a
632 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200633 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
634 {
635 block_autocmds();
636 goto_tabpage_win(the_curtab, the_curwin);
637 unblock_autocmds();
638 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200639
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641
Bram Moolenaarc667da52019-11-30 20:52:27 +0100642 // decrease the link count from windows (unless not in any window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 if (buf->b_nwindows > 0)
644 --buf->b_nwindows;
645
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100646#ifdef FEAT_DIFF
647 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100648 diff_buf_delete(buf); // Clear 'diff' for hidden buffer.
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100649#endif
650
Bram Moolenaarc667da52019-11-30 20:52:27 +0100651 // Return when a window is displaying the buffer or when it's not
652 // unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100654 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaarc667da52019-11-30 20:52:27 +0100656 // Always remove the buffer when there is no file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (buf->b_ffname == NULL)
658 del_buf = TRUE;
659
Bram Moolenaarc667da52019-11-30 20:52:27 +0100660 // When closing the current buffer stop Visual mode before freeing
661 // anything.
Bram Moolenaar4930a762016-09-11 14:39:53 +0200662 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200663#if defined(EXITFREE)
664 && !entered_free_all_mem
665#endif
666 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200667 end_visual_mode();
668
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100669 // Free all things allocated for this buffer.
670 // Also calls the "BufDelete" autocommands when del_buf is TRUE.
671 //
Bram Moolenaarc667da52019-11-30 20:52:27 +0100672 // Remember if we are closing the current buffer. Restore the number of
673 // windows, so that autocommands in buf_freeall() don't get confused.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 is_curbuf = (buf == curbuf);
675 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100677 buf_freeall(buf, (del_buf ? BFA_DEL : 0)
Bram Moolenaar8133cc62020-10-26 21:05:27 +0100678 + (wipe_buf ? BFA_WIPE : 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100679 + (ignore_abort ? BFA_IGNORE_ABORT : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaarc667da52019-11-30 20:52:27 +0100681 // Autocommands may have deleted the buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200682 if (!bufref_valid(&bufref))
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100683 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100684#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100685 // autocmds may abort script processing
686 if (!ignore_abort && aborting())
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100687 return FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100690 // It's possible that autocommands change curbuf to the one being deleted.
691 // This might cause the previous curbuf to be deleted unexpectedly. But
692 // in some cases it's OK to delete the curbuf, because a new one is
693 // obtained anyway. Therefore only return if curbuf changed to the
694 // deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if (buf == curbuf && !is_curbuf)
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100696 return FALSE;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200697
Bram Moolenaar4033c552017-09-16 20:54:51 +0200698 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100699 win->w_buffer = NULL; // make sure we don't use the buffer now
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200700
Bram Moolenaarc667da52019-11-30 20:52:27 +0100701 // Autocommands may have opened or closed windows for this buffer.
702 // Decrement the count for the close we do here.
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200703 if (buf->b_nwindows > 0)
704 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 /*
707 * Remove the buffer from the list.
708 */
709 if (wipe_buf)
710 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200711 if (action == DOBUF_WIPE_REUSE)
712 {
713 // we can re-use this buffer number, store it
714 if (buf_reuse.ga_itemsize == 0)
715 ga_init2(&buf_reuse, sizeof(int), 50);
716 if (ga_grow(&buf_reuse, 1) == OK)
717 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
718 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200719 if (buf->b_sfname != buf->b_ffname)
720 VIM_CLEAR(buf->b_sfname);
721 else
722 buf->b_sfname = NULL;
723 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 if (buf->b_prev == NULL)
725 firstbuf = buf->b_next;
726 else
727 buf->b_prev->b_next = buf->b_next;
728 if (buf->b_next == NULL)
729 lastbuf = buf->b_prev;
730 else
731 buf->b_next->b_prev = buf->b_prev;
732 free_buffer(buf);
733 }
734 else
735 {
736 if (del_buf)
737 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100738 // Free all internal variables and reset option values, to make
739 // ":bdel" compatible with Vim 5.7.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 free_buffer_stuff(buf, TRUE);
741
Bram Moolenaarc667da52019-11-30 20:52:27 +0100742 // Make it look like a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
744
Bram Moolenaarc667da52019-11-30 20:52:27 +0100745 // Init the options when loaded again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 buf->b_p_initialized = FALSE;
747 }
748 buf_clear_file(buf);
749 if (del_buf)
750 buf->b_p_bl = FALSE;
751 }
Bram Moolenaarcee52202020-03-11 14:19:58 +0100752 // NOTE: at this point "curbuf" may be invalid!
Bram Moolenaar797e63b2021-01-15 16:22:52 +0100753 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754}
755
756/*
757 * Make buffer not contain a file.
758 */
759 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100760buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761{
762 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200763 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 buf->b_p_eol = TRUE;
766 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000768 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 buf->b_ml.ml_mfp = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100770 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771#ifdef FEAT_NETBEANS_INTG
772 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773#endif
774}
775
776/*
777 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200778 * the file. Careful: get here with "curwin" NULL when exiting.
779 * flags:
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100780 * BFA_DEL buffer is going to be deleted
781 * BFA_WIPE buffer is going to be wiped out
782 * BFA_KEEP_UNDO do not free undo information
783 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100786buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200789 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200790 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200791 win_T *the_curwin = curwin;
792 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793
Bram Moolenaarc667da52019-11-30 20:52:27 +0100794 // Make sure the buffer isn't closed by autocommands.
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200795 ++buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100796 ++buf->b_locked_split;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200797 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200798 if (buf->b_ml.ml_mfp != NULL)
799 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200800 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
801 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200802 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100803 // autocommands deleted the buffer
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200804 return;
805 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200806 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200808 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
809 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200810 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100811 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 return;
813 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200814 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200816 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
817 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200818 && !bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100819 // autocommands deleted the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 return;
821 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200822 --buf->b_locked;
Bram Moolenaar983d83f2021-02-07 12:12:43 +0100823 --buf->b_locked_split;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200824
Bram Moolenaarc667da52019-11-30 20:52:27 +0100825 // If the buffer was in curwin and the window has changed, go back to that
826 // window, if it still exists. This avoids that ":edit x" triggering a
827 // "tabnext" BufUnload autocmd leaves a window behind without a buffer.
Bram Moolenaar5a497892016-09-03 16:29:04 +0200828 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
829 {
830 block_autocmds();
831 goto_tabpage_win(the_curtab, the_curwin);
832 unblock_autocmds();
833 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200834
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100835#ifdef FEAT_EVAL
Bram Moolenaara6e8f882019-12-14 16:18:15 +0100836 // autocmds may abort script processing
837 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840
Bram Moolenaarc5935a82021-10-19 20:48:52 +0100841 // It's possible that autocommands change curbuf to the one being deleted.
842 // This might cause curbuf to be deleted unexpectedly. But in some cases
843 // it's OK to delete the curbuf, because a new one is obtained anyway.
844 // Therefore only return if curbuf changed to the deleted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 if (buf == curbuf && !is_curbuf)
846 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847#ifdef FEAT_DIFF
Bram Moolenaarc667da52019-11-30 20:52:27 +0100848 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200850#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100851 // Remove any ownsyntax, unless exiting.
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200852 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100853 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200854#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000855
856#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +0100857 // No folds in an empty buffer.
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000858 {
859 win_T *win;
860 tabpage_T *tp;
861
862 FOR_ALL_TAB_WINDOWS(tp, win)
863 if (win->w_buffer == buf)
864 clearFolding(win);
865 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#ifdef FEAT_TCL
869 tcl_buffer_free(buf);
870#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100871 ml_close(buf, TRUE); // close and delete the memline/memfile
872 buf->b_ml.ml_line_count = 0; // no lines in buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200873 if ((flags & BFA_KEEP_UNDO) == 0)
874 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100875 u_blockfree(buf); // free the memory allocated for undo
876 u_clearall(buf); // reset all undo information
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#ifdef FEAT_SYN_HL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100879 syntax_clear(&buf->b_s); // reset syntax info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100881#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100882 clear_buf_prop_types(buf);
883#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +0100884 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885}
886
887/*
888 * Free a buffer structure and the things it contains related to the buffer
889 * itself (not the file, that must have been done already).
890 */
891 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100892free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200894 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200896#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +0100897 // b:changedtick uses an item in buf_T, remove it now
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200898 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200899 unref_var_dict(buf->b_vars);
Bram Moolenaar86173482019-10-01 17:02:16 +0200900 remove_listeners(buf);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200901#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200902#ifdef FEAT_LUA
903 lua_buffer_free(buf);
904#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000905#ifdef FEAT_MZSCHEME
906 mzscheme_buffer_free(buf);
907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908#ifdef FEAT_PERL
909 perl_buf_free(buf);
910#endif
911#ifdef FEAT_PYTHON
912 python_buffer_free(buf);
913#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200914#ifdef FEAT_PYTHON3
915 python3_buffer_free(buf);
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#ifdef FEAT_RUBY
918 ruby_buffer_free(buf);
919#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200920#ifdef FEAT_JOB_CHANNEL
921 channel_buffer_free(buf);
922#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200923#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200924 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200925#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200926#ifdef FEAT_JOB_CHANNEL
927 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200928 free_callback(&buf->b_prompt_callback);
Bram Moolenaar86173482019-10-01 17:02:16 +0200929 free_callback(&buf->b_prompt_interrupt);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200930#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200931
932 buf_hashtab_remove(buf);
933
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200934 aubuflocal_remove(buf);
935
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200936 if (autocmd_busy)
937 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100938 // Do not free the buffer structure while autocommands are executing,
939 // it's still needed. Free it when autocmd_busy is reset.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200940 buf->b_next = au_pending_free_buf;
941 au_pending_free_buf = buf;
942 }
943 else
Bram Moolenaarcee52202020-03-11 14:19:58 +0100944 {
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200945 vim_free(buf);
Bram Moolenaarcee52202020-03-11 14:19:58 +0100946 if (curbuf == buf)
947 curbuf = NULL; // make clear it's not to be used
948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949}
950
951/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100952 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100953 */
954 static void
955init_changedtick(buf_T *buf)
956{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100957 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100958
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100959 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
960 di->di_tv.v_type = VAR_NUMBER;
961 di->di_tv.v_lock = VAR_FIXED;
962 di->di_tv.vval.v_number = 0;
963
Bram Moolenaar92769c32017-02-25 15:41:37 +0100964#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100965 STRCPY(buf->b_ct_di.di_key, "changedtick");
966 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100967#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100968}
969
970/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
972 */
973 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100974free_buffer_stuff(
975 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +0100976 int free_options) // free options as well
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
978 if (free_options)
979 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100980 clear_wininfo(buf); // including window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200982#ifdef FEAT_SPELL
983 ga_clear(&buf->b_s.b_langp);
984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 }
986#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100987 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100988 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100989
Bram Moolenaarc667da52019-11-30 20:52:27 +0100990 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables
Bram Moolenaar79518e22017-02-17 16:31:35 +0100991 hash_init(&buf->b_vars->dv_hashtab);
992 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100993 CHANGEDTICK(buf) = tick;
Bram Moolenaarf10997a2020-01-03 21:00:02 +0100994 remove_listeners(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200997 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200999 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001001#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001002 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +00001003#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001004 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings
1005 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs
Bram Moolenaard23a8232018-02-10 18:45:26 +01001006 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007}
1008
1009/*
Bram Moolenaar4882d982020-10-25 17:55:09 +01001010 * Free one wininfo_T.
1011 */
1012 void
1013free_wininfo(wininfo_T *wip)
1014{
1015 if (wip->wi_optset)
1016 {
1017 clear_winopt(&wip->wi_opt);
1018#ifdef FEAT_FOLDING
1019 deleteFoldRecurse(&wip->wi_folds);
1020#endif
1021 }
1022 vim_free(wip);
1023}
1024
1025/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 * Free the b_wininfo list for buffer "buf".
1027 */
1028 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001029clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 wininfo_T *wip;
1032
1033 while (buf->b_wininfo != NULL)
1034 {
1035 wip = buf->b_wininfo;
1036 buf->b_wininfo = wip->wi_next;
Bram Moolenaar4882d982020-10-25 17:55:09 +01001037 free_wininfo(wip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 }
1039}
1040
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041/*
1042 * Go to another buffer. Handles the result of the ATTENTION dialog.
1043 */
1044 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001045goto_buffer(
1046 exarg_T *eap,
1047 int start,
1048 int dir,
1049 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001051 bufref_T old_curbuf;
1052
1053 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054
1055 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1057 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1059 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001060#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001061 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001062
Bram Moolenaarc667da52019-11-30 20:52:27 +01001063 // Reset the error/interrupt/exception state here so that
1064 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001065 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001066#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001067
Bram Moolenaarc667da52019-11-30 20:52:27 +01001068 // Quitting means closing the split window, nothing else.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 win_close(curwin, TRUE);
1070 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001071 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001073#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001074 // Restore the error/interrupt/exception state if not discarded by a
1075 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001076 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 }
1079 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001080 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001081}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083/*
1084 * Handle the situation of swap_exists_action being set.
1085 * It is allowed for "old_curbuf" to be NULL or invalid.
1086 */
1087 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001088handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001090#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001092#endif
1093#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001094 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001095#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001096 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001097
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 if (swap_exists_action == SEA_QUIT)
1099 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001100#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001101 // Reset the error/interrupt/exception state here so that
1102 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001103 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001104#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001105
Bram Moolenaarc667da52019-11-30 20:52:27 +01001106 // User selected Quit at ATTENTION prompt. Go back to previous
1107 // buffer. If that buffer is gone or the same as the current one,
1108 // open a new, empty buffer.
1109 swap_exists_action = SEA_NONE; // don't want it again
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001110 swap_exists_did_quit = TRUE;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001111 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001112 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1113 || old_curbuf->br_buf == curbuf)
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001114 {
1115 // Block autocommands here because curwin->w_buffer is NULL.
1116 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001117 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar1d97efc2021-07-04 13:27:11 +02001118 unblock_autocmds();
1119 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001120 else
1121 buf = old_curbuf->br_buf;
1122 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001123 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001124 int old_msg_silent = msg_silent;
1125
1126 if (shortmess(SHM_FILEINFO))
1127 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001128 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001129 // restore msg_silent, so that the command line will be shown
1130 msg_silent = old_msg_silent;
1131
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001132#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001133 if (old_tw != curbuf->b_p_tw)
1134 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001135#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001136 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001137 // If "old_curbuf" is NULL we are in big trouble here...
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001138
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001139#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001140 // Restore the error/interrupt/exception state if not discarded by a
1141 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001142 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 }
1145 else if (swap_exists_action == SEA_RECOVER)
1146 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001147#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001148 // Reset the error/interrupt/exception state here so that
1149 // aborting() returns FALSE when closing a buffer.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001150 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001151#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001152
Bram Moolenaarc667da52019-11-30 20:52:27 +01001153 // User selected Recover at ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001155 ml_recover(FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001156 msg_puts("\n"); // don't overwrite the last message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001158 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001159
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001160#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001161 // Restore the error/interrupt/exception state if not discarded by a
1162 // new aborting error, interrupt, or uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001163 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 }
1166 swap_exists_action = SEA_NONE;
1167}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169/*
Bram Moolenaara02471e2014-01-10 16:43:14 +01001170 * Make the current buffer empty.
1171 * Used when it is wiped out and it's the last buffer.
1172 */
1173 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001174empty_curbuf(
1175 int close_others,
1176 int forceit,
1177 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001178{
1179 int retval;
1180 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001181 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001182
1183 if (action == DOBUF_UNLOAD)
1184 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001185 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001186 return FAIL;
1187 }
1188
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001189 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001190 if (close_others)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001191 // Close any other windows on this buffer, then make it empty.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001192 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193
1194 setpcmark();
1195 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1196 forceit ? ECMD_FORCEIT : 0, curwin);
1197
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001198 // do_ecmd() may create a new buffer, then we have to delete
1199 // the old one. But do_ecmd() may have done that already, check
1200 // if the buffer still exists.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001201 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001202 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001203 if (!close_others)
1204 need_fileinfo = FALSE;
1205 return retval;
1206}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208/*
1209 * Implementation of the commands for the buffer list.
1210 *
1211 * action == DOBUF_GOTO go to specified buffer
1212 * action == DOBUF_SPLIT split window and go to specified buffer
1213 * action == DOBUF_UNLOAD unload specified buffer(s)
1214 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1215 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001216 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 *
1218 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1219 * start == DOBUF_FIRST go to "count" buffer from first buffer
1220 * start == DOBUF_LAST go to "count" buffer from last buffer
1221 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1222 *
1223 * Return FAIL or OK.
1224 */
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001225 static int
1226do_buffer_ext(
Bram Moolenaar7454a062016-01-30 15:14:10 +01001227 int action,
1228 int start,
Bram Moolenaarc667da52019-11-30 20:52:27 +01001229 int dir, // FORWARD or BACKWARD
1230 int count, // buffer number or number of buffers
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001231 int flags) // DOBUF_FORCEIT etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232{
1233 buf_T *buf;
1234 buf_T *bp;
1235 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001236 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
1238 switch (start)
1239 {
1240 case DOBUF_FIRST: buf = firstbuf; break;
1241 case DOBUF_LAST: buf = lastbuf; break;
1242 default: buf = curbuf; break;
1243 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001244 if (start == DOBUF_MOD) // find next modified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 {
1246 while (count-- > 0)
1247 {
1248 do
1249 {
1250 buf = buf->b_next;
1251 if (buf == NULL)
1252 buf = firstbuf;
1253 }
1254 while (buf != curbuf && !bufIsChanged(buf));
1255 }
1256 if (!bufIsChanged(buf))
1257 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001258 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 return FAIL;
1260 }
1261 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001262 else if (start == DOBUF_FIRST && count) // find specified buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
1264 while (buf != NULL && buf->b_fnum != count)
1265 buf = buf->b_next;
1266 }
1267 else
1268 {
1269 bp = NULL;
1270 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1271 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001272 // remember the buffer where we start, we come back there when all
1273 // buffers are unlisted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 if (bp == NULL)
1275 bp = buf;
1276 if (dir == FORWARD)
1277 {
1278 buf = buf->b_next;
1279 if (buf == NULL)
1280 buf = firstbuf;
1281 }
1282 else
1283 {
1284 buf = buf->b_prev;
1285 if (buf == NULL)
1286 buf = lastbuf;
1287 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001288 // don't count unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (unload || buf->b_p_bl)
1290 {
1291 --count;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001292 bp = NULL; // use this buffer as new starting point
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 }
1294 if (bp == buf)
1295 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001296 // back where we started, didn't find anything.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001297 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 return FAIL;
1299 }
1300 }
1301 }
1302
Bram Moolenaarc667da52019-11-30 20:52:27 +01001303 if (buf == NULL) // could not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 {
1305 if (start == DOBUF_FIRST)
1306 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001307 // don't warn when deleting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001309 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 }
1311 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001312 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001314 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 return FAIL;
1316 }
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001317#ifdef FEAT_PROP_POPUP
1318 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf)
1319# ifdef FEAT_TERMINAL
1320 && !bt_terminal(buf)
1321#endif
1322 )
1323 return OK;
1324#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
1326#ifdef FEAT_GUI
1327 need_mouse_correct = TRUE;
1328#endif
1329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001331 * delete buffer "buf" from memory and/or the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 */
1333 if (unload)
1334 {
1335 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001336 bufref_T bufref;
1337
Bram Moolenaar94f01952018-09-01 15:30:03 +02001338 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001339 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001340
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001341 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342
Bram Moolenaarc667da52019-11-30 20:52:27 +01001343 // When unloading or deleting a buffer that's already unloaded and
1344 // unlisted: fail silently.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001345 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1346 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 return FAIL;
1348
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001349 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001351#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001352 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 {
1354 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001355 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001356 // Autocommand deleted buffer, oops! It's not changed
1357 // now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return FAIL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001359 // If it's still changed fail silently, the dialog already
1360 // mentioned why it fails.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001361 if (bufIsChanged(buf))
1362 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001364 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001367 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 buf->b_fnum);
1369 return FAIL;
1370 }
1371 }
1372
Bram Moolenaarc667da52019-11-30 20:52:27 +01001373 // When closing the current buffer stop Visual mode.
Bram Moolenaar4930a762016-09-11 14:39:53 +02001374 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001375 end_visual_mode();
1376
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001377 // If deleting the last (listed) buffer, make it empty.
1378 // The last (listed) buffer cannot be unloaded.
Bram Moolenaar29323592016-07-24 22:04:11 +02001379 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (bp->b_p_bl && bp != buf)
1381 break;
1382 if (bp == NULL && buf == curbuf)
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001383 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001385 // If the deleted buffer is the current one, close the current window
1386 // (unless it's the only window). Repeat this so long as we end up in
1387 // a window with this buffer.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001388 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001389 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001390 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001391 {
1392 if (win_close(curwin, FALSE) == FAIL)
1393 break;
1394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001396 // If the buffer to be deleted is not the current one, delete it here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (buf != curbuf)
1398 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001399 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001400 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001401 close_buffer(NULL, buf, action, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 return OK;
1403 }
1404
1405 /*
1406 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001407 * There should be another, otherwise it would have been handled
1408 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001409 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 * Then prefer the buffer we most recently visited.
1411 * Else try to find one that is loaded, after the current buffer,
1412 * then before the current buffer.
1413 * Finally use any buffer.
1414 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001415 buf = NULL; // selected buffer
1416 bp = NULL; // used when no loaded buffer found
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001417 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1418 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001420 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 {
1422 int jumpidx;
1423
1424 jumpidx = curwin->w_jumplistidx - 1;
1425 if (jumpidx < 0)
1426 jumpidx = curwin->w_jumplistlen - 1;
1427
1428 forward = jumpidx;
1429 while (jumpidx != curwin->w_jumplistidx)
1430 {
1431 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1432 if (buf != NULL)
1433 {
1434 if (buf == curbuf || !buf->b_p_bl)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001435 buf = NULL; // skip current and unlisted bufs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 else if (buf->b_ml.ml_mfp == NULL)
1437 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001438 // skip unloaded buf, but may keep it for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 if (bp == NULL)
1440 bp = buf;
1441 buf = NULL;
1442 }
1443 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001444 if (buf != NULL) // found a valid buffer: stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001446 // advance to older entry in jump list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1448 break;
1449 if (--jumpidx < 0)
1450 jumpidx = curwin->w_jumplistlen - 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001451 if (jumpidx == forward) // List exhausted for sure
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 break;
1453 }
1454 }
1455#endif
1456
Bram Moolenaarc667da52019-11-30 20:52:27 +01001457 if (buf == NULL) // No previous buffer, Try 2'nd approach
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 {
1459 forward = TRUE;
1460 buf = curbuf->b_next;
1461 for (;;)
1462 {
1463 if (buf == NULL)
1464 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001465 if (!forward) // tried both directions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 break;
1467 buf = curbuf->b_prev;
1468 forward = FALSE;
1469 continue;
1470 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001471 // in non-help buffer, try to skip help buffers, and vv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1473 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001474 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001476 if (bp == NULL) // remember unloaded buf for later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 bp = buf;
1478 }
1479 if (forward)
1480 buf = buf->b_next;
1481 else
1482 buf = buf->b_prev;
1483 }
1484 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001485 if (buf == NULL) // No loaded buffer, use unloaded one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 buf = bp;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001487 if (buf == NULL) // No loaded buffer, find listed one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001489 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 if (buf->b_p_bl && buf != curbuf)
1491 break;
1492 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001493 if (buf == NULL) // Still no buffer, just take one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 {
1495 if (curbuf->b_next != NULL)
1496 buf = curbuf->b_next;
1497 else
1498 buf = curbuf->b_prev;
1499 }
1500 }
1501
Bram Moolenaara02471e2014-01-10 16:43:14 +01001502 if (buf == NULL)
1503 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001504 // Autocommands must have wiped out all other buffers. Only option
1505 // now is to make the current buffer empty.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001506 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001507 }
1508
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001510 * make "buf" the current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01001512 if (action == DOBUF_SPLIT) // split window first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001514 // If 'switchbuf' contains "useopen": jump to first window containing
1515 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001516 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001517 return OK;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001518 // If 'switchbuf' contains "usetab": jump to first window in any tab
1519 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00001520 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 return OK;
1522 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 return FAIL;
1524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525
Bram Moolenaarc667da52019-11-30 20:52:27 +01001526 // go to current buffer - nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 if (buf == curbuf)
1528 return OK;
1529
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001530 // Check if the current buffer may be abandoned.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001531 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 {
1533#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02001534 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001536 bufref_T bufref;
1537
1538 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001540 if (!bufref_valid(&bufref))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001541 // Autocommand deleted buffer, oops!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 }
1544 if (bufIsChanged(curbuf))
1545#endif
1546 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001547 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 return FAIL;
1549 }
1550 }
1551
Bram Moolenaarc667da52019-11-30 20:52:27 +01001552 // Go to the other buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 set_curbuf(buf, action);
1554
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 if (action == DOBUF_SPLIT)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001556 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001558#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001559 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 return FAIL;
1561#endif
1562
1563 return OK;
1564}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001566 int
1567do_buffer(
1568 int action,
1569 int start,
1570 int dir, // FORWARD or BACKWARD
1571 int count, // buffer number or number of buffers
1572 int forceit) // TRUE when using !
1573{
1574 return do_buffer_ext(action, start, dir, count,
1575 forceit ? DOBUF_FORCEIT : 0);
1576}
1577
1578/*
1579 * do_bufdel() - delete or unload buffer(s)
1580 *
1581 * addr_count == 0: ":bdel" - delete current buffer
1582 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1583 * buffer "end_bnr", then any other arguments.
1584 * addr_count == 2: ":N,N bdel" - delete buffers in range
1585 *
1586 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1587 * DOBUF_DEL (":bdel")
1588 *
1589 * Returns error message or NULL
1590 */
1591 char *
1592do_bufdel(
1593 int command,
1594 char_u *arg, // pointer to extra arguments
1595 int addr_count,
1596 int start_bnr, // first buffer number in a range
1597 int end_bnr, // buffer nr or last buffer nr in a range
1598 int forceit)
1599{
1600 int do_current = 0; // delete current buffer?
1601 int deleted = 0; // number of buffers deleted
1602 char *errormsg = NULL; // return value
1603 int bnr; // buffer number
1604 char_u *p;
1605
1606 if (addr_count == 0)
1607 {
1608 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1609 }
1610 else
1611 {
1612 if (addr_count == 2)
1613 {
1614 if (*arg) // both range and argument is not allowed
1615 return ex_errmsg(e_trailing_arg, arg);
1616 bnr = start_bnr;
1617 }
1618 else // addr_count == 1
1619 bnr = end_bnr;
1620
1621 for ( ;!got_int; ui_breakcheck())
1622 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001623 // Delete the current buffer last, otherwise when the
1624 // current buffer is deleted, the next buffer becomes
1625 // the current one and will be loaded, which may then
1626 // also be deleted, etc.
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001627 if (bnr == curbuf->b_fnum)
1628 do_current = bnr;
1629 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr,
1630 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK)
1631 ++deleted;
1632
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001633 // find next buffer number to delete/unload
Bram Moolenaar7b4f76c2021-06-10 21:07:48 +02001634 if (addr_count == 2)
1635 {
1636 if (++bnr > end_bnr)
1637 break;
1638 }
1639 else // addr_count == 1
1640 {
1641 arg = skipwhite(arg);
1642 if (*arg == NUL)
1643 break;
1644 if (!VIM_ISDIGIT(*arg))
1645 {
1646 p = skiptowhite_esc(arg);
1647 bnr = buflist_findpat(arg, p,
1648 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
1649 FALSE, FALSE);
1650 if (bnr < 0) // failed
1651 break;
1652 arg = p;
1653 }
1654 else
1655 bnr = getdigits(&arg);
1656 }
1657 }
1658 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1659 FORWARD, do_current, forceit) == OK)
1660 ++deleted;
1661
1662 if (deleted == 0)
1663 {
1664 if (command == DOBUF_UNLOAD)
1665 STRCPY(IObuff, _("E515: No buffers were unloaded"));
1666 else if (command == DOBUF_DEL)
1667 STRCPY(IObuff, _("E516: No buffers were deleted"));
1668 else
1669 STRCPY(IObuff, _("E517: No buffers were wiped out"));
1670 errormsg = (char *)IObuff;
1671 }
1672 else if (deleted >= p_report)
1673 {
1674 if (command == DOBUF_UNLOAD)
1675 smsg(NGETTEXT("%d buffer unloaded",
1676 "%d buffers unloaded", deleted), deleted);
1677 else if (command == DOBUF_DEL)
1678 smsg(NGETTEXT("%d buffer deleted",
1679 "%d buffers deleted", deleted), deleted);
1680 else
1681 smsg(NGETTEXT("%d buffer wiped out",
1682 "%d buffers wiped out", deleted), deleted);
1683 }
1684 }
1685
1686
1687 return errormsg;
1688}
1689
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690/*
1691 * Set current buffer to "buf". Executes autocommands and closes current
1692 * buffer. "action" tells how to close the current buffer:
1693 * DOBUF_GOTO free or hide it
1694 * DOBUF_SPLIT nothing
1695 * DOBUF_UNLOAD unload it
1696 * DOBUF_DEL delete it
1697 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001698 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 */
1700 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001701set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702{
1703 buf_T *prevbuf;
1704 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001705 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001706#ifdef FEAT_SYN_HL
1707 long old_tw = curbuf->b_p_tw;
1708#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001709 bufref_T newbufref;
1710 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711
1712 setpcmark();
Bram Moolenaare1004402020-10-24 20:49:43 +02001713 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001714 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file
1715 buflist_altfpos(curwin); // remember curpos
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716
Bram Moolenaarc667da52019-11-30 20:52:27 +01001717 // Don't restart Select mode after switching to another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719
Bram Moolenaarc667da52019-11-30 20:52:27 +01001720 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001722 set_bufref(&prevbufref, prevbuf);
1723 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar983d83f2021-02-07 12:12:43 +01001725 // Autocommands may delete the current buffer and/or the buffer we want to
1726 // go to. In those cases don't close the buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001727 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001728 || (bufref_valid(&prevbufref)
1729 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001730#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001731 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001733 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001735#ifdef FEAT_SYN_HL
1736 if (prevbuf == curwin->w_buffer)
1737 reset_synblock(curwin);
1738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001740 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001741#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001742 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001744 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001746 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001747 win_T *previouswin = curwin;
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001748
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001749 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001750 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1752 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001753 && !buf_hide(prevbuf)
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001754 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0,
1755 FALSE, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001756 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaarc667da52019-11-30 20:52:27 +01001757 // autocommands changed curwin, Grr!
Bram Moolenaare25865a2012-07-06 16:22:02 +02001758 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001761 // An autocommand may have deleted "buf", already entered it (e.g., when
1762 // it did ":bunload") or aborted the script processing.
1763 // If curwin->w_buffer is null, enter_buffer() will make it valid again
Bram Moolenaar9e931222012-06-20 11:55:01 +02001764 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001765#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001766 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001768 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001769 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001771#ifdef FEAT_SYN_HL
1772 if (old_tw != curbuf->b_p_tw)
1773 check_colorcolumn(curwin);
1774#endif
1775 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776}
1777
1778/*
1779 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001780 * Old curbuf must have been abandoned already! This also means "curbuf" may
1781 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001783 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001784enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001786 // Get the buffer in the current window.
1787 curwin->w_buffer = buf;
1788 curbuf = buf;
1789 ++curbuf->b_nwindows;
1790
1791 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1793 if (!buf->b_help)
1794 get_winopts(buf);
1795#ifdef FEAT_FOLDING
1796 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001797 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001799 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800#endif
1801
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001803 if (curwin->w_p_diff)
1804 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805#endif
1806
Bram Moolenaara971b822011-09-14 14:43:25 +02001807#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001808 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001809#endif
1810
Bram Moolenaarc667da52019-11-30 20:52:27 +01001811 // Cursor on first line by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 curwin->w_cursor.lnum = 1;
1813 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001816 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817
Bram Moolenaarc667da52019-11-30 20:52:27 +01001818 // mark cursor position as being invalid
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001819 curwin->w_valid = 0;
1820
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001821 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1822 curbuf->b_last_cursor.col, TRUE);
1823
Bram Moolenaarc667da52019-11-30 20:52:27 +01001824 // Make sure the buffer is loaded.
1825 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001826 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001827 // If there is no filetype, allow for detecting one. Esp. useful for
1828 // ":ball" used in a autocommand. If there already is a filetype we
1829 // might prefer to keep it.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001830 if (*curbuf->b_p_ft == NUL)
1831 did_filetype = FALSE;
1832
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001833 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 else
1836 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001837 if (!msg_silent && !shortmess(SHM_FILEINFO))
1838 need_fileinfo = TRUE; // display file info after redraw
1839
1840 // check if file changed
1841 (void)buf_check_timestamp(curbuf, FALSE);
1842
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001844#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1848 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 }
1850
Bram Moolenaarc667da52019-11-30 20:52:27 +01001851 // If autocommands did not change the cursor position, restore cursor lnum
1852 // and possibly cursor col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if (curwin->w_cursor.lnum == 1 && inindent(0))
1854 buflist_getfpos();
1855
Bram Moolenaarc667da52019-11-30 20:52:27 +01001856 check_arg_idx(curwin); // check for valid arg_idx
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 maketitle();
Bram Moolenaarc667da52019-11-30 20:52:27 +01001858 // when autocmds didn't change it
Bram Moolenaard4153d42008-11-15 15:06:17 +00001859 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001860 scroll_cursor_halfway(FALSE); // redisplay at correct position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861
Bram Moolenaar009b2592004-10-24 19:18:58 +00001862#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarc667da52019-11-30 20:52:27 +01001863 // Send fileOpened event because we've changed buffers.
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001864 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001865#endif
1866
Bram Moolenaarc667da52019-11-30 20:52:27 +01001867 // Change directories when the 'acd' option is set.
Bram Moolenaar6f470022018-04-10 18:47:20 +02001868 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869
1870#ifdef FEAT_KEYMAP
1871 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001872 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001874#ifdef FEAT_SPELL
Bram Moolenaarc667da52019-11-30 20:52:27 +01001875 // May need to set the spell language. Can only do this after the buffer
1876 // has been properly setup.
Bram Moolenaar860cae12010-06-05 23:22:07 +02001877 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1878 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001879#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001880#ifdef FEAT_VIMINFO
1881 curbuf->b_last_used = vim_time();
1882#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001883
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 redraw_later(NOT_VALID);
1885}
1886
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001887#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1888/*
1889 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001890 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001891 */
1892 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001893do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001894{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001895 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001896 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001897 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar05268152021-11-18 18:53:45 +00001898 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001899 shorten_fnames(TRUE);
Bram Moolenaar05268152021-11-18 18:53:45 +00001900 last_chdir_reason = "autochdir";
1901 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001902}
1903#endif
1904
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001905 void
1906no_write_message(void)
1907{
1908#ifdef FEAT_TERMINAL
1909 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001910 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001911 else
1912#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001913 emsg(_(e_no_write_since_last_change_add_bang_to_override));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001914}
1915
1916 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001917no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001918{
1919#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001920 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001921 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001922 else
1923#endif
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001924 emsg(_(e_no_write_since_last_change));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001925}
1926
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927/*
1928 * functions for dealing with the buffer list
1929 */
1930
1931/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001932 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1933 * only one window. That means it can be re-used.
1934 */
1935 int
1936curbuf_reusable(void)
1937{
1938 return (curbuf != NULL
1939 && curbuf->b_ffname == NULL
1940 && curbuf->b_nwindows <= 1
1941 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001942#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001943 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001944#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001945 && !curbufIsChanged());
1946}
1947
1948/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 * Add a file name to the buffer list. Return a pointer to the buffer.
1950 * If the same file name already exists return a pointer to that buffer.
1951 * If it does not exist, or if fname == NULL, a new entry is created.
1952 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1953 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1954 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001955 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001956 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1957 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001958 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 * This is the ONLY way to create a new buffer.
1960 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001962buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001963 char_u *ffname_arg, // full path of fname or relative
1964 char_u *sfname_arg, // short fname or NULL
1965 linenr_T lnum, // preferred cursor line
1966 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001968 char_u *ffname = ffname_arg;
1969 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 buf_T *buf;
1971#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001972 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973#endif
1974
Bram Moolenaar480778b2016-07-14 22:09:39 +02001975 if (top_file_num == 1)
1976 hash_init(&buf_hashtab);
1977
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001978 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979
1980 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01001981 * If the file name already exists in the list, update the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 */
1983#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01001984 // On Unix we can use inode numbers when the file exists. Works better
1985 // for hard links.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1987 st.st_dev = (dev_T)-1;
1988#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001989 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990#ifdef UNIX
1991 buflist_findname_stat(ffname, &st)
1992#else
1993 buflist_findname(ffname)
1994#endif
1995 ) != NULL)
1996 {
1997 vim_free(ffname);
1998 if (lnum != 0)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01001999 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin,
2000 lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02002001
2002 if ((flags & BLN_NOOPT) == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002003 // copy the options now, if 'cpo' doesn't have 's' and not done
2004 // already
Bram Moolenaar82404332016-07-10 17:00:38 +02002005 buf_copy_options(buf, 0);
2006
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 if ((flags & BLN_LISTED) && !buf->b_p_bl)
2008 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002009 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002010
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002012 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002014 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002015 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002016 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002017 return NULL;
2018 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 }
2020 return buf;
2021 }
2022
2023 /*
2024 * If the current buffer has no name and no contents, use the current
2025 * buffer. Otherwise: Need to allocate a new buffer structure.
2026 *
2027 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00002028 * (A spell file buffer is allocated in spell.c, but that's not a normal
2029 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 */
2031 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02002032 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 {
2034 buf = curbuf;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002035 // It's like this buffer is deleted. Watch out for autocommands that
2036 // change curbuf! If that happens, allocate a new buffer anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 if (curbuf->b_p_bl)
2038 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2039 if (buf == curbuf)
2040 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002041#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002042 if (aborting()) // autocmds may abort script processing
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002043 {
2044 vim_free(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 return NULL;
Bram Moolenaar14285cb2020-03-27 20:58:37 +01002046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002050 // Make sure 'bufhidden' and 'buftype' are empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 clear_string_option(&buf->b_p_bh);
2052 clear_string_option(&buf->b_p_bt);
2053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 }
2055 if (buf != curbuf || curbuf == NULL)
2056 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002057 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 if (buf == NULL)
2059 {
2060 vim_free(ffname);
2061 return NULL;
2062 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002063#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002064 // init b: variables
Bram Moolenaar429fa852013-04-15 12:27:36 +02002065 buf->b_vars = dict_alloc();
2066 if (buf->b_vars == NULL)
2067 {
2068 vim_free(ffname);
2069 vim_free(buf);
2070 return NULL;
2071 }
2072 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2073#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002074 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 }
2076
2077 if (ffname != NULL)
2078 {
2079 buf->b_ffname = ffname;
2080 buf->b_sfname = vim_strsave(sfname);
2081 }
2082
2083 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002084 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085
2086 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2087 || buf->b_wininfo == NULL)
2088 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002089 if (buf->b_sfname != buf->b_ffname)
2090 VIM_CLEAR(buf->b_sfname);
2091 else
2092 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002093 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 if (buf != curbuf)
2095 free_buffer(buf);
2096 return NULL;
2097 }
2098
2099 if (buf == curbuf)
2100 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002101 // free all things allocated for this buffer
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002102 buf_freeall(buf, 0);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002103 if (buf != curbuf) // autocommands deleted the buffer!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002105#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002106 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 return NULL;
2108#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002109 free_buffer_stuff(buf, FALSE); // delete local variables et al.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002110
Bram Moolenaarc667da52019-11-30 20:52:27 +01002111 // Init the options.
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002112 buf->b_p_initialized = FALSE;
2113 buf_copy_options(buf, BCO_ENTER);
2114
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115#ifdef FEAT_KEYMAP
Bram Moolenaarc667da52019-11-30 20:52:27 +01002116 // need to reload lmaps and set b:keymap_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 curbuf->b_kmap_state |= KEYMAP_INIT;
2118#endif
2119 }
2120 else
2121 {
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002122 // put the new buffer at the end of the buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 buf->b_next = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002124 if (firstbuf == NULL) // buffer list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 {
2126 buf->b_prev = NULL;
2127 firstbuf = buf;
2128 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002129 else // append new buffer at end of list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 {
2131 lastbuf->b_next = buf;
2132 buf->b_prev = lastbuf;
2133 }
2134 lastbuf = buf;
2135
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002136 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2137 {
2138 // Recycle a previously used buffer number. Used for buffers which
2139 // are normally hidden, e.g. in a popup window. Avoids that the
2140 // buffer number grows rapidly.
2141 --buf_reuse.ga_len;
2142 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
Bram Moolenaar99ebf222019-12-10 23:44:48 +01002143
2144 // Move buffer to the right place in the buffer list.
2145 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum)
2146 {
2147 buf_T *prev = buf->b_prev;
2148
2149 prev->b_next = buf->b_next;
2150 if (prev->b_next != NULL)
2151 prev->b_next->b_prev = prev;
2152 buf->b_next = prev;
2153 buf->b_prev = prev->b_prev;
2154 if (buf->b_prev != NULL)
2155 buf->b_prev->b_next = buf;
2156 prev->b_prev = buf;
2157 if (lastbuf == buf)
2158 lastbuf = prev;
2159 if (firstbuf == prev)
2160 firstbuf = buf;
2161 }
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002162 }
2163 else
2164 buf->b_fnum = top_file_num++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002165 if (top_file_num < 0) // wrap around (may cause duplicates)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002167 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002168 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 {
2170 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002171 ui_delay(3001L, TRUE); // make sure it is noticed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 }
2173 top_file_num = 1;
2174 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002175 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002177 // Always copy the options from the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 buf_copy_options(buf, BCO_ALWAYS);
2179 }
2180
2181 buf->b_wininfo->wi_fpos.lnum = lnum;
2182 buf->b_wininfo->wi_win = curwin;
2183
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002184#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002185 hash_init(&buf->b_s.b_keywtab);
2186 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187#endif
2188
2189 buf->b_fname = buf->b_sfname;
2190#ifdef UNIX
2191 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002192 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 else
2194 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002195 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 buf->b_dev = st.st_dev;
2197 buf->b_ino = st.st_ino;
2198 }
2199#endif
2200 buf->b_u_synced = TRUE;
2201 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002202 if (flags & BLN_DUMMY)
2203 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 buf_clear_file(buf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002205 clrallmarks(buf); // clear marks
2206 fmarks_check_names(buf); // check file marks for this file
2207 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 if (!(flags & BLN_DUMMY))
2209 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002210 bufref_T bufref;
2211
Bram Moolenaarc667da52019-11-30 20:52:27 +01002212 // Tricky: these autocommands may change the buffer list. They could
2213 // also split the window with re-using the one empty buffer. This may
2214 // result in unexpectedly losing the empty buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002215 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002216 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002217 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002218 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002220 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002221 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002222 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002223 return NULL;
2224 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002225#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01002226 if (aborting()) // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230
2231 return buf;
2232}
2233
2234/*
2235 * Free the memory for the options of a buffer.
2236 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2237 * 'fileencoding'.
2238 */
2239 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002240free_buf_options(
2241 buf_T *buf,
2242 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243{
2244 if (free_p_ff)
2245 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 clear_string_option(&buf->b_p_bh);
2249 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 }
2251#ifdef FEAT_FIND_ID
2252 clear_string_option(&buf->b_p_def);
2253 clear_string_option(&buf->b_p_inc);
2254# ifdef FEAT_EVAL
2255 clear_string_option(&buf->b_p_inex);
2256# endif
2257#endif
2258#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2259 clear_string_option(&buf->b_p_inde);
2260 clear_string_option(&buf->b_p_indk);
2261#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002262#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2263 clear_string_option(&buf->b_p_bexpr);
2264#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002265#if defined(FEAT_CRYPT)
2266 clear_string_option(&buf->b_p_cm);
2267#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002268 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002269#if defined(FEAT_EVAL)
2270 clear_string_option(&buf->b_p_fex);
2271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272#ifdef FEAT_CRYPT
Bram Moolenaar131530a2021-07-29 20:37:49 +02002273# ifdef FEAT_SODIUM
2274 if (buf->b_p_key != NULL && (crypt_get_method_nr(buf) == CRYPT_M_SOD))
2275 sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key));
2276# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 clear_string_option(&buf->b_p_key);
2278#endif
2279 clear_string_option(&buf->b_p_kp);
2280 clear_string_option(&buf->b_p_mps);
2281 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002282 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002284#ifdef FEAT_VARTABS
2285 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002286 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002287 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002288 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002289 buf->b_p_vsts_array = NULL;
2290 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002291 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002292#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293#ifdef FEAT_KEYMAP
2294 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002295 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 ga_clear(&buf->b_kmap_ga);
2297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299#ifdef FEAT_FOLDING
2300 clear_string_option(&buf->b_p_cms);
2301#endif
2302 clear_string_option(&buf->b_p_nf);
2303#ifdef FEAT_SYN_HL
2304 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002305 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002306#endif
2307#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002308 clear_string_option(&buf->b_s.b_p_spc);
2309 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002310 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002311 buf->b_s.b_cap_prog = NULL;
2312 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02002313 clear_string_option(&buf->b_s.b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314#endif
2315#ifdef FEAT_SEARCHPATH
2316 clear_string_option(&buf->b_p_sua);
2317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319#ifdef FEAT_CINDENT
2320 clear_string_option(&buf->b_p_cink);
2321 clear_string_option(&buf->b_p_cino);
2322#endif
2323#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2324 clear_string_option(&buf->b_p_cinw);
2325#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002327#ifdef FEAT_COMPL_FUNC
2328 clear_string_option(&buf->b_p_cfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002329 free_callback(&buf->b_cfu_cb);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002330 clear_string_option(&buf->b_p_ofu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002331 free_callback(&buf->b_ofu_cb);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01002332 clear_string_option(&buf->b_p_tsrfu);
Yegappan Lakshmanan8658c752021-12-03 11:09:29 +00002333 free_callback(&buf->b_tsrfu_cb);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335#ifdef FEAT_QUICKFIX
2336 clear_string_option(&buf->b_p_gp);
2337 clear_string_option(&buf->b_p_mp);
2338 clear_string_option(&buf->b_p_efm);
2339#endif
2340 clear_string_option(&buf->b_p_ep);
2341 clear_string_option(&buf->b_p_path);
2342 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002343 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002344#ifdef FEAT_EVAL
2345 clear_string_option(&buf->b_p_tfu);
Yegappan Lakshmanan19916a82021-11-24 16:32:55 +00002346 free_callback(&buf->b_tfu_cb);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002347#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 clear_string_option(&buf->b_p_dict);
2349 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002350#ifdef FEAT_TEXTOBJ
2351 clear_string_option(&buf->b_p_qe);
2352#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002354 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002355#ifdef FEAT_LISP
2356 clear_string_option(&buf->b_p_lw);
2357#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002358 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002359 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360}
2361
2362/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002363 * Get alternate file "n".
2364 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2365 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 * if (options & GETF_SETMARK) call setpcmark()
2367 * if (options & GETF_ALT) we are jumping to an alternate file.
2368 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2369 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002370 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 */
2372 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002373buflist_getfile(
2374 int n,
2375 linenr_T lnum,
2376 int options,
2377 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378{
2379 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 pos_T *fpos;
2382 colnr_T col;
2383
2384 buf = buflist_findnr(n);
2385 if (buf == NULL)
2386 {
2387 if ((options & GETF_ALT) && n == 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002388 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002390 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 return FAIL;
2392 }
2393
Bram Moolenaarc667da52019-11-30 20:52:27 +01002394 // if alternate file is the current buffer, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 if (buf == curbuf)
2396 return OK;
2397
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002398 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002399 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002400 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002402 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002403 if (curbuf_locked())
2404 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405
Bram Moolenaarc667da52019-11-30 20:52:27 +01002406 // altfpos may be changed by getfile(), get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 if (lnum == 0)
2408 {
2409 fpos = buflist_findfpos(buf);
2410 lnum = fpos->lnum;
2411 col = fpos->col;
2412 }
2413 else
2414 col = 0;
2415
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 if (options & GETF_SWITCH)
2417 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002418 // If 'switchbuf' contains "useopen": jump to first window containing
2419 // "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002420 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002422
Bram Moolenaarc667da52019-11-30 20:52:27 +01002423 // If 'switchbuf' contains "usetab": jump to first window in any tab
2424 // page containing "buf" if one exists
Bram Moolenaarf2330482008-06-24 20:19:36 +00002425 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002426 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002427
Bram Moolenaarc667da52019-11-30 20:52:27 +01002428 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2429 // current buffer isn't empty: open new tab or window
Bram Moolenaara594d772015-06-19 14:41:49 +02002430 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002431 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002433 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002434 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002435 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2436 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002438 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 }
2440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441
2442 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002443 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2444 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 {
2446 --RedrawingDisabled;
2447
Bram Moolenaarc667da52019-11-30 20:52:27 +01002448 // cursor is at to BOL and w_cursor.lnum is checked due to getfile()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 if (!p_sol && col != 0)
2450 {
2451 curwin->w_cursor.col = col;
2452 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 curwin->w_set_curswant = TRUE;
2455 }
2456 return OK;
2457 }
2458 --RedrawingDisabled;
2459 return FAIL;
2460}
2461
2462/*
2463 * go to the last know line number for the current buffer
2464 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002465 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002466buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467{
2468 pos_T *fpos;
2469
2470 fpos = buflist_findfpos(curbuf);
2471
2472 curwin->w_cursor.lnum = fpos->lnum;
2473 check_cursor_lnum();
2474
2475 if (p_sol)
2476 curwin->w_cursor.col = 0;
2477 else
2478 {
2479 curwin->w_cursor.col = fpos->col;
2480 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 curwin->w_set_curswant = TRUE;
2483 }
2484}
2485
Bram Moolenaar81695252004-12-29 20:58:21 +00002486#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2487/*
2488 * Find file in buffer list by name (it has to be for the current window).
2489 * Returns NULL if not found.
2490 */
2491 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002492buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002493{
2494 char_u *ffname;
2495 buf_T *buf = NULL;
2496
Bram Moolenaarc667da52019-11-30 20:52:27 +01002497 // First make the name into a full path name
Bram Moolenaar81695252004-12-29 20:58:21 +00002498 ffname = FullName_save(fname,
2499#ifdef UNIX
Bram Moolenaarc667da52019-11-30 20:52:27 +01002500 TRUE // force expansion, get rid of symbolic links
Bram Moolenaar81695252004-12-29 20:58:21 +00002501#else
2502 FALSE
2503#endif
2504 );
2505 if (ffname != NULL)
2506 {
2507 buf = buflist_findname(ffname);
2508 vim_free(ffname);
2509 }
2510 return buf;
2511}
2512#endif
2513
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514/*
2515 * Find file in buffer list by name (it has to be for the current window).
2516 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002517 * Skips dummy buffers.
2518 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 */
2520 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002521buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522{
2523#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002524 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525
2526 if (mch_stat((char *)ffname, &st) < 0)
2527 st.st_dev = (dev_T)-1;
2528 return buflist_findname_stat(ffname, &st);
2529}
2530
2531/*
2532 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2533 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002534 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 */
2536 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002537buflist_findname_stat(
2538 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002539 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540{
2541#endif
2542 buf_T *buf;
2543
Bram Moolenaarc667da52019-11-30 20:52:27 +01002544 // Start at the last buffer, expect to find a match sooner.
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002545 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar81695252004-12-29 20:58:21 +00002546 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547#ifdef UNIX
2548 , stp
2549#endif
2550 ))
2551 return buf;
2552 return NULL;
2553}
2554
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555/*
2556 * Find file in buffer list by a regexp pattern.
2557 * Return fnum of the found buffer.
2558 * Return < 0 for error.
2559 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002561buflist_findpat(
2562 char_u *pattern,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002563 char_u *pattern_end, // pointer to first char after pattern
2564 int unlisted, // find unlisted buffers
2565 int diffmode UNUSED, // find diff-mode buffers only
2566 int curtab_only) // find buffers in current tab only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567{
2568 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 int match = -1;
2570 int find_listed;
2571 char_u *pat;
2572 char_u *patend;
2573 int attempt;
2574 char_u *p;
2575 int toggledollar;
2576
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002577 // "%" is current file, "%%" or "#" is alternate file
2578 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2579 || (in_vim9script() && pattern_end == pattern + 2
2580 && pattern[0] == '%' && pattern[1] == '%'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 {
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002582 if (*pattern == '#' || pattern_end == pattern + 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 match = curwin->w_alt_fnum;
Bram Moolenaardfbc5fd2021-01-23 15:15:01 +01002584 else
2585 match = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586#ifdef FEAT_DIFF
2587 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2588 match = -1;
2589#endif
2590 }
2591
2592 /*
2593 * Try four ways of matching a listed buffer:
2594 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002595 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 * attempt == 2: with '$' at end (only match at end)
2597 * attempt == 3: with '^' at start and '$' at end (only full match)
2598 * Repeat this for finding an unlisted buffer if there was no matching
2599 * listed buffer.
2600 */
2601 else
2602 {
2603 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2604 if (pat == NULL)
2605 return -1;
2606 patend = pat + STRLEN(pat) - 1;
2607 toggledollar = (patend > pat && *patend == '$');
2608
Bram Moolenaarc667da52019-11-30 20:52:27 +01002609 // First try finding a listed buffer. If not found and "unlisted"
2610 // is TRUE, try finding an unlisted buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 find_listed = TRUE;
2612 for (;;)
2613 {
2614 for (attempt = 0; attempt <= 3; ++attempt)
2615 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002616 regmatch_T regmatch;
2617
Bram Moolenaarc667da52019-11-30 20:52:27 +01002618 // may add '^' and '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 if (toggledollar)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002620 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 p = pat;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002622 if (*p == '^' && !(attempt & 1)) // add/remove '^'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 ++p;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01002624 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002625 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 {
2627 vim_free(pat);
2628 return -1;
2629 }
2630
Bram Moolenaar00d253e2020-04-06 22:13:01 +02002631 FOR_ALL_BUFS_FROM_LAST(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 if (buf->b_p_bl == find_listed
2633#ifdef FEAT_DIFF
2634 && (!diffmode || diff_mode_buf(buf))
2635#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002636 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002638 if (curtab_only)
2639 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002640 // Ignore the match if the buffer is not open in
2641 // the current tab.
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002642 win_T *wp;
2643
Bram Moolenaar29323592016-07-24 22:04:11 +02002644 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002645 if (wp->w_buffer == buf)
2646 break;
2647 if (wp == NULL)
2648 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002649 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002650 if (match >= 0) // already found a match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 {
2652 match = -2;
2653 break;
2654 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002655 match = buf->b_fnum; // remember first match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 }
2657
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002658 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002659 if (match >= 0) // found one match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 break;
2661 }
2662
Bram Moolenaarc667da52019-11-30 20:52:27 +01002663 // Only search for unlisted buffers if there was no match with
2664 // a listed buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 if (!unlisted || !find_listed || match != -1)
2666 break;
2667 find_listed = FALSE;
2668 }
2669
2670 vim_free(pat);
2671 }
2672
2673 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002674 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002676 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 return match;
2678}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
Bram Moolenaar52410572019-10-27 05:12:45 +01002680#ifdef FEAT_VIMINFO
2681typedef struct {
2682 buf_T *buf;
2683 char_u *match;
2684} bufmatch_T;
2685#endif
2686
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687/*
2688 * Find all buffer names that match.
2689 * For command line expansion of ":buf" and ":sbuf".
2690 * Return OK if matches found, FAIL otherwise.
2691 */
2692 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002693ExpandBufnames(
2694 char_u *pat,
2695 int *num_file,
2696 char_u ***file,
2697 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698{
2699 int count = 0;
2700 buf_T *buf;
2701 int round;
2702 char_u *p;
2703 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002704 char_u *patc;
Bram Moolenaar52410572019-10-27 05:12:45 +01002705#ifdef FEAT_VIMINFO
2706 bufmatch_T *matches = NULL;
2707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708
Bram Moolenaarc667da52019-11-30 20:52:27 +01002709 *num_file = 0; // return values in case of FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 *file = NULL;
2711
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002712#ifdef FEAT_DIFF
2713 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff)
2714 return FAIL;
2715#endif
2716
Bram Moolenaarc667da52019-11-30 20:52:27 +01002717 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002718 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002720 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002721 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002723 STRCPY(patc, "\\(^\\|[\\/]\\)");
2724 STRCPY(patc + 11, pat + 1);
2725 }
2726 else
2727 patc = pat;
2728
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002729 // attempt == 0: try match with '\<', match at start of word
2730 // attempt == 1: try match without '\<', match anywhere
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002731 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002732 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002733 regmatch_T regmatch;
2734
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002735 if (attempt > 0 && patc == pat)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002736 break; // there was no anchor, no need to try again
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002737 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2738 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002739 {
2740 if (patc != pat)
2741 vim_free(patc);
2742 return FAIL;
2743 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744
Bram Moolenaarc5935a82021-10-19 20:48:52 +01002745 // round == 1: Count the matches.
2746 // round == 2: Build the array to keep the matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 for (round = 1; round <= 2; ++round)
2748 {
2749 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002750 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002752 if (!buf->b_p_bl) // skip unlisted buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 continue;
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002754#ifdef FEAT_DIFF
2755 if (options & BUF_DIFF_FILTER)
2756 // Skip buffers not suitable for
2757 // :diffget or :diffput completion.
Bram Moolenaarefcc3292019-12-30 21:59:03 +01002758 if (buf == curbuf || !diff_mode_buf(buf))
Bram Moolenaarae7dba82019-12-29 13:56:33 +01002759 continue;
2760#endif
2761
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002762 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 if (p != NULL)
2764 {
2765 if (round == 1)
2766 ++count;
2767 else
2768 {
2769 if (options & WILD_HOME_REPLACE)
2770 p = home_replace_save(buf, p);
2771 else
2772 p = vim_strsave(p);
Bram Moolenaar52410572019-10-27 05:12:45 +01002773#ifdef FEAT_VIMINFO
2774 if (matches != NULL)
2775 {
2776 matches[count].buf = buf;
2777 matches[count].match = p;
2778 count++;
2779 }
2780 else
2781#endif
2782 (*file)[count++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 }
2784 }
2785 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002786 if (count == 0) // no match found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 break;
2788 if (round == 1)
2789 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002790 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 if (*file == NULL)
2792 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002793 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002794 if (patc != pat)
2795 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 return FAIL;
2797 }
Bram Moolenaar52410572019-10-27 05:12:45 +01002798#ifdef FEAT_VIMINFO
2799 if (options & WILD_BUFLASTUSED)
2800 matches = ALLOC_MULT(bufmatch_T, count);
2801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 }
2803 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002804 vim_regfree(regmatch.regprog);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002805 if (count) // match(es) found, break here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 break;
2807 }
2808
Bram Moolenaar05159a02005-02-26 23:04:13 +00002809 if (patc != pat)
2810 vim_free(patc);
2811
Bram Moolenaar52410572019-10-27 05:12:45 +01002812#ifdef FEAT_VIMINFO
2813 if (matches != NULL)
2814 {
2815 int i;
2816 if (count > 1)
2817 qsort(matches, count, sizeof(bufmatch_T), buf_compare);
2818 // if the current buffer is first in the list, place it at the end
2819 if (matches[0].buf == curbuf)
2820 {
2821 for (i = 1; i < count; i++)
2822 (*file)[i-1] = matches[i].match;
2823 (*file)[count-1] = matches[0].match;
2824 }
2825 else
2826 {
2827 for (i = 0; i < count; i++)
2828 (*file)[i] = matches[i].match;
2829 }
2830 vim_free(matches);
2831 }
2832#endif
2833
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 *num_file = count;
2835 return (count == 0 ? FAIL : OK);
2836}
2837
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838/*
2839 * Check for a match on the file name for buffer "buf" with regprog "prog".
2840 */
2841 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002842buflist_match(
2843 regmatch_T *rmp,
2844 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002845 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846{
2847 char_u *match;
2848
Bram Moolenaarc667da52019-11-30 20:52:27 +01002849 // First try the short file name, then the long file name.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002850 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002852 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853
2854 return match;
2855}
2856
2857/*
2858 * Try matching the regexp in "prog" with file name "name".
2859 * Return "name" when there is a match, NULL when not.
2860 */
2861 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002862fname_match(
2863 regmatch_T *rmp,
2864 char_u *name,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002865 int ignore_case) // when TRUE ignore case, when FALSE use 'fic'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866{
2867 char_u *match = NULL;
2868 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869
2870 if (name != NULL)
2871 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002872 // Ignore case when 'fileignorecase' or the argument is set.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002873 rmp->rm_ic = p_fic || ignore_case;
2874 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 match = name;
2876 else
2877 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002878 // Replace $(HOME) with '~' and try matching again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002880 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 match = name;
2882 vim_free(p);
2883 }
2884 }
2885
2886 return match;
2887}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
2889/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002890 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 */
2892 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002893buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002895 char_u key[VIM_SIZEOF_INT * 2 + 1];
2896 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897
2898 if (nr == 0)
2899 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002900 sprintf((char *)key, "%x", nr);
2901 hi = hash_find(&buf_hashtab, key);
2902
2903 if (!HASHITEM_EMPTY(hi))
2904 return (buf_T *)(hi->hi_key
2905 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 return NULL;
2907}
2908
2909/*
2910 * Get name of file 'n' in the buffer list.
2911 * When the file has no name an empty string is returned.
2912 * home_replace() is used to shorten the file name (used for marks).
2913 * Returns a pointer to allocated memory, of NULL when failed.
2914 */
2915 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002916buflist_nr2name(
2917 int n,
2918 int fullname,
Bram Moolenaarc667da52019-11-30 20:52:27 +01002919 int helptail) // for help buffers return tail only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920{
2921 buf_T *buf;
2922
2923 buf = buflist_findnr(n);
2924 if (buf == NULL)
2925 return NULL;
2926 return home_replace_save(helptail ? buf : NULL,
2927 fullname ? buf->b_ffname : buf->b_fname);
2928}
2929
2930/*
2931 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2932 * When "copy_options" is TRUE save the local window option values.
2933 * When "lnum" is 0 only do the options.
2934 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002935 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002936buflist_setfpos(
2937 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002938 win_T *win, // may be NULL when using :badd
Bram Moolenaar7454a062016-01-30 15:14:10 +01002939 linenr_T lnum,
2940 colnr_T col,
2941 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942{
2943 wininfo_T *wip;
2944
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002945 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 if (wip->wi_win == win)
2947 break;
2948 if (wip == NULL)
2949 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002950 // allocate a new entry
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002951 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 if (wip == NULL)
2953 return;
2954 wip->wi_win = win;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002955 if (lnum == 0) // set lnum even when it's 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 lnum = 1;
2957 }
2958 else
2959 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002960 // remove the entry from the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 if (wip->wi_prev)
2962 wip->wi_prev->wi_next = wip->wi_next;
2963 else
2964 buf->b_wininfo = wip->wi_next;
2965 if (wip->wi_next)
2966 wip->wi_next->wi_prev = wip->wi_prev;
2967 if (copy_options && wip->wi_optset)
2968 {
2969 clear_winopt(&wip->wi_opt);
2970#ifdef FEAT_FOLDING
2971 deleteFoldRecurse(&wip->wi_folds);
2972#endif
2973 }
2974 }
2975 if (lnum != 0)
2976 {
2977 wip->wi_fpos.lnum = lnum;
2978 wip->wi_fpos.col = col;
2979 }
Bram Moolenaar89b693e2020-10-25 17:09:50 +01002980 if (copy_options && win != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002982 // Save the window-specific option values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2984#ifdef FEAT_FOLDING
2985 wip->wi_fold_manual = win->w_fold_manual;
2986 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2987#endif
2988 wip->wi_optset = TRUE;
2989 }
2990
Bram Moolenaarc667da52019-11-30 20:52:27 +01002991 // insert the entry in front of the list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 wip->wi_next = buf->b_wininfo;
2993 buf->b_wininfo = wip;
2994 wip->wi_prev = NULL;
2995 if (wip->wi_next)
2996 wip->wi_next->wi_prev = wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997}
2998
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002999#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003000/*
3001 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
3002 * page. That's because a diff is local to a tab page.
3003 */
3004 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003005wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003006{
3007 win_T *wp;
3008
3009 if (wip->wi_opt.wo_diff)
3010 {
Bram Moolenaar29323592016-07-24 22:04:11 +02003011 FOR_ALL_WINDOWS(wp)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003012 // return FALSE when it's a window in the current tab page, thus
3013 // the buffer was in diff mode here
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003014 if (wip->wi_win == wp)
3015 return FALSE;
3016 return TRUE;
3017 }
3018 return FALSE;
3019}
3020#endif
3021
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022/*
3023 * Find info for the current window in buffer "buf".
3024 * If not found, return the info for the most recently used window.
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003025 * When "need_options" is TRUE skip entries where wi_optset is FALSE.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003026 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
3027 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 * Returns NULL when there isn't any info.
3029 */
3030 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003031find_wininfo(
3032 buf_T *buf,
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003033 int need_options,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003034 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035{
3036 wininfo_T *wip;
3037
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003038 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003039 if (wip->wi_win == curwin
3040#ifdef FEAT_DIFF
3041 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
3042#endif
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003043
3044 && (!need_options || wip->wi_optset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003046
Bram Moolenaarc667da52019-11-30 20:52:27 +01003047 // If no wininfo for curwin, use the first in the list (that doesn't have
3048 // 'diff' set and is in another tab page).
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003049 // If "need_options" is TRUE skip entries that don't have options set,
3050 // unless the window is editing "buf", so we can copy from the window
3051 // itself.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003052 if (wip == NULL)
3053 {
3054#ifdef FEAT_DIFF
3055 if (skip_diff_buffer)
3056 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003057 FOR_ALL_BUF_WININFO(buf, wip)
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003058 if (!wininfo_other_tab_diff(wip)
3059 && (!need_options || wip->wi_optset
3060 || (wip->wi_win != NULL
3061 && wip->wi_win->w_buffer == buf)))
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003062 break;
3063 }
3064 else
3065#endif
3066 wip = buf->b_wininfo;
3067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 return wip;
3069}
3070
3071/*
3072 * Reset the local window options to the values last used in this window.
3073 * If the buffer wasn't used in this window before, use the values from
3074 * the most recently used window. If the values were never set, use the
3075 * global values for the window.
3076 */
3077 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003078get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079{
3080 wininfo_T *wip;
3081
3082 clear_winopt(&curwin->w_onebuf_opt);
3083#ifdef FEAT_FOLDING
3084 clearFolding(curwin);
3085#endif
3086
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003087 wip = find_wininfo(buf, TRUE, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02003088 if (wip != NULL && wip->wi_win != NULL
3089 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003091 // The buffer is currently displayed in the window: use the actual
3092 // option values instead of the saved (possibly outdated) values.
Bram Moolenaar25782a72018-05-13 18:05:33 +02003093 win_T *wp = wip->wi_win;
3094
3095 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
3096#ifdef FEAT_FOLDING
3097 curwin->w_fold_manual = wp->w_fold_manual;
3098 curwin->w_foldinvalid = TRUE;
3099 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
3100#endif
3101 }
3102 else if (wip != NULL && wip->wi_optset)
3103 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003104 // the buffer was displayed in the current window earlier
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
3106#ifdef FEAT_FOLDING
3107 curwin->w_fold_manual = wip->wi_fold_manual;
3108 curwin->w_foldinvalid = TRUE;
3109 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
3110#endif
3111 }
3112 else
3113 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
3114
3115#ifdef FEAT_FOLDING
Bram Moolenaarc667da52019-11-30 20:52:27 +01003116 // Set 'foldlevel' to 'foldlevelstart' if it's not negative.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 if (p_fdls >= 0)
3118 curwin->w_p_fdl = p_fdls;
3119#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02003120 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121}
3122
3123/*
3124 * Find the position (lnum and col) for the buffer 'buf' for the current
3125 * window.
3126 * Returns a pointer to no_position if no position is found.
3127 */
3128 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003129buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130{
3131 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003132 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133
Bram Moolenaar89b693e2020-10-25 17:09:50 +01003134 wip = find_wininfo(buf, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 if (wip != NULL)
3136 return &(wip->wi_fpos);
3137 else
3138 return &no_position;
3139}
3140
3141/*
3142 * Find the lnum for the buffer 'buf' for the current window.
3143 */
3144 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003145buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146{
3147 return buflist_findfpos(buf)->lnum;
3148}
3149
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003151 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003154buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155{
Bram Moolenaar52410572019-10-27 05:12:45 +01003156 buf_T *buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 int len;
3158 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003159 int ro_char;
3160 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003161#ifdef FEAT_TERMINAL
3162 int job_running;
3163 int job_none_open;
3164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165
Bram Moolenaar52410572019-10-27 05:12:45 +01003166#ifdef FEAT_VIMINFO
3167 garray_T buflist;
3168 buf_T **buflist_data = NULL, **p;
3169
3170 if (vim_strchr(eap->arg, 't'))
3171 {
3172 ga_init2(&buflist, sizeof(buf_T *), 50);
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003173 FOR_ALL_BUFFERS(buf)
Bram Moolenaar52410572019-10-27 05:12:45 +01003174 {
3175 if (ga_grow(&buflist, 1) == OK)
3176 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf;
3177 }
3178
3179 qsort(buflist.ga_data, (size_t)buflist.ga_len,
3180 sizeof(buf_T *), buf_compare);
3181
Bram Moolenaar3b991522019-11-06 23:26:20 +01003182 buflist_data = (buf_T **)buflist.ga_data;
3183 buf = *buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003184 }
Bram Moolenaar3b991522019-11-06 23:26:20 +01003185 p = buflist_data;
Bram Moolenaar52410572019-10-27 05:12:45 +01003186
Bram Moolenaar3b991522019-11-06 23:26:20 +01003187 for (; buf != NULL && !got_int; buf = buflist_data != NULL
Bram Moolenaar52410572019-10-27 05:12:45 +01003188 ? (++p < buflist_data + buflist.ga_len ? *p : NULL)
3189 : buf->b_next)
3190#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
Bram Moolenaar52410572019-10-27 05:12:45 +01003192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003194#ifdef FEAT_TERMINAL
3195 job_running = term_job_running(buf->b_term);
3196 job_none_open = job_running && term_none_open(buf->b_term);
3197#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003198 // skip unlisted buffers, unless ! was used
Bram Moolenaard51cb702015-07-21 15:03:06 +02003199 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3200 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3201 || (vim_strchr(eap->arg, '+')
3202 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3203 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003204 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003205 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003206 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3207#ifdef FEAT_TERMINAL
3208 || (vim_strchr(eap->arg, 'R')
3209 && (!job_running || (job_running && job_none_open)))
3210 || (vim_strchr(eap->arg, '?')
3211 && (!job_running || (job_running && !job_none_open)))
3212 || (vim_strchr(eap->arg, 'F')
3213 && (job_running || buf->b_term == NULL))
3214#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003215 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3216 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3217 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3218 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3219 || (vim_strchr(eap->arg, '#')
3220 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003223 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 else
3225 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003226 if (message_filtered(NameBuff))
3227 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003229 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3230 : (bufIsChanged(buf) ? '+' : ' ');
3231#ifdef FEAT_TERMINAL
3232 if (term_job_running(buf->b_term))
3233 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003234 if (term_none_open(buf->b_term))
3235 ro_char = '?';
3236 else
3237 ro_char = 'R';
Bram Moolenaarc667da52019-11-30 20:52:27 +01003238 changed_char = ' '; // bufIsChanged() returns TRUE to avoid
3239 // closing, but it's not actually changed.
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003240 }
3241 else if (buf->b_term != NULL)
3242 ro_char = 'F';
3243 else
3244#endif
3245 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3246
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003247 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003248 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 buf->b_fnum,
3250 buf->b_p_bl ? ' ' : 'u',
3251 buf == curbuf ? '%' :
3252 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3253 buf->b_ml.ml_mfp == NULL ? ' ' :
3254 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003255 ro_char,
3256 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003257 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003258 if (len > IOSIZE - 20)
3259 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260
Bram Moolenaarc667da52019-11-30 20:52:27 +01003261 // put "line 999" in column 40 or after the file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 i = 40 - vim_strsize(IObuff);
3263 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003265 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar52410572019-10-27 05:12:45 +01003266#ifdef FEAT_VIMINFO
3267 if (vim_strchr(eap->arg, 't') && buf->b_last_used)
3268 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used);
3269 else
3270#endif
3271 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3272 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003273 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 msg_outtrans(IObuff);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003275 out_flush(); // output one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 ui_breakcheck();
3277 }
Bram Moolenaar52410572019-10-27 05:12:45 +01003278
3279#ifdef FEAT_VIMINFO
3280 if (buflist_data)
3281 ga_clear(&buflist);
3282#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284
3285/*
3286 * Get file name and line number for file 'fnum'.
3287 * Used by DoOneCmd() for translating '%' and '#'.
3288 * Used by insert_reg() and cmdline_paste() for '#' register.
3289 * Return FAIL if not found, OK for success.
3290 */
3291 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003292buflist_name_nr(
3293 int fnum,
3294 char_u **fname,
3295 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296{
3297 buf_T *buf;
3298
3299 buf = buflist_findnr(fnum);
3300 if (buf == NULL || buf->b_fname == NULL)
3301 return FAIL;
3302
3303 *fname = buf->b_fname;
3304 *lnum = buflist_findlnum(buf);
3305
3306 return OK;
3307}
3308
3309/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003310 * Set the file name for "buf"' to "ffname_arg", short file name to
3311 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 * The file name with the full path is also remembered, for when :cd is used.
3313 * Returns FAIL for failure (file name already in use by other buffer)
3314 * OK otherwise.
3315 */
3316 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003317setfname(
3318 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003319 char_u *ffname_arg,
3320 char_u *sfname_arg,
Bram Moolenaarc667da52019-11-30 20:52:27 +01003321 int message) // give message when buffer already exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003323 char_u *ffname = ffname_arg;
3324 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003325 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003327 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328#endif
3329
3330 if (ffname == NULL || *ffname == NUL)
3331 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003332 // Removing the name.
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003333 if (buf->b_sfname != buf->b_ffname)
3334 VIM_CLEAR(buf->b_sfname);
3335 else
3336 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003337 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338#ifdef UNIX
3339 st.st_dev = (dev_T)-1;
3340#endif
3341 }
3342 else
3343 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003344 fname_expand(buf, &ffname, &sfname); // will allocate ffname
3345 if (ffname == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 return FAIL;
3347
3348 /*
Bram Moolenaarc5935a82021-10-19 20:48:52 +01003349 * If the file name is already used in another buffer:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 * - if the buffer is loaded, fail
3351 * - if the buffer is not loaded, delete it from the list
3352 */
3353#ifdef UNIX
3354 if (mch_stat((char *)ffname, &st) < 0)
3355 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003356#endif
3357 if (!(buf->b_flags & BF_DUMMY))
3358#ifdef UNIX
3359 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003361 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362#endif
3363 if (obuf != NULL && obuf != buf)
3364 {
Bram Moolenaard3710cf2021-10-04 23:13:13 +01003365 win_T *win;
3366 tabpage_T *tab;
3367 int in_use = FALSE;
3368
3369 // during startup a window may use a buffer that is not loaded yet
3370 FOR_ALL_TAB_WINDOWS(tab, win)
3371 if (win->w_buffer == obuf)
3372 in_use = TRUE;
3373
3374 // it's loaded or used in a window, fail
3375 if (obuf->b_ml.ml_mfp != NULL || in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 {
3377 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003378 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 vim_free(ffname);
3380 return FAIL;
3381 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003382 // delete from the list
Bram Moolenaara6e8f882019-12-14 16:18:15 +01003383 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 }
3385 sfname = vim_strsave(sfname);
3386 if (ffname == NULL || sfname == NULL)
3387 {
3388 vim_free(sfname);
3389 vim_free(ffname);
3390 return FAIL;
3391 }
3392#ifdef USE_FNAME_CASE
Bram Moolenaarc667da52019-11-30 20:52:27 +01003393 fname_case(sfname, 0); // set correct case for short file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003395 if (buf->b_sfname != buf->b_ffname)
3396 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 buf->b_ffname = ffname;
3399 buf->b_sfname = sfname;
3400 }
3401 buf->b_fname = buf->b_sfname;
3402#ifdef UNIX
3403 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003404 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 else
3406 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003407 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 buf->b_dev = st.st_dev;
3409 buf->b_ino = st.st_ino;
3410 }
3411#endif
3412
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414
3415 buf_name_changed(buf);
3416 return OK;
3417}
3418
3419/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003420 * Crude way of changing the name of a buffer. Use with care!
3421 * The name should be relative to the current directory.
3422 */
3423 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003424buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003425{
3426 buf_T *buf;
3427
3428 buf = buflist_findnr(fnum);
3429 if (buf != NULL)
3430 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003431 if (buf->b_sfname != buf->b_ffname)
3432 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003433 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003434 buf->b_ffname = vim_strsave(name);
3435 buf->b_sfname = NULL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003436 // Allocate ffname and expand into full path. Also resolves .lnk
3437 // files on Win32.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003438 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003439 buf->b_fname = buf->b_sfname;
3440 }
3441}
3442
3443/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 * Take care of what needs to be done when the name of buffer "buf" has
3445 * changed.
3446 */
3447 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003448buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449{
3450 /*
3451 * If the file name changed, also change the name of the swapfile
3452 */
3453 if (buf->b_ml.ml_mfp != NULL)
3454 ml_setname(buf);
3455
Bram Moolenaar3ad69532021-11-19 17:01:08 +00003456#ifdef FEAT_TERMINAL
3457 if (buf->b_term != NULL)
3458 term_clear_status_text(buf->b_term);
3459#endif
3460
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 if (curwin->w_buffer == buf)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003462 check_arg_idx(curwin); // check file name for arg list
Bram Moolenaarc667da52019-11-30 20:52:27 +01003463 maketitle(); // set window title
Bram Moolenaarc667da52019-11-30 20:52:27 +01003464 status_redraw_all(); // status lines need to be redrawn
3465 fmarks_check_names(buf); // check named file marks
3466 ml_timestamp(buf); // reset timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467}
3468
3469/*
3470 * set alternate file name for current window
3471 *
3472 * Used by do_one_cmd(), do_write() and do_ecmd().
3473 * Return the buffer.
3474 */
3475 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003476setaltfname(
3477 char_u *ffname,
3478 char_u *sfname,
3479 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480{
3481 buf_T *buf;
3482
Bram Moolenaarc667da52019-11-30 20:52:27 +01003483 // Create a buffer. 'buflisted' is not set if it's a new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaare1004402020-10-24 20:49:43 +02003485 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 curwin->w_alt_fnum = buf->b_fnum;
3487 return buf;
3488}
3489
3490/*
3491 * Get alternate file name for current window.
3492 * Return NULL if there isn't any, and give error message if requested.
3493 */
3494 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003495getaltfname(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003496 int errmsg) // give error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497{
3498 char_u *fname;
3499 linenr_T dummy;
3500
3501 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3502 {
3503 if (errmsg)
Bram Moolenaar108010a2021-06-27 22:03:33 +02003504 emsg(_(e_no_alternate_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 return NULL;
3506 }
3507 return fname;
3508}
3509
3510/*
3511 * Add a file name to the buflist and return its number.
3512 * Uses same flags as buflist_new(), except BLN_DUMMY.
3513 *
3514 * used by qf_init(), main() and doarglist()
3515 */
3516 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003517buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518{
3519 buf_T *buf;
3520
3521 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3522 if (buf != NULL)
3523 return buf->b_fnum;
3524 return 0;
3525}
3526
3527#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3528/*
3529 * Adjust slashes in file names. Called after 'shellslash' was set.
3530 */
3531 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003532buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533{
3534 buf_T *bp;
3535
Bram Moolenaar29323592016-07-24 22:04:11 +02003536 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 {
3538 if (bp->b_ffname != NULL)
3539 slash_adjust(bp->b_ffname);
3540 if (bp->b_sfname != NULL)
3541 slash_adjust(bp->b_sfname);
3542 }
3543}
3544#endif
3545
3546/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003547 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 * Also save the local window option values.
3549 */
3550 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003551buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003553 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554}
3555
3556/*
3557 * Return TRUE if 'ffname' is not the same file as current file.
3558 * Fname must have a full path (expanded by mch_FullName()).
3559 */
3560 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003561otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562{
3563 return otherfile_buf(curbuf, ffname
3564#ifdef UNIX
3565 , NULL
3566#endif
3567 );
3568}
3569
3570 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003571otherfile_buf(
3572 buf_T *buf,
3573 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003575 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003577 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578{
Bram Moolenaarc667da52019-11-30 20:52:27 +01003579 // no name is different
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3581 return TRUE;
3582 if (fnamecmp(ffname, buf->b_ffname) == 0)
3583 return FALSE;
3584#ifdef UNIX
3585 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003586 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587
Bram Moolenaarc667da52019-11-30 20:52:27 +01003588 // If no stat_T given, get it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 if (stp == NULL)
3590 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003591 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 st.st_dev = (dev_T)-1;
3593 stp = &st;
3594 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01003595 // Use dev/ino to check if the files are the same, even when the names
3596 // are different (possible with links). Still need to compare the
3597 // name above, for when the file doesn't exist yet.
3598 // Problem: The dev/ino changes when a file is deleted (and created
3599 // again) and remains the same when renamed/moved. We don't want to
3600 // mch_stat() each buffer each time, that would be too slow. Get the
3601 // dev/ino again when they appear to match, but not when they appear
3602 // to be different: Could skip a buffer when it's actually the same
3603 // file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 if (buf_same_ino(buf, stp))
3605 {
3606 buf_setino(buf);
3607 if (buf_same_ino(buf, stp))
3608 return FALSE;
3609 }
3610 }
3611#endif
3612 return TRUE;
3613}
3614
3615#if defined(UNIX) || defined(PROTO)
3616/*
3617 * Set inode and device number for a buffer.
3618 * Must always be called when b_fname is changed!.
3619 */
3620 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003621buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003623 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624
3625 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3626 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003627 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 buf->b_dev = st.st_dev;
3629 buf->b_ino = st.st_ino;
3630 }
3631 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003632 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633}
3634
3635/*
3636 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3637 */
3638 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003639buf_same_ino(
3640 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003641 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003643 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 && stp->st_dev == buf->b_dev
3645 && stp->st_ino == buf->b_ino);
3646}
3647#endif
3648
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003649/*
3650 * Print info about the current buffer.
3651 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003653fileinfo(
Bram Moolenaarc667da52019-11-30 20:52:27 +01003654 int fullname, // when non-zero print full path
Bram Moolenaar7454a062016-01-30 15:14:10 +01003655 int shorthelp,
3656 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657{
3658 char_u *name;
3659 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003660 char *p;
3661 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003662 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003664 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 if (buffer == NULL)
3666 return;
3667
Bram Moolenaarc667da52019-11-30 20:52:27 +01003668 if (fullname > 1) // 2 CTRL-G: include buffer number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003670 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 p = buffer + STRLEN(buffer);
3672 }
3673 else
3674 p = buffer;
3675
3676 *p++ = '"';
3677 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003678 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 else
3680 {
3681 if (!fullname && curbuf->b_fname != NULL)
3682 name = curbuf->b_fname;
3683 else
3684 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003685 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 (int)(IOSIZE - (p - buffer)), TRUE);
3687 }
3688
Bram Moolenaar32526b32019-01-19 17:43:09 +01003689 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 curbufIsChanged() ? (shortmess(SHM_MOD)
3691 ? " [+]" : _(" [Modified]")) : " ",
3692 (curbuf->b_flags & BF_NOTEDITED)
3693#ifdef FEAT_QUICKFIX
3694 && !bt_dontwrite(curbuf)
3695#endif
3696 ? _("[Not edited]") : "",
3697 (curbuf->b_flags & BF_NEW)
3698#ifdef FEAT_QUICKFIX
3699 && !bt_dontwrite(curbuf)
3700#endif
Bram Moolenaar722e5052020-06-12 22:31:00 +02003701 ? new_file_message() : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003703 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 : _("[readonly]")) : "",
3705 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3706 || curbuf->b_p_ro) ?
3707 " " : "");
Bram Moolenaarc667da52019-11-30 20:52:27 +01003708 // With 32 bit longs and more than 21,474,836 lines multiplying by 100
3709 // causes an overflow, thus for large numbers divide instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 if (curwin->w_cursor.lnum > 1000000L)
3711 n = (int)(((long)curwin->w_cursor.lnum) /
3712 ((long)curbuf->b_ml.ml_line_count / 100L));
3713 else
3714 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3715 (long)curbuf->b_ml.ml_line_count);
3716 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003717 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718#ifdef FEAT_CMDL_INFO
3719 else if (p_ru)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003720 // Current line and column are already on the screen -- webb
Bram Moolenaar32526b32019-01-19 17:43:09 +01003721 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003722 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3723 curbuf->b_ml.ml_line_count),
3724 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725#endif
3726 else
3727 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003728 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 _("line %ld of %ld --%d%%-- col "),
3730 (long)curwin->w_cursor.lnum,
3731 (long)curbuf->b_ml.ml_line_count,
3732 n);
3733 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003734 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003735 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3737 }
3738
Bram Moolenaar32526b32019-01-19 17:43:09 +01003739 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3740 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741
3742 if (dont_truncate)
3743 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003744 // Temporarily set msg_scroll to avoid the message being truncated.
3745 // First call msg_start() to get the message in the right place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 msg_start();
3747 n = msg_scroll;
3748 msg_scroll = TRUE;
3749 msg(buffer);
3750 msg_scroll = n;
3751 }
3752 else
3753 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003754 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaarc667da52019-11-30 20:52:27 +01003756 // Need to repeat the message after redrawing when:
3757 // - When restart_edit is set (otherwise there will be a delay
3758 // before redrawing).
3759 // - When the screen was scrolled but there is no wait-return
3760 // prompt.
Bram Moolenaar32526b32019-01-19 17:43:09 +01003761 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 }
3763
3764 vim_free(buffer);
3765}
3766
3767 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003768col_print(
3769 char_u *buf,
3770 size_t buflen,
3771 int col,
3772 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773{
3774 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003775 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003777 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778}
3779
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780static char_u *lasttitle = NULL;
3781static char_u *lasticon = NULL;
3782
Bram Moolenaar84a93082018-06-16 22:58:15 +02003783/*
3784 * Put the file name in the title bar and icon of the window.
3785 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003787maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788{
3789 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003790 char_u *title_str = NULL;
3791 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 int maxlen = 0;
3793 int len;
3794 int mustset;
3795 char_u buf[IOSIZE];
3796 int off;
3797
3798 if (!redrawing())
3799 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003800 // Postpone updating the title when 'lazyredraw' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 need_maketitle = TRUE;
3802 return;
3803 }
3804
3805 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003806 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003807 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808
3809 if (p_title)
3810 {
3811 if (p_titlelen > 0)
3812 {
3813 maxlen = p_titlelen * Columns / 100;
3814 if (maxlen < 10)
3815 maxlen = 10;
3816 }
3817
Bram Moolenaar84a93082018-06-16 22:58:15 +02003818 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 if (*p_titlestring != NUL)
3820 {
3821#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003822 if (stl_syntax & STL_IN_TITLE)
3823 {
3824 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003825 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003826
3827# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003828 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003829# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003830 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003831 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003832 0, maxlen, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003833 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003834 set_string_option_direct((char_u *)"titlestring", -1,
3835 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 else
3838#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003839 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 }
3841 else
3842 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003843 // format: "fname + (path) (1 of 2) - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844
Bram Moolenaar2c666692012-09-05 13:30:40 +02003845#define SPACE_FOR_FNAME (IOSIZE - 100)
3846#define SPACE_FOR_DIR (IOSIZE - 20)
Bram Moolenaarc667da52019-11-30 20:52:27 +01003847#define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003849 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003850#ifdef FEAT_TERMINAL
3851 else if (curbuf->b_term != NULL)
3852 {
3853 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3854 SPACE_FOR_FNAME);
3855 }
3856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 else
3858 {
3859 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003860 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 }
3863
Bram Moolenaar21554412017-07-24 21:44:43 +02003864#ifdef FEAT_TERMINAL
3865 if (curbuf->b_term == NULL)
3866#endif
3867 switch (bufIsChanged(curbuf)
3868 + (curbuf->b_p_ro * 2)
3869 + (!curbuf->b_p_ma * 4))
3870 {
3871 case 1: STRCAT(buf, " +"); break;
3872 case 2: STRCAT(buf, " ="); break;
3873 case 3: STRCAT(buf, " =+"); break;
3874 case 4:
3875 case 6: STRCAT(buf, " -"); break;
3876 case 5:
3877 case 7: STRCAT(buf, " -+"); break;
3878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879
Bram Moolenaar21554412017-07-24 21:44:43 +02003880 if (curbuf->b_fname != NULL
3881#ifdef FEAT_TERMINAL
3882 && curbuf->b_term == NULL
3883#endif
3884 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003886 // Get path of file, replace home dir with ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 off = (int)STRLEN(buf);
3888 buf[off++] = ' ';
3889 buf[off++] = '(';
3890 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003891 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarc667da52019-11-30 20:52:27 +01003893 // avoid "c:/name" to be reduced to "c"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 if (isalpha(buf[off]) && buf[off + 1] == ':')
3895 off += 2;
3896#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01003897 // remove the file name
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003898 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003900 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003901 // must be a help buffer
Bram Moolenaar21554412017-07-24 21:44:43 +02003902 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003903 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003907
Bram Moolenaarc667da52019-11-30 20:52:27 +01003908 // Translate unprintable chars and concatenate. Keep some
3909 // room for the server name. When there is no room (very long
3910 // file name) use (...).
Bram Moolenaar2c666692012-09-05 13:30:40 +02003911 if (off < SPACE_FOR_DIR)
3912 {
3913 p = transstr(buf + off);
3914 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3915 vim_free(p);
3916 }
3917 else
3918 {
3919 vim_strncpy(buf + off, (char_u *)"...",
3920 (size_t)(SPACE_FOR_ARGNR - off));
3921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 STRCAT(buf, ")");
3923 }
3924
Bram Moolenaar2c666692012-09-05 13:30:40 +02003925 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926
3927#if defined(FEAT_CLIENTSERVER)
3928 if (serverName != NULL)
3929 {
3930 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003931 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 }
3933 else
3934#endif
3935 STRCAT(buf, " - VIM");
3936
3937 if (maxlen > 0)
3938 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01003939 // make it shorter by removing a bit in the middle
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003940 if (vim_strsize(buf) > maxlen)
3941 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 }
3943 }
3944 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003945 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946
3947 if (p_icon)
3948 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003949 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 if (*p_iconstring != NUL)
3951 {
3952#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003953 if (stl_syntax & STL_IN_ICON)
3954 {
3955 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003956 int called_emsg_before = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003957
3958# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003959 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003960# endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003961 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003962 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003963 0, 0, NULL, NULL);
Bram Moolenaar53989552019-12-23 22:59:18 +01003964 if (called_emsg > called_emsg_before)
Bram Moolenaard3667a22006-03-16 21:35:52 +00003965 set_string_option_direct((char_u *)"iconstring", -1,
3966 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 else
3969#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003970 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 }
3972 else
3973 {
3974 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003975 p = buf_spname(curbuf);
Bram Moolenaarc667da52019-11-30 20:52:27 +01003976 else // use file name only in icon
Bram Moolenaar84a93082018-06-16 22:58:15 +02003977 p = gettail(curbuf->b_ffname);
3978 *icon_str = NUL;
Bram Moolenaarc667da52019-11-30 20:52:27 +01003979 // Truncate name at 100 bytes.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003980 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 if (len > 100)
3982 {
3983 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003985 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003986 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003988 STRCPY(icon_str, p);
3989 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 }
3991 }
3992
Bram Moolenaar84a93082018-06-16 22:58:15 +02003993 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995 if (mustset)
3996 resettitle();
3997}
3998
3999/*
4000 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
4001 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02004002 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 */
4004 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02004005value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006{
4007 if ((str == NULL) != (*last == NULL)
4008 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
4009 {
4010 vim_free(*last);
4011 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02004012 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02004014 mch_restore_title(
4015 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02004018 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02004020 return TRUE;
4021 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 }
4023 return FALSE;
4024}
4025
4026/*
4027 * Put current window title back (used after calling a shell)
4028 */
4029 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004030resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031{
4032 mch_settitle(lasttitle, lasticon);
4033}
Bram Moolenaarea408852005-06-25 22:49:46 +00004034
4035# if defined(EXITFREE) || defined(PROTO)
4036 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004037free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00004038{
4039 vim_free(lasttitle);
4040 vim_free(lasticon);
4041}
4042# endif
4043
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004045#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004046
4047/*
4048 * Used for building in the status line.
4049 */
4050typedef struct
4051{
4052 char_u *stl_start;
4053 int stl_minwid;
4054 int stl_maxwid;
4055 enum {
4056 Normal,
4057 Empty,
4058 Group,
4059 Middle,
4060 Highlight,
4061 TabPage,
4062 Trunc
4063 } stl_type;
4064} stl_item_T;
4065
4066static size_t stl_items_len = 20; // Initial value, grows as needed.
4067static stl_item_T *stl_items = NULL;
4068static int *stl_groupitem = NULL;
4069static stl_hlrec_T *stl_hltab = NULL;
4070static stl_hlrec_T *stl_tabtab = NULL;
4071
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004073 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 * Return length of string in screen cells.
4075 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004076 * Normally works for window "wp", except when working for 'tabline' then it
4077 * is "curwin".
4078 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 * Items are drawn interspersed with the text that surrounds it
4080 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
4081 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
4082 *
4083 * If maxwidth is not zero, the string will be filled at any middle marker
4084 * or truncated if too long, fillchar is used for all whitespace.
4085 */
4086 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004087build_stl_str_hl(
4088 win_T *wp,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004089 char_u *out, // buffer to write into != NameBuff
4090 size_t outlen, // length of out[]
Bram Moolenaar7454a062016-01-30 15:14:10 +01004091 char_u *fmt,
Bram Moolenaarc667da52019-11-30 20:52:27 +01004092 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox
Bram Moolenaar7454a062016-01-30 15:14:10 +01004093 int fillchar,
4094 int maxwidth,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004095 stl_hlrec_T **hltab, // return: HL attributes (can be NULL)
4096 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097{
Bram Moolenaar10772302019-01-20 18:25:54 +01004098 linenr_T lnum;
4099 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 char_u *p;
4101 char_u *s;
4102 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004103 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004105 win_T *save_curwin;
4106 buf_T *save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004107 int save_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108#endif
4109 int empty_line;
4110 colnr_T virtcol;
4111 long l;
4112 long n;
4113 int prevchar_isflag;
4114 int prevchar_isitem;
4115 int itemisflag;
4116 int fillable;
4117 char_u *str;
4118 long num;
4119 int width;
4120 int itemcnt;
4121 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004122 int group_end_userhl;
4123 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 int groupdepth;
shadmansaleh30e3de22021-05-15 17:23:28 +02004125#ifdef FEAT_EVAL
4126 int evaldepth;
4127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 int minwid;
4129 int maxwid;
4130 int zeropad;
4131 char_u base;
4132 char_u opt;
4133#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004134 char_u buf_tmp[TMPLEN];
4135 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004136 char_u *usefmt = fmt;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004137 stl_hlrec_T *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004138 int save_must_redraw = must_redraw;
4139 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004140
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004141 if (stl_items == NULL)
4142 {
4143 stl_items = ALLOC_MULT(stl_item_T, stl_items_len);
4144 stl_groupitem = ALLOC_MULT(int, stl_items_len);
4145 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4146 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len);
4147 }
4148
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004149#ifdef FEAT_EVAL
4150 /*
4151 * When the format starts with "%!" then evaluate it as an expression and
4152 * use the result as the actual format string.
4153 */
4154 if (fmt[0] == '%' && fmt[1] == '!')
4155 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004156 typval_T tv;
4157
4158 tv.v_type = VAR_NUMBER;
4159 tv.vval.v_number = wp->w_id;
4160 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
4161
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004162 usefmt = eval_to_string_safe(fmt + 2, use_sandbox);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004163 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00004164 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004165
4166 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004167 }
4168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169
4170 if (fillchar == 0)
4171 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004172
Bram Moolenaar10772302019-01-20 18:25:54 +01004173 // The cursor in windows other than the current one isn't always
4174 // up-to-date, esp. because of autocommands and timers.
4175 lnum = wp->w_cursor.lnum;
4176 if (lnum > wp->w_buffer->b_ml.ml_line_count)
4177 {
4178 lnum = wp->w_buffer->b_ml.ml_line_count;
4179 wp->w_cursor.lnum = lnum;
4180 }
4181
4182 // Get line & check if empty (cursorpos will show "0-1"). Note that
4183 // p will become invalid when getting another buffer line.
4184 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02004185 empty_line = (*p == NUL);
4186
Bram Moolenaar10772302019-01-20 18:25:54 +01004187 // Get the byte value now, in case we need it below. This is more efficient
4188 // than making a copy of the line.
4189 len = STRLEN(p);
4190 if (wp->w_cursor.col > (colnr_T)len)
4191 {
4192 // Line may have changed since checking the cursor column, or the lnum
4193 // was adjusted above.
4194 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01004195 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02004196 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01004197 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02004198 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02004199 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200
4201 groupdepth = 0;
shadmansaleh30e3de22021-05-15 17:23:28 +02004202#ifdef FEAT_EVAL
4203 evaldepth = 0;
4204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 p = out;
4206 curitem = 0;
4207 prevchar_isflag = TRUE;
4208 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004209 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004211 if (curitem == (int)stl_items_len)
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004212 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004213 size_t new_len = stl_items_len * 3 / 2;
4214 stl_item_T *new_items;
4215 int *new_groupitem;
4216 stl_hlrec_T *new_hlrec;
4217
4218 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len);
4219 if (new_items == NULL)
4220 break;
4221 stl_items = new_items;
4222 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len);
4223 if (new_groupitem == NULL)
4224 break;
4225 stl_groupitem = new_groupitem;
4226 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len);
4227 if (new_hlrec == NULL)
4228 break;
4229 stl_hltab = new_hlrec;
4230 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len);
4231 if (new_hlrec == NULL)
4232 break;
4233 stl_tabtab = new_hlrec;
4234 stl_items_len = new_len;
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004235 }
4236
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 if (*s != NUL && *s != '%')
4238 prevchar_isflag = prevchar_isitem = FALSE;
4239
4240 /*
4241 * Handle up to the next '%' or the end.
4242 */
4243 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4244 *p++ = *s++;
4245 if (*s == NUL || p + 1 >= out + outlen)
4246 break;
4247
4248 /*
4249 * Handle one '%' item.
4250 */
4251 s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004252 if (*s == NUL) // ignore trailing %
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004253 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 if (*s == '%')
4255 {
4256 if (p + 1 >= out + outlen)
4257 break;
4258 *p++ = *s++;
4259 prevchar_isflag = prevchar_isitem = FALSE;
4260 continue;
4261 }
4262 if (*s == STL_MIDDLEMARK)
4263 {
4264 s++;
4265 if (groupdepth > 0)
4266 continue;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004267 stl_items[curitem].stl_type = Middle;
4268 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 continue;
4270 }
4271 if (*s == STL_TRUNCMARK)
4272 {
4273 s++;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004274 stl_items[curitem].stl_type = Trunc;
4275 stl_items[curitem++].stl_start = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 continue;
4277 }
4278 if (*s == ')')
4279 {
4280 s++;
4281 if (groupdepth < 1)
4282 continue;
4283 groupdepth--;
4284
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004285 t = stl_items[stl_groupitem[groupdepth]].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 *p = NUL;
4287 l = vim_strsize(t);
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004288 if (curitem > stl_groupitem[groupdepth] + 1
4289 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004291 // remove group if all items are empty and highlight group
4292 // doesn't change
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004293 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004294 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004295 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004296 if (stl_items[n].stl_type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004297 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004298 group_start_userhl = group_end_userhl =
4299 stl_items[n].stl_minwid;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004300 break;
4301 }
4302 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004303 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004304 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004305 if (stl_items[n].stl_type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 break;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004307 if (stl_items[n].stl_type == Highlight)
4308 group_end_userhl = stl_items[n].stl_minwid;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004309 }
4310 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 {
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004312 // empty group
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 p = t;
4314 l = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004315 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004316 {
4317 // do not use the highlighting from the removed group
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004318 if (stl_items[n].stl_type == Highlight)
4319 stl_items[n].stl_type = Empty;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004320 // adjust the start position of TabPage to the next
4321 // item position
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004322 if (stl_items[n].stl_type == TabPage)
4323 stl_items[n].stl_start = p;
Bram Moolenaarf56c95f2020-07-21 19:25:18 +02004324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 }
4326 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004327 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004329 // truncate, remove n bytes of text at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 if (has_mbyte)
4331 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004332 // Find the first character that should be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 n = 0;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004334 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 {
4336 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004337 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 }
4339 }
4340 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004341 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]]
4342 .stl_maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343
4344 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004345 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004347
4348 // Fill up space left over by half a double-wide char.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004349 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004350 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351
Bram Moolenaarc667da52019-11-30 20:52:27 +01004352 // correct the start of the items for the truncation
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004353 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004355 stl_items[l].stl_start -= n;
4356 if (stl_items[l].stl_start < t)
4357 stl_items[l].stl_start = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 }
4359 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004360 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004362 // fill
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004363 n = stl_items[stl_groupitem[groupdepth]].stl_minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 if (n < 0)
4365 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004366 // fill by appending characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 n = 0 - n;
4368 while (l++ < n && p + 1 < out + outlen)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004369 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 }
4371 else
4372 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004373 // fill by inserting characters
Bram Moolenaar008bff92021-03-04 21:55:58 +01004374 l = (n - l) * MB_CHAR2LEN(fillchar);
4375 mch_memmove(t + l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004377 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 p += l;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004379 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++)
4380 stl_items[n].stl_start += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 for ( ; l > 0; l--)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004382 MB_CHAR2BYTES(fillchar, t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 }
4384 }
4385 continue;
4386 }
4387 minwid = 0;
4388 maxwid = 9999;
4389 zeropad = FALSE;
4390 l = 1;
4391 if (*s == '0')
4392 {
4393 s++;
4394 zeropad = TRUE;
4395 }
4396 if (*s == '-')
4397 {
4398 s++;
4399 l = -1;
4400 }
4401 if (VIM_ISDIGIT(*s))
4402 {
4403 minwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004404 if (minwid < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 minwid = 0;
4406 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004407 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004409 stl_items[curitem].stl_type = Highlight;
4410 stl_items[curitem].stl_start = p;
4411 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 s++;
4413 curitem++;
4414 continue;
4415 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004416 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4417 {
4418 if (*s == STL_TABCLOSENR)
4419 {
4420 if (minwid == 0)
4421 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004422 // %X ends the close label, go back to the previously
4423 // define tab label nr.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004424 for (n = curitem - 1; n >= 0; --n)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004425 if (stl_items[n].stl_type == TabPage
4426 && stl_items[n].stl_minwid >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004427 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004428 minwid = stl_items[n].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004429 break;
4430 }
4431 }
4432 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01004433 // close nrs are stored as negative values
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004434 minwid = - minwid;
4435 }
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004436 stl_items[curitem].stl_type = TabPage;
4437 stl_items[curitem].stl_start = p;
4438 stl_items[curitem].stl_minwid = minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004439 s++;
4440 curitem++;
4441 continue;
4442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if (*s == '.')
4444 {
4445 s++;
4446 if (VIM_ISDIGIT(*s))
4447 {
4448 maxwid = (int)getdigits(&s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01004449 if (maxwid <= 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 maxwid = 50;
4451 }
4452 }
4453 minwid = (minwid > 50 ? 50 : minwid) * l;
4454 if (*s == '(')
4455 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004456 stl_groupitem[groupdepth++] = curitem;
4457 stl_items[curitem].stl_type = Group;
4458 stl_items[curitem].stl_start = p;
4459 stl_items[curitem].stl_minwid = minwid;
4460 stl_items[curitem].stl_maxwid = maxwid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 s++;
4462 curitem++;
4463 continue;
4464 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004465#ifdef FEAT_EVAL
4466 // Denotes end of expanded %{} block
4467 if (*s == '}' && evaldepth > 0)
4468 {
4469 s++;
4470 evaldepth--;
4471 continue;
4472 }
4473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 if (vim_strchr(STL_ALL, *s) == NULL)
4475 {
4476 s++;
4477 continue;
4478 }
4479 opt = *s++;
4480
Bram Moolenaarc667da52019-11-30 20:52:27 +01004481 // OK - now for the real work
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 base = 'D';
4483 itemisflag = FALSE;
4484 fillable = TRUE;
4485 num = -1;
4486 str = NULL;
4487 switch (opt)
4488 {
4489 case STL_FILEPATH:
4490 case STL_FULLPATH:
4491 case STL_FILENAME:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004492 fillable = FALSE; // don't change ' ' to fillchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004494 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 else
4496 {
4497 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004498 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4500 }
4501 trans_characters(NameBuff, MAXPATHL);
4502 if (opt != STL_FILENAME)
4503 str = NameBuff;
4504 else
4505 str = gettail(NameBuff);
4506 break;
4507
Bram Moolenaarc667da52019-11-30 20:52:27 +01004508 case STL_VIM_EXPR: // '{'
shadmansaleh30e3de22021-05-15 17:23:28 +02004509 {
4510#ifdef FEAT_EVAL
4511 char_u *block_start = s - 1;
4512#endif
4513 int reevaluate = (*s == '%');
4514
4515 if (reevaluate)
4516 s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 itemisflag = TRUE;
4518 t = p;
shadmansaleh30e3de22021-05-15 17:23:28 +02004519 while ((*s != '}' || (reevaluate && s[-1] != '%'))
4520 && *s != NUL && p + 1 < out + outlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 *p++ = *s++;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004522 if (*s != '}') // missing '}' or out of space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 break;
4524 s++;
shadmansaleh30e3de22021-05-15 17:23:28 +02004525 if (reevaluate)
4526 p[-1] = 0; // remove the % at the end of %{% expr %}
4527 else
4528 *p = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 p = t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004531 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4532 "%d", curbuf->b_fnum);
4533 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4534 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4535 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004537 save_curbuf = curbuf;
4538 save_curwin = curwin;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004539 save_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 curwin = wp;
4541 curbuf = wp->w_buffer;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004542 // Visual mode is only valid in the current window.
4543 if (curwin != save_curwin)
4544 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaarb171fb12020-06-24 20:34:03 +02004546 str = eval_to_string_safe(p, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004548 curwin = save_curwin;
4549 curbuf = save_curbuf;
Bram Moolenaardee50a52019-11-30 15:05:22 +01004550 VIsual_active = save_VIsual_active;
Bram Moolenaar01824652005-01-31 18:58:23 +00004551 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004552 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553
4554 if (str != NULL && *str != 0)
4555 {
4556 if (*skipdigits(str) == NUL)
4557 {
4558 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004559 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 itemisflag = FALSE;
4561 }
4562 }
shadmansaleh30e3de22021-05-15 17:23:28 +02004563
4564 // If the output of the expression needs to be evaluated
4565 // replace the %{} block with the result of evaluation
4566 if (reevaluate && str != NULL && *str != 0
4567 && strchr((const char *)str, '%') != NULL
4568 && evaldepth < MAX_STL_EVAL_DEPTH)
4569 {
4570 size_t parsed_usefmt = (size_t)(block_start - usefmt);
4571 size_t str_length = strlen((const char *)str);
4572 size_t fmt_length = strlen((const char *)s);
4573 size_t new_fmt_len = parsed_usefmt
4574 + str_length + fmt_length + 3;
4575 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u));
4576 char_u *new_fmt_p = new_fmt;
4577
4578 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt)
4579 + parsed_usefmt;
4580 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length)
4581 + str_length;
4582 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2;
4583 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length)
4584 + fmt_length;
4585 *new_fmt_p = 0;
4586 new_fmt_p = NULL;
4587
4588 if (usefmt != fmt)
4589 vim_free(usefmt);
4590 VIM_CLEAR(str);
4591 usefmt = new_fmt;
4592 s = usefmt + parsed_usefmt;
4593 evaldepth++;
4594 continue;
4595 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596#endif
4597 break;
shadmansaleh30e3de22021-05-15 17:23:28 +02004598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 case STL_LINE:
4600 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4601 ? 0L : (long)(wp->w_cursor.lnum);
4602 break;
4603
4604 case STL_NUMLINES:
4605 num = wp->w_buffer->b_ml.ml_line_count;
4606 break;
4607
4608 case STL_COLUMN:
4609 num = !(State & INSERT) && empty_line
4610 ? 0 : (int)wp->w_cursor.col + 1;
4611 break;
4612
4613 case STL_VIRTCOL:
4614 case STL_VIRTCOL_ALT:
Bram Moolenaarc667da52019-11-30 20:52:27 +01004615 // In list mode virtcol needs to be recomputed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 virtcol = wp->w_virtcol;
Bram Moolenaareed9d462021-02-15 20:38:25 +01004617 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 {
4619 wp->w_p_list = FALSE;
4620 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4621 wp->w_p_list = TRUE;
4622 }
4623 ++virtcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01004624 // Don't display %V if it's the same as %c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 if (opt == STL_VIRTCOL_ALT
4626 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4627 ? 0 : (int)wp->w_cursor.col + 1)))
4628 break;
4629 num = (long)virtcol;
4630 break;
4631
4632 case STL_PERCENTAGE:
4633 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4634 (long)wp->w_buffer->b_ml.ml_line_count);
4635 break;
4636
4637 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004638 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004639 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 break;
4641
4642 case STL_ARGLISTSTAT:
4643 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004644 buf_tmp[0] = 0;
4645 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4646 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 break;
4648
4649 case STL_KEYMAP:
4650 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004651 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4652 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 break;
4654 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004655#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004656 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657#else
4658 num = 0;
4659#endif
4660 break;
4661
4662 case STL_BUFNO:
4663 num = wp->w_buffer->b_fnum;
4664 break;
4665
4666 case STL_OFFSET_X:
4667 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004668 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 case STL_OFFSET:
4670#ifdef FEAT_BYTEOFF
4671 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4672 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4673 0L : l + 1 + (!(State & INSERT) && empty_line ?
4674 0 : (int)wp->w_cursor.col);
4675#endif
4676 break;
4677
4678 case STL_BYTEVAL_X:
4679 base = 'X';
Bram Moolenaarc667da52019-11-30 20:52:27 +01004680 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004682 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 if (num == NL)
4684 num = 0;
4685 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4686 num = NL;
4687 break;
4688
4689 case STL_ROFLAG:
4690 case STL_ROFLAG_ALT:
4691 itemisflag = TRUE;
4692 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004693 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 break;
4695
4696 case STL_HELPFLAG:
4697 case STL_HELPFLAG_ALT:
4698 itemisflag = TRUE;
4699 if (wp->w_buffer->b_help)
4700 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004701 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 break;
4703
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 case STL_FILETYPE:
4705 if (*wp->w_buffer->b_p_ft != NUL
4706 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4707 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004708 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004709 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004710 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 }
4712 break;
4713
4714 case STL_FILETYPE_ALT:
4715 itemisflag = TRUE;
4716 if (*wp->w_buffer->b_p_ft != NUL
4717 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4718 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004719 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004720 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004721 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004723 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 }
4725 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726
Bram Moolenaar4033c552017-09-16 20:54:51 +02004727#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 case STL_PREVIEWFLAG:
4729 case STL_PREVIEWFLAG_ALT:
4730 itemisflag = TRUE;
4731 if (wp->w_p_pvw)
4732 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4733 : _("[Preview]"));
4734 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004735
4736 case STL_QUICKFIX:
4737 if (bt_quickfix(wp->w_buffer))
4738 str = (char_u *)(wp->w_llist_ref
4739 ? _(msg_loclist)
4740 : _(msg_qflist));
4741 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742#endif
4743
4744 case STL_MODIFIED:
4745 case STL_MODIFIED_ALT:
4746 itemisflag = TRUE;
4747 switch ((opt == STL_MODIFIED_ALT)
4748 + bufIsChanged(wp->w_buffer) * 2
4749 + (!wp->w_buffer->b_p_ma) * 4)
4750 {
4751 case 2: str = (char_u *)"[+]"; break;
4752 case 3: str = (char_u *)",+"; break;
4753 case 4: str = (char_u *)"[-]"; break;
4754 case 5: str = (char_u *)",-"; break;
4755 case 6: str = (char_u *)"[+-]"; break;
4756 case 7: str = (char_u *)",+-"; break;
4757 }
4758 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004759
4760 case STL_HIGHLIGHT:
4761 t = s;
4762 while (*s != '#' && *s != NUL)
4763 ++s;
4764 if (*s == '#')
4765 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004766 stl_items[curitem].stl_type = Highlight;
4767 stl_items[curitem].stl_start = p;
4768 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004769 curitem++;
4770 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004771 if (*s != NUL)
4772 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004773 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 }
4775
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004776 stl_items[curitem].stl_start = p;
4777 stl_items[curitem].stl_type = Normal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 if (str != NULL && *str)
4779 {
4780 t = str;
4781 if (itemisflag)
4782 {
4783 if ((t[0] && t[1])
4784 && ((!prevchar_isitem && *t == ',')
4785 || (prevchar_isflag && *t == ' ')))
4786 t++;
4787 prevchar_isflag = TRUE;
4788 }
4789 l = vim_strsize(t);
4790 if (l > 0)
4791 prevchar_isitem = TRUE;
4792 if (l > maxwid)
4793 {
4794 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 if (has_mbyte)
4796 {
4797 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004798 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 }
4800 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 l -= byte2cells(*t++);
4802 if (p + 1 >= out + outlen)
4803 break;
4804 *p++ = '<';
4805 }
4806 if (minwid > 0)
4807 {
4808 for (; l < minwid && p + 1 < out + outlen; l++)
4809 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004810 // Don't put a "-" in front of a digit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4812 *p++ = ' ';
4813 else
Bram Moolenaar008bff92021-03-04 21:55:58 +01004814 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 }
4816 minwid = 0;
4817 }
4818 else
4819 minwid *= -1;
Bram Moolenaar008bff92021-03-04 21:55:58 +01004820 for (; *t && p + 1 < out + outlen; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004822 // Change a space by fillchar, unless fillchar is '-' and a
4823 // digit follows.
Bram Moolenaar008bff92021-03-04 21:55:58 +01004824 if (fillable && *t == ' '
4825 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-'))
4826 MB_CHAR2BYTES(fillchar, p);
4827 else
4828 *p++ = *t;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 }
4830 for (; l < minwid && p + 1 < out + outlen; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004831 MB_CHAR2BYTES(fillchar, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 }
4833 else if (num >= 0)
4834 {
4835 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4836 char_u nstr[20];
4837
4838 if (p + 20 >= out + outlen)
Bram Moolenaarc667da52019-11-30 20:52:27 +01004839 break; // not sufficient space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 prevchar_isitem = TRUE;
4841 t = nstr;
4842 if (opt == STL_VIRTCOL_ALT)
4843 {
4844 *t++ = '-';
4845 minwid--;
4846 }
4847 *t++ = '%';
4848 if (zeropad)
4849 *t++ = '0';
4850 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004851 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 *t = 0;
4853
4854 for (n = num, l = 1; n >= nbase; n /= nbase)
4855 l++;
4856 if (opt == STL_VIRTCOL_ALT)
4857 l++;
4858 if (l > maxwid)
4859 {
4860 l += 2;
4861 n = l - maxwid;
4862 while (l-- > maxwid)
4863 num /= nbase;
4864 *t++ = '>';
4865 *t++ = '%';
4866 *t = t[-3];
4867 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004868 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4869 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 }
4871 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004872 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4873 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 p += STRLEN(p);
4875 }
4876 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004877 stl_items[curitem].stl_type = Empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878
4879 if (opt == STL_VIM_EXPR)
4880 vim_free(str);
4881
4882 if (num >= 0 || (!itemisflag && str && *str))
Bram Moolenaarc667da52019-11-30 20:52:27 +01004883 prevchar_isflag = FALSE; // Item not NULL, but not a flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 curitem++;
4885 }
4886 *p = NUL;
4887 itemcnt = curitem;
4888
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004889#ifdef FEAT_EVAL
4890 if (usefmt != fmt)
4891 vim_free(usefmt);
4892#endif
4893
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 width = vim_strsize(out);
4895 if (maxwidth > 0 && width > maxwidth)
4896 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004897 // Result is too long, must truncate somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 l = 0;
4899 if (itemcnt == 0)
4900 s = out;
4901 else
4902 {
4903 for ( ; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004904 if (stl_items[l].stl_type == Trunc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004906 // Truncate at %< item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004907 s = stl_items[l].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 break;
4909 }
4910 if (l == itemcnt)
4911 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004912 // No %< item, truncate first item.
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004913 s = stl_items[0].stl_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 l = 0;
4915 }
4916 }
4917
4918 if (width - vim_strsize(s) >= maxwidth)
4919 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004920 // Truncation mark is beyond max length
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 if (has_mbyte)
4922 {
4923 s = out;
4924 width = 0;
4925 for (;;)
4926 {
4927 width += ptr2cells(s);
4928 if (width >= maxwidth)
4929 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004930 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01004932 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 while (++width < maxwidth)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004934 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 }
4936 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 s = out + maxwidth - 1;
4938 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004939 if (stl_items[l].stl_start > s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 break;
4941 itemcnt = l;
4942 *s++ = '>';
4943 *s = 0;
4944 }
4945 else
4946 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 if (has_mbyte)
4948 {
4949 n = 0;
4950 while (width >= maxwidth)
4951 {
4952 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004953 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
4955 }
4956 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 n = width - maxwidth + 1;
4958 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004959 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 *s = '<';
4961
Bram Moolenaarc667da52019-11-30 20:52:27 +01004962 // Fill up for half a double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 while (++width < maxwidth)
4964 {
4965 s = s + STRLEN(s);
Bram Moolenaar008bff92021-03-04 21:55:58 +01004966 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 *s = NUL;
4968 }
4969
Bram Moolenaarc667da52019-11-30 20:52:27 +01004970 --n; // count the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 for (; l < itemcnt; l++)
4972 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004973 if (stl_items[l].stl_start - n >= s)
4974 stl_items[l].stl_start -= n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 else
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004976 stl_items[l].stl_start = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 }
4978 }
4979 width = maxwidth;
4980 }
4981 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4982 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01004983 // Apply STL_MIDDLE if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 for (l = 0; l < itemcnt; l++)
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004985 if (stl_items[l].stl_type == Middle)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 break;
4987 if (l < itemcnt)
4988 {
Bram Moolenaar008bff92021-03-04 21:55:58 +01004989 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar);
4990 p = stl_items[l].stl_start + middlelength;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01004991 STRMOVE(p, stl_items[l].stl_start);
Bram Moolenaar008bff92021-03-04 21:55:58 +01004992 for (s = stl_items[l].stl_start; s < p;)
4993 MB_CHAR2BYTES(fillchar, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 for (l++; l < itemcnt; l++)
Bram Moolenaar008bff92021-03-04 21:55:58 +01004995 stl_items[l].stl_start += middlelength;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 width = maxwidth;
4997 }
4998 }
4999
Bram Moolenaarc667da52019-11-30 20:52:27 +01005000 // Store the info about highlighting.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005001 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005003 *hltab = stl_hltab;
5004 sp = stl_hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 for (l = 0; l < itemcnt; l++)
5006 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005007 if (stl_items[l].stl_type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005009 sp->start = stl_items[l].stl_start;
5010 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005011 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 }
5013 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005014 sp->start = NULL;
5015 sp->userhl = 0;
5016 }
5017
Bram Moolenaarc667da52019-11-30 20:52:27 +01005018 // Store the info about tab pages labels.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005019 if (tabtab != NULL)
5020 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005021 *tabtab = stl_tabtab;
5022 sp = stl_tabtab;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005023 for (l = 0; l < itemcnt; l++)
5024 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005025 if (stl_items[l].stl_type == TabPage)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005026 {
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005027 sp->start = stl_items[l].stl_start;
5028 sp->userhl = stl_items[l].stl_minwid;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005029 sp++;
5030 }
5031 }
5032 sp->start = NULL;
5033 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 }
5035
Bram Moolenaarc667da52019-11-30 20:52:27 +01005036 // When inside update_screen we do not want redrawing a stausline, ruler,
5037 // title, etc. to trigger another redraw, it may cause an endless loop.
Bram Moolenaar65ed1362017-09-30 16:00:14 +02005038 if (updating_screen)
5039 {
5040 must_redraw = save_must_redraw;
5041 curwin->w_redr_type = save_redr_type;
5042 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02005043
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 return width;
5045}
Bram Moolenaarc667da52019-11-30 20:52:27 +01005046#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005048#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
5049 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005051 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
5052 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 */
5054 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005055get_rel_pos(
5056 win_T *wp,
5057 char_u *buf,
5058 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005060 long above; // number of lines above window
5061 long below; // number of lines below window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062
Bram Moolenaarc667da52019-11-30 20:52:27 +01005063 if (buflen < 3) // need at least 3 chars for writing
Bram Moolenaar0027c212015-01-07 13:31:52 +01005064 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 above = wp->w_topline - 1;
5066#ifdef FEAT_DIFF
5067 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02005068 if (wp->w_topline == 1 && wp->w_topfill >= 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005069 above = 0; // All buffer lines are displayed and there is an
5070 // indication of filler lines, that can be considered
5071 // seeing all lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072#endif
5073 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
5074 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005075 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
5076 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005078 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005080 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 ? (int)(above / ((above + below) / 100L))
5082 : (int)(above * 100L / (above + below)));
5083}
5084#endif
5085
5086/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005087 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 * Return TRUE if it was appended.
5089 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005090 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005091append_arg_number(
5092 win_T *wp,
5093 char_u *buf,
5094 int buflen,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005095 int add_file) // Add "file" before the arg number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096{
5097 char_u *p;
5098
Bram Moolenaarc667da52019-11-30 20:52:27 +01005099 if (ARGCOUNT <= 1) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 return FALSE;
5101
Bram Moolenaarc667da52019-11-30 20:52:27 +01005102 p = buf + STRLEN(buf); // go to the end of the buffer
5103 if (p - buf + 35 >= buflen) // getting too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 return FALSE;
5105 *p++ = ' ';
5106 *p++ = '(';
5107 if (add_file)
5108 {
5109 STRCPY(p, "file ");
5110 p += 5;
5111 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005112 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
5113 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
5115 return TRUE;
5116}
5117
5118/*
5119 * If fname is not a full path, make it a full path.
5120 * Returns pointer to allocated memory (NULL for failure).
5121 */
5122 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005123fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124{
5125 /*
5126 * Force expanding the path always for Unix, because symbolic links may
5127 * mess up the full path name, even though it starts with a '/'.
5128 * Also expand when there is ".." in the file name, try to remove it,
5129 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00005130 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 * For MS-Windows also expand names like "longna~1" to "longname".
5132 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00005133#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 return FullName_save(fname, TRUE);
5135#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00005136 if (!vim_isAbsName(fname)
5137 || strstr((char *)fname, "..") != NULL
5138 || strstr((char *)fname, "//") != NULL
5139# ifdef BACKSLASH_IN_FILENAME
5140 || strstr((char *)fname, "\\\\") != NULL
5141# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005142# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00005144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 )
5146 return FullName_save(fname, FALSE);
5147
5148 fname = vim_strsave(fname);
5149
Bram Moolenaar9b942202007-10-03 12:31:33 +00005150# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01005151 if (fname != NULL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005152 fname_case(fname, 0); // set correct case for file name
Bram Moolenaar9b942202007-10-03 12:31:33 +00005153# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154
5155 return fname;
5156#endif
5157}
5158
5159/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005160 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
5161 * "*ffname" becomes a pointer to allocated memory (or NULL).
5162 * When resolving a link both "*sfname" and "*ffname" will point to the same
5163 * allocated memory.
5164 * The "*ffname" and "*sfname" pointer values on call will not be freed.
Bram Moolenaar32aa1022019-11-02 22:54:41 +01005165 * Note that the resulting "*ffname" pointer should be considered not allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005168fname_expand(
5169 buf_T *buf UNUSED,
5170 char_u **ffname,
5171 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005173 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005175 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005177 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178
5179#ifdef FEAT_SHORTCUT
5180 if (!buf->b_p_bin)
5181 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005182 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02005184 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01005185 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005186 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 {
5188 vim_free(*ffname);
5189 *ffname = rfname;
5190 *sfname = rfname;
5191 }
5192 }
5193#endif
5194}
5195
5196/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 * Open a window for a number of buffers.
5198 */
5199 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005200ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201{
5202 buf_T *buf;
5203 win_T *wp, *wpnext;
5204 int split_ret = OK;
5205 int p_ea_save;
5206 int open_wins = 0;
5207 int r;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005208 int count; // Maximum number of windows to open.
5209 int all; // When TRUE also load inactive buffers.
Bram Moolenaare1004402020-10-24 20:49:43 +02005210 int had_tab = cmdmod.cmod_tab;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005211 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212
Bram Moolenaarc667da52019-11-30 20:52:27 +01005213 if (eap->addr_count == 0) // make as many windows as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 count = 9999;
5215 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01005216 count = eap->line2; // make as many windows as specified
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5218 all = FALSE;
5219 else
5220 all = TRUE;
5221
5222 setpcmark();
5223
5224#ifdef FEAT_GUI
5225 need_mouse_correct = TRUE;
5226#endif
5227
5228 /*
5229 * Close superfluous windows (two windows for the same buffer).
5230 * Also close windows that are not full-width.
5231 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005232 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005233 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005234 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005236 tpnext = curtab->tp_next;
5237 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005239 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005240 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1004402020-10-24 20:49:43 +02005241 || ((cmdmod.cmod_split & WSP_VERT)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005242 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005243 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005244 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005245 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005246 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005247 {
5248 win_close(wp, FALSE);
Bram Moolenaarc667da52019-11-30 20:52:27 +01005249 wpnext = firstwin; // just in case an autocommand does
5250 // something strange with windows
5251 tpnext = first_tabpage; // start all over...
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005252 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005253 }
5254 else
5255 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005257
Bram Moolenaarc667da52019-11-30 20:52:27 +01005258 // Without the ":tab" modifier only do the current tab page.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005259 if (had_tab == 0 || tpnext == NULL)
5260 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005261 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 }
5263
5264 /*
5265 * Go through the buffer list. When a buffer doesn't have a window yet,
5266 * open one. Otherwise move the window to the right position.
5267 * Watch out for autocommands that delete buffers or windows!
5268 */
Bram Moolenaarc667da52019-11-30 20:52:27 +01005269 // Don't execute Win/Buf Enter/Leave autocommands here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5274 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005275 // Check if this buffer needs a window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5277 continue;
5278
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005279 if (had_tab != 0)
5280 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005281 // With the ":tab" modifier don't move the window.
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005282 if (buf->b_nwindows > 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005283 wp = lastwin; // buffer has a window, skip it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005284 else
5285 wp = NULL;
5286 }
5287 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005288 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005289 // Check if this buffer already has a window
Bram Moolenaar29323592016-07-24 22:04:11 +02005290 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005291 if (wp->w_buffer == buf)
5292 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005293 // If the buffer already has a window, move it
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005294 if (wp != NULL)
5295 win_move_after(wp, curwin);
5296 }
5297
5298 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005300 bufref_T bufref;
5301
5302 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005303
Bram Moolenaarc667da52019-11-30 20:52:27 +01005304 // Split the window and put the buffer in it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 p_ea_save = p_ea;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005306 p_ea = TRUE; // use space from all windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5308 ++open_wins;
5309 p_ea = p_ea_save;
5310 if (split_ret == FAIL)
5311 continue;
5312
Bram Moolenaarc667da52019-11-30 20:52:27 +01005313 // Open the buffer in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005316 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005318 // autocommands deleted the buffer!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 break;
5321 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 if (swap_exists_action == SEA_QUIT)
5323 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005324#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005325 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005326
Bram Moolenaarc667da52019-11-30 20:52:27 +01005327 // Reset the error/interrupt/exception state here so that
5328 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005329 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005330#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005331
Bram Moolenaarc667da52019-11-30 20:52:27 +01005332 // User selected Quit at ATTENTION prompt; close this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 win_close(curwin, TRUE);
5334 --open_wins;
5335 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005336 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005337
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005338#if defined(FEAT_EVAL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01005339 // Restore the error/interrupt/exception state if not
5340 // discarded by a new aborting error, interrupt, or uncaught
5341 // exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005342 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 }
5345 else
5346 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 }
5348
5349 ui_breakcheck();
5350 if (got_int)
5351 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005352 (void)vgetc(); // only break the file loading, not the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 break;
5354 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005355#ifdef FEAT_EVAL
Bram Moolenaarc667da52019-11-30 20:52:27 +01005356 // Autocommands deleted the buffer or aborted script processing!!!
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005357 if (aborting())
5358 break;
5359#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01005360 // When ":tab" was used open a new tab for a new window repeatedly.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005361 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
Bram Moolenaare1004402020-10-24 20:49:43 +02005362 cmdmod.cmod_tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 --autocmd_no_enter;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005365 win_enter(firstwin, FALSE); // back to first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367
5368 /*
5369 * Close superfluous windows.
5370 */
5371 for (wp = lastwin; open_wins > count; )
5372 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005373 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 if (!win_valid(wp))
5376 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005377 // BufWrite Autocommands made the window invalid, start over
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 wp = lastwin;
5379 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005380 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005382 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 --open_wins;
5384 wp = lastwin;
5385 }
5386 else
5387 {
5388 wp = wp->w_prev;
5389 if (wp == NULL)
5390 break;
5391 }
5392 }
5393}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005396static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005397
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398/*
5399 * do_modelines() - process mode lines for the current file
5400 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005401 * "flags" can be:
5402 * OPT_WINONLY only set options local to window
5403 * OPT_NOWIN don't set options local to window
5404 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 * Returns immediately if the "ml" option isn't set.
5406 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005408do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005410 linenr_T lnum;
5411 int nmlines;
5412 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413
5414 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5415 return;
5416
Bram Moolenaarc667da52019-11-30 20:52:27 +01005417 // Disallow recursive entry here. Can happen when executing a modeline
5418 // triggers an autocommand, which reloads modelines with a ":do".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 if (entered)
5420 return;
5421
5422 ++entered;
Hu Jialun9dcd3492021-08-28 20:42:50 +02005423 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005425 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 nmlines = 0;
5427
Hu Jialun9dcd3492021-08-28 20:42:50 +02005428 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 && lnum > curbuf->b_ml.ml_line_count - nmlines; --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 --entered;
5433}
5434
Bram Moolenaarc667da52019-11-30 20:52:27 +01005435#include "version.h" // for version number
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436
5437/*
5438 * chk_modeline() - check a single line for a mode string
5439 * Return FAIL if an error encountered.
5440 */
5441 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005442chk_modeline(
5443 linenr_T lnum,
Bram Moolenaarc667da52019-11-30 20:52:27 +01005444 int flags) // Same as for do_modelines().
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445{
5446 char_u *s;
5447 char_u *e;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005448 char_u *linecopy; // local copy of any modeline found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 int prev;
5450 int vers;
5451 int end;
5452 int retval = OK;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005453 sctx_T save_current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005454
Bram Moolenaare31ee862020-01-07 20:59:34 +01005455 ESTACK_CHECK_DECLARATION
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456
5457 prev = -1;
5458 for (s = ml_get(lnum); *s != NUL; ++s)
5459 {
5460 if (prev == -1 || vim_isspace(prev))
5461 {
5462 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5463 || STRNCMP(s, "vi:", (size_t)3) == 0)
5464 break;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005465 // Accept both "vim" and "Vim".
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005466 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 {
5468 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5469 e = s + 4;
5470 else
5471 e = s + 3;
5472 vers = getdigits(&e);
5473 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005474 && (s[0] != 'V'
5475 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 && (s[3] == ':'
5477 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5478 || (VIM_VERSION_100 < vers && s[3] == '<')
5479 || (VIM_VERSION_100 > vers && s[3] == '>')
5480 || (VIM_VERSION_100 == vers && s[3] == '=')))
5481 break;
5482 }
5483 }
5484 prev = *s;
5485 }
5486
5487 if (*s)
5488 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005489 do // skip over "ex:", "vi:" or "vim:"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 ++s;
5491 while (s[-1] != ':');
5492
Bram Moolenaarc667da52019-11-30 20:52:27 +01005493 s = linecopy = vim_strsave(s); // copy the line, it will change
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 if (linecopy == NULL)
5495 return FAIL;
5496
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005497 // prepare for emsg()
5498 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum);
Bram Moolenaare31ee862020-01-07 20:59:34 +01005499 ESTACK_CHECK_SETUP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500
5501 end = FALSE;
5502 while (end == FALSE)
5503 {
5504 s = skipwhite(s);
5505 if (*s == NUL)
5506 break;
5507
5508 /*
5509 * Find end of set command: ':' or end of line.
5510 * Skip over "\:", replacing it with ":".
5511 */
5512 for (e = s; *e != ':' && *e != NUL; ++e)
5513 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005514 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 if (*e == NUL)
5516 end = TRUE;
5517
5518 /*
5519 * If there is a "set" command, require a terminating ':' and
5520 * ignore the stuff after the ':'.
5521 * "vi:set opt opt opt: foo" -- foo not interpreted
5522 * "vi:opt opt opt: foo" -- foo interpreted
5523 * Accept "se" for compatibility with Elvis.
5524 */
5525 if (STRNCMP(s, "set ", (size_t)4) == 0
5526 || STRNCMP(s, "se ", (size_t)3) == 0)
5527 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005528 if (*e != ':') // no terminating ':'?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 break;
5530 end = TRUE;
5531 s = vim_strchr(s, ' ') + 1;
5532 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005533 *e = NUL; // truncate the set command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
Bram Moolenaarc667da52019-11-30 20:52:27 +01005535 if (*s != NUL) // skip over an empty "::"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005537 int secure_save = secure;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005538
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005539 save_current_sctx = current_sctx;
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005540 current_sctx.sc_version = 1;
5541#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005542 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005543 current_sctx.sc_seq = 0;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005544 current_sctx.sc_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545#endif
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01005546
Bram Moolenaar5958f952018-11-20 04:25:21 +01005547 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005548 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005549
Bram Moolenaara3227e22006-03-08 21:32:40 +00005550 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005551
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005552 secure = secure_save;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005553 current_sctx = save_current_sctx;
Bram Moolenaarc667da52019-11-30 20:52:27 +01005554 if (retval == FAIL) // stop if error found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 break;
5556 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01005557 s = e + 1; // advance to next part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 }
5559
Bram Moolenaare31ee862020-01-07 20:59:34 +01005560 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01005561 estack_pop();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 vim_free(linecopy);
5563 }
5564 return retval;
5565}
5566
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005567/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005568 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5569 */
5570 int
5571bt_normal(buf_T *buf)
5572{
5573 return buf != NULL && buf->b_p_bt[0] == NUL;
5574}
5575
Bram Moolenaar113e1072019-01-20 15:30:40 +01005576#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005577/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005578 * Return TRUE if "buf" is the quickfix buffer.
5579 */
5580 int
5581bt_quickfix(buf_T *buf)
5582{
5583 return buf != NULL && buf->b_p_bt[0] == 'q';
5584}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005585#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005586
Bram Moolenaar113e1072019-01-20 15:30:40 +01005587#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005588/*
5589 * Return TRUE if "buf" is a terminal buffer.
5590 */
5591 int
5592bt_terminal(buf_T *buf)
5593{
5594 return buf != NULL && buf->b_p_bt[0] == 't';
5595}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005596#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005597
5598/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005599 * Return TRUE if "buf" is a help buffer.
5600 */
5601 int
5602bt_help(buf_T *buf)
5603{
5604 return buf != NULL && buf->b_help;
5605}
5606
5607/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005608 * Return TRUE if "buf" is a prompt buffer.
5609 */
5610 int
5611bt_prompt(buf_T *buf)
5612{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005613 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5614}
5615
5616/*
5617 * Return TRUE if "buf" is a buffer for a popup window.
5618 */
5619 int
5620bt_popup(buf_T *buf)
5621{
5622 return buf != NULL && buf->b_p_bt != NULL
5623 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005624}
5625
5626/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005627 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5628 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005629 */
5630 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005631bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005632{
5633 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5634 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005635 || buf->b_p_bt[0] == 't'
5636 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005637}
5638
5639/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005640 * Return TRUE if "buf" has 'buftype' set to "nofile".
5641 */
5642 int
5643bt_nofile(buf_T *buf)
5644{
5645 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5646}
5647
5648/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005649 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5650 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005651 */
5652 int
5653bt_dontwrite(buf_T *buf)
5654{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005655 return buf != NULL && (buf->b_p_bt[0] == 'n'
Bram Moolenaar8133cc62020-10-26 21:05:27 +01005656 || buf->b_p_bt[0] == 't'
5657 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005658}
5659
Bram Moolenaar113e1072019-01-20 15:30:40 +01005660#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005661 int
5662bt_dontwrite_msg(buf_T *buf)
5663{
5664 if (bt_dontwrite(buf))
5665 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005666 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005667 return TRUE;
5668 }
5669 return FALSE;
5670}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005671#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005672
5673/*
5674 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5675 * and 'bufhidden'.
5676 */
5677 int
5678buf_hide(buf_T *buf)
5679{
Bram Moolenaarc667da52019-11-30 20:52:27 +01005680 // 'bufhidden' overrules 'hidden' and ":hide", check it first
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005681 switch (buf->b_p_bh[0])
5682 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005683 case 'u': // "unload"
5684 case 'w': // "wipe"
5685 case 'd': return FALSE; // "delete"
5686 case 'h': return TRUE; // "hide"
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005687 }
Bram Moolenaare1004402020-10-24 20:49:43 +02005688 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005689}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690
5691/*
5692 * Return special buffer name.
5693 * Returns NULL when the buffer has a normal file name.
5694 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005695 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005696buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005698#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005700 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005701 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005702 * Differentiate between the quickfix and location list buffers using
5703 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005704 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005705 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005706 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005707 else
5708 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005709 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005711
Bram Moolenaarc667da52019-11-30 20:52:27 +01005712 // There is no _file_ when 'buftype' is "nofile", b_sfname
5713 // contains the name as specified by the user.
Bram Moolenaar26910de2019-06-15 19:37:15 +02005714 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005716#ifdef FEAT_TERMINAL
5717 if (buf->b_term != NULL)
5718 return term_get_status_text(buf->b_term);
5719#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005720 if (buf->b_fname != NULL)
5721 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005722#ifdef FEAT_JOB_CHANNEL
5723 if (bt_prompt(buf))
5724 return (char_u *)_("[Prompt]");
5725#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005726#ifdef FEAT_PROP_POPUP
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005727 if (bt_popup(buf))
5728 return (char_u *)_("[Popup]");
5729#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005730 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005732
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (buf->b_fname == NULL)
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005734 return buf_get_fname(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 return NULL;
5736}
5737
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738/*
Bram Moolenaar00806bc2020-11-05 19:36:38 +01005739 * Get "buf->b_fname", use "[No Name]" if it is NULL.
5740 */
5741 char_u *
5742buf_get_fname(buf_T *buf)
5743{
5744 if (buf->b_fname == NULL)
5745 return (char_u *)_("[No Name]");
5746 return buf->b_fname;
5747}
5748
5749/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5751 */
5752 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005753set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754{
5755 if (on != curbuf->b_p_bl)
5756 {
5757 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 if (on)
5759 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5760 else
5761 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 }
5763}
5764
5765/*
5766 * Read the file for "buf" again and check if the contents changed.
5767 * Return TRUE if it changed or this could not be checked.
5768 */
5769 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005770buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771{
5772 buf_T *newbuf;
5773 int differ = TRUE;
5774 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 exarg_T ea;
5777
Bram Moolenaarc667da52019-11-30 20:52:27 +01005778 // Allocate a buffer without putting it in the buffer list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5780 if (newbuf == NULL)
5781 return TRUE;
5782
Bram Moolenaarc667da52019-11-30 20:52:27 +01005783 // Force the 'fileencoding' and 'fileformat' to be equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 if (prep_exarg(&ea, buf) == FAIL)
5785 {
5786 wipe_buffer(newbuf, FALSE);
5787 return TRUE;
5788 }
5789
Bram Moolenaarc667da52019-11-30 20:52:27 +01005790 // set curwin/curbuf to buf and save a few things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792
Bram Moolenaar4770d092006-01-12 23:22:24 +00005793 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 && readfile(buf->b_ffname, buf->b_fname,
5795 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5796 &ea, READ_NEW | READ_DUMMY) == OK)
5797 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01005798 // compare the two files line by line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5800 {
5801 differ = FALSE;
5802 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5803 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5804 {
5805 differ = TRUE;
5806 break;
5807 }
5808 }
5809 }
5810 vim_free(ea.cmd);
5811
Bram Moolenaarc667da52019-11-30 20:52:27 +01005812 // restore curwin/curbuf and a few other things
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814
Bram Moolenaarc667da52019-11-30 20:52:27 +01005815 if (curbuf != newbuf) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 wipe_buffer(newbuf, FALSE);
5817
5818 return differ;
5819}
5820
5821/*
5822 * Wipe out a buffer and decrement the last buffer number if it was used for
5823 * this buffer. Call this to wipe out a temp buffer that does not contain any
5824 * marks.
5825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005827wipe_buffer(
5828 buf_T *buf,
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005829 int aucmd) // When TRUE trigger autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830{
5831 if (buf->b_fnum == top_file_num - 1)
5832 --top_file_num;
5833
Bram Moolenaarc667da52019-11-30 20:52:27 +01005834 if (!aucmd) // Don't trigger BufDelete autocommands here.
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005835 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005836
Bram Moolenaara6e8f882019-12-14 16:18:15 +01005837 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005838
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005840 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841}