blob: aa1770a94b92d6599ff55879f37d90442f91c97a [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
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020030static void enter_buffer(buf_T *buf);
31static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010033static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020035static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
36static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
37static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#endif
41#ifdef FEAT_TITLE
Bram Moolenaar84a93082018-06-16 22:58:15 +020042static int value_changed(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010044static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
45static void free_buffer(buf_T *);
46static void free_buffer_stuff(buf_T *buf, int free_options);
47static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000048
49#ifdef UNIX
50# define dev_T dev_t
51#else
52# define dev_T unsigned
53#endif
54
Bram Moolenaar4033c552017-09-16 20:54:51 +020055#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020056static char *msg_loclist = N_("[Location List]");
57static char *msg_qflist = N_("[Quickfix List]");
58#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010059static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020060
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020061// Number of times free_buffer() was called.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020062static int buf_free_count = 0;
63
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +020064static int top_file_num = 1; // highest file number
65static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle
66
67/*
68 * Return the highest possible buffer number.
69 */
70 int
71get_highest_fnum(void)
72{
73 return top_file_num - 1;
74}
75
Bram Moolenaarc024b462019-06-08 18:07:21 +020076/*
77 * Read data from buffer for retrying.
78 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020079 static int
80read_buffer(
81 int read_stdin, /* read file from stdin, otherwise fifo */
82 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
83 int flags) /* extra flags for readfile() */
84{
85 int retval = OK;
86 linenr_T line_count;
87
88 /*
89 * Read from the buffer which the text is already filled in and append at
90 * the end. This makes it possible to retry when 'fileformat' or
91 * 'fileencoding' was guessed wrong.
92 */
93 line_count = curbuf->b_ml.ml_line_count;
94 retval = readfile(
95 read_stdin ? NULL : curbuf->b_ffname,
96 read_stdin ? NULL : curbuf->b_fname,
97 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
98 flags | READ_BUFFER);
99 if (retval == OK)
100 {
101 /* Delete the binary lines. */
102 while (--line_count >= 0)
103 ml_delete((linenr_T)1, FALSE);
104 }
105 else
106 {
107 /* Delete the converted lines. */
108 while (curbuf->b_ml.ml_line_count > line_count)
109 ml_delete(line_count, FALSE);
110 }
111 /* Put the cursor on the first line. */
112 curwin->w_cursor.lnum = 1;
113 curwin->w_cursor.col = 0;
114
115 if (read_stdin)
116 {
117 /* Set or reset 'modified' before executing autocommands, so that
118 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100119 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200120 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100121 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200122 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200123
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100124 if (retval == OK)
125 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100126#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100127 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100128 curbuf, &retval);
129#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100130 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200131#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100132 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200133 }
134 return retval;
135}
136
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200138 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
139 */
140 void
141buffer_ensure_loaded(buf_T *buf)
142{
143 if (buf->b_ml.ml_mfp == NULL)
144 {
145 aco_save_T aco;
146
147 aucmd_prepbuf(&aco, buf);
148 swap_exists_action = SEA_NONE;
149 open_buffer(FALSE, NULL, 0);
150 aucmd_restbuf(&aco);
151 }
152}
153
154/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200155 * Open current buffer, that is: open the memfile and read the file into
156 * memory.
157 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 */
159 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100160open_buffer(
161 int read_stdin, /* read file from stdin */
162 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
163 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164{
165 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200166 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100167#ifdef FEAT_SYN_HL
168 long old_tw = curbuf->b_p_tw;
169#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200170 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171
172 /*
173 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
174 * When re-entering the same buffer, it should not change, because the
175 * user may have reset the flag by hand.
176 */
177 if (readonlymode && curbuf->b_ffname != NULL
178 && (curbuf->b_flags & BF_NEVERLOADED))
179 curbuf->b_p_ro = TRUE;
180
Bram Moolenaar4770d092006-01-12 23:22:24 +0000181 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 {
183 /*
184 * There MUST be a memfile, otherwise we can't do anything
185 * If we can't create one for the current buffer, take another buffer
186 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100187 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200188 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 if (curbuf->b_ml.ml_mfp != NULL)
190 break;
191 /*
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200192 * If there is no memfile at all, exit.
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000193 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 */
195 if (curbuf == NULL)
196 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100197 emsg(_("E82: Cannot allocate any buffer, exiting..."));
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200198
199 // Don't try to do any saving, with "curbuf" NULL almost nothing
200 // will work.
201 v_dying = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 getout(2);
203 }
Bram Moolenaar6f10c702019-08-20 22:58:37 +0200204
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100205 emsg(_("E83: Cannot allocate buffer, using other one..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100207#ifdef FEAT_SYN_HL
208 if (old_tw != curbuf->b_p_tw)
209 check_colorcolumn(curwin);
210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 return FAIL;
212 }
213
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 /* The autocommands in readfile() may change the buffer, but only AFTER
215 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200216 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218
219 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100220 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222 if (curbuf->b_ffname != NULL
223#ifdef FEAT_NETBEANS_INTG
224 && netbeansReadFile
225#endif
226 )
227 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100228 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200229#ifdef UNIX
230 int save_bin = curbuf->b_p_bin;
231 int perm;
232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233#ifdef FEAT_NETBEANS_INTG
234 int oldFire = netbeansFireChanges;
235
236 netbeansFireChanges = 0;
237#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200238#ifdef UNIX
239 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200240 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200241 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200242# ifdef OPEN_CHR_FILES
243 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
244# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200245 ))
246 read_fifo = TRUE;
247 if (read_fifo)
248 curbuf->b_p_bin = TRUE;
249#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100250 if (shortmess(SHM_FILEINFO))
251 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200253 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
255#ifdef UNIX
256 if (read_fifo)
257 {
258 curbuf->b_p_bin = save_bin;
259 if (retval == OK)
260 retval = read_buffer(FALSE, eap, flags);
261 }
262#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100263 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#ifdef FEAT_NETBEANS_INTG
265 netbeansFireChanges = oldFire;
266#endif
267 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200268 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 fix_help_buffer();
270 }
271 else if (read_stdin)
272 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200273 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
275 /*
276 * First read the text in binary mode into the buffer.
277 * Then read from that same buffer and append at the end. This makes
278 * it possible to retry when 'fileformat' or 'fileencoding' was
279 * guessed wrong.
280 */
281 curbuf->b_p_bin = TRUE;
282 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200283 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
284 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 curbuf->b_p_bin = save_bin;
286 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200287 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 }
289
290 /* if first time loading this buffer, init b_chartab[] */
291 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100292 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100294#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100295 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100296#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100297 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
299 /*
300 * Set/reset the Changed flag first, autocmds may change the buffer.
301 * Apply the automatic commands, before processing the modelines.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200302 * So the modelines have priority over autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 */
304 /* When reading stdin, the buffer contents always needs writing, so set
305 * the changed flag. Unless in readonly mode: "ls | gview -".
306 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000307 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100309#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000312 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100314 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200315 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 save_file_ff(curbuf); /* keep this fileformat */
317
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100318 /* Set last_changedtick to avoid triggering a TextChanged autocommand right
319 * after it was added. */
320 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100321 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100322
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 /* require "!" to overwrite the file, because it wasn't read completely */
324#ifdef FEAT_EVAL
325 if (aborting())
326#else
327 if (got_int)
328#endif
329 curbuf->b_flags |= BF_READERR;
330
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000331#ifdef FEAT_FOLDING
332 /* Need to update automatic folding. Do this before the autocommands,
333 * they may use the fold info. */
334 foldUpdateAll(curwin);
335#endif
336
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 /* need to set w_topline, unless some autocommand already did that. */
338 if (!(curwin->w_valid & VALID_TOPLINE))
339 {
340 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100341#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100347#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349#endif
350
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100351 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 /*
354 * The autocommands may have changed the current buffer. Apply the
355 * modelines to the correct buffer, if it still exists and is loaded.
356 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200357 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {
359 aco_save_T aco;
360
361 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200362 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000363 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
365
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100366#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100368 &retval);
369#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
373 /* restore curwin/curbuf and a few other things */
374 aucmd_restbuf(&aco);
375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 }
377
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 return retval;
379}
380
381/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200382 * Store "buf" in "bufref" and set the free count.
383 */
384 void
385set_bufref(bufref_T *bufref, buf_T *buf)
386{
387 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200388 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200389 bufref->br_buf_free_count = buf_free_count;
390}
391
392/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200393 * Return TRUE if "bufref->br_buf" points to the same buffer as when
394 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200395 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200396 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
397 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200398 */
399 int
400bufref_valid(bufref_T *bufref)
401{
402 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200403 ? TRUE : buf_valid(bufref->br_buf)
404 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200405}
406
407/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200409 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 */
411 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100412buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413{
414 buf_T *bp;
415
Bram Moolenaar82404332016-07-10 17:00:38 +0200416 /* Assume that we more often have a recent buffer, start with the last
417 * one. */
418 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 if (bp == buf)
420 return TRUE;
421 return FALSE;
422}
423
424/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200425 * A hash table used to quickly lookup a buffer by its number.
426 */
427static hashtab_T buf_hashtab;
428
429 static void
430buf_hashtab_add(buf_T *buf)
431{
432 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
433 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100434 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200435}
436
437 static void
438buf_hashtab_remove(buf_T *buf)
439{
440 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
441
442 if (!HASHITEM_EMPTY(hi))
443 hash_remove(&buf_hashtab, hi);
444}
445
Bram Moolenaar94f01952018-09-01 15:30:03 +0200446/*
447 * Return TRUE when buffer "buf" can be unloaded.
448 * Give an error message and return FALSE when the buffer is locked or the
449 * screen is being redrawn and the buffer is in a window.
450 */
451 static int
452can_unload_buffer(buf_T *buf)
453{
454 int can_unload = !buf->b_locked;
455
456 if (can_unload && updating_screen)
457 {
458 win_T *wp;
459
460 FOR_ALL_WINDOWS(wp)
461 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200462 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200463 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200464 break;
465 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200466 }
467 if (!can_unload)
Bram Moolenaardefa0672019-07-21 19:25:37 +0200468 semsg(_("E937: Attempt to delete a buffer that is in use: %s"),
469 buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200470 return can_unload;
471}
Bram Moolenaara997b452018-04-17 23:24:06 +0200472
Bram Moolenaar480778b2016-07-14 22:09:39 +0200473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 * Close the link to a buffer.
475 * "action" is used when there is no longer a window for the buffer.
476 * It can be:
477 * 0 buffer becomes hidden
478 * DOBUF_UNLOAD buffer is unloaded
479 * DOBUF_DELETE buffer is unloaded and removed from buffer list
480 * DOBUF_WIPE buffer is unloaded and really deleted
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200481 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 * When doing all but the first one on the current buffer, the caller should
483 * get a new buffer very soon!
484 *
485 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100486 *
487 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
488 * cause there to be only one window with this buffer. e.g. when ":quit" is
489 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 */
491 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100492close_buffer(
493 win_T *win, /* if not NULL, set b_last_cursor */
494 buf_T *buf,
495 int action,
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200496 int abort_if_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100499 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200500 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100501 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200502 win_T *the_curwin = curwin;
503 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 int unload_buf = (action != 0);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200505 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
506 int del_buf = (action == DOBUF_DEL || wipe_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200508 /*
509 * Force unloading or deleting when 'bufhidden' says so.
510 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
511 * "hide" (otherwise we could never free or delete a buffer).
512 */
513 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
514 {
515 del_buf = TRUE;
516 unload_buf = TRUE;
517 }
518 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
519 {
520 del_buf = TRUE;
521 unload_buf = TRUE;
522 wipe_buf = TRUE;
523 }
524 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
525 unload_buf = TRUE;
526
Bram Moolenaar94053a52017-08-01 21:44:33 +0200527#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200528 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200529 {
530 if (term_job_running(buf->b_term))
531 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200532 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200533 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200534 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +0200535 return;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200536
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200537 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200538 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200539 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200540 else
541 {
542 /* The job keeps running, hide the buffer. */
543 del_buf = FALSE;
544 unload_buf = FALSE;
545 }
546 }
547 else
548 {
549 /* A terminal buffer is wiped out if the job has finished. */
550 del_buf = TRUE;
551 unload_buf = TRUE;
552 wipe_buf = TRUE;
553 }
554 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200557 /* Disallow deleting the buffer when it is locked (already being closed or
558 * halfway a command that relies on it). Unloading is allowed. */
Bram Moolenaar94f01952018-09-01 15:30:03 +0200559 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200560 return;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200561
Bram Moolenaar4033c552017-09-16 20:54:51 +0200562 /* check no autocommands closed the window */
563 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 {
565 /* Set b_last_cursor when closing the last window for the buffer.
566 * Remember the last cursor position and window options of the buffer.
567 * This used to be only for the current window, but then options like
568 * 'foldmethod' may be lost with a ":only" command. */
569 if (buf->b_nwindows == 1)
570 set_last_cursor(win);
571 buflist_setfpos(buf, win,
572 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
573 win->w_cursor.col, TRUE);
574 }
575
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200576 set_bufref(&bufref, buf);
577
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 /* When the buffer is no longer in a window, trigger BufWinLeave */
579 if (buf->b_nwindows == 1)
580 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200581 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200582 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
583 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200584 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100585 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200586 /* Autocommands deleted the buffer. */
587aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100588 emsg(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100590 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200591 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200592 if (abort_if_last && one_window())
593 /* Autocommands made this the only window. */
594 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595
596 /* When the buffer becomes hidden, but is not unloaded, trigger
597 * BufHidden */
598 if (!unload_buf)
599 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200600 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200601 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
602 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200603 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200604 /* Autocommands deleted the buffer. */
605 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200606 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200607 if (abort_if_last && one_window())
608 /* Autocommands made this the only window. */
609 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100611#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 if (aborting()) /* autocmds may abort script processing */
613 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200616
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200617 /* If the buffer was in curwin and the window has changed, go back to that
618 * window, if it still exists. This avoids that ":edit x" triggering a
619 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
620 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
621 {
622 block_autocmds();
623 goto_tabpage_win(the_curtab, the_curwin);
624 unblock_autocmds();
625 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200626
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628
629 /* decrease the link count from windows (unless not in any window) */
630 if (buf->b_nwindows > 0)
631 --buf->b_nwindows;
632
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100633#ifdef FEAT_DIFF
634 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100635 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100636#endif
637
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 /* Return when a window is displaying the buffer or when it's not
639 * unloaded. */
640 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642
643 /* Always remove the buffer when there is no file name. */
644 if (buf->b_ffname == NULL)
645 del_buf = TRUE;
646
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200647 /* When closing the current buffer stop Visual mode before freeing
648 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200649 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200650#if defined(EXITFREE)
651 && !entered_free_all_mem
652#endif
653 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200654 end_visual_mode();
655
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 /*
657 * Free all things allocated for this buffer.
658 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
659 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 /* Remember if we are closing the current buffer. Restore the number of
661 * windows, so that autocommands in buf_freeall() don't get confused. */
662 is_curbuf = (buf == curbuf);
663 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200665 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200668 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100670#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000671 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100673#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 /*
676 * It's possible that autocommands change curbuf to the one being deleted.
677 * This might cause the previous curbuf to be deleted unexpectedly. But
678 * in some cases it's OK to delete the curbuf, because a new one is
679 * obtained anyway. Therefore only return if curbuf changed to the
680 * deleted buffer.
681 */
682 if (buf == curbuf && !is_curbuf)
683 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200684
Bram Moolenaar4033c552017-09-16 20:54:51 +0200685 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200686 win->w_buffer = NULL; /* make sure we don't use the buffer now */
687
688 /* Autocommands may have opened or closed windows for this buffer.
689 * Decrement the count for the close we do here. */
690 if (buf->b_nwindows > 0)
691 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 /*
694 * Remove the buffer from the list.
695 */
696 if (wipe_buf)
697 {
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +0200698 if (action == DOBUF_WIPE_REUSE)
699 {
700 // we can re-use this buffer number, store it
701 if (buf_reuse.ga_itemsize == 0)
702 ga_init2(&buf_reuse, sizeof(int), 50);
703 if (ga_grow(&buf_reuse, 1) == OK)
704 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum;
705 }
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200706 if (buf->b_sfname != buf->b_ffname)
707 VIM_CLEAR(buf->b_sfname);
708 else
709 buf->b_sfname = NULL;
710 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 if (buf->b_prev == NULL)
712 firstbuf = buf->b_next;
713 else
714 buf->b_prev->b_next = buf->b_next;
715 if (buf->b_next == NULL)
716 lastbuf = buf->b_prev;
717 else
718 buf->b_next->b_prev = buf->b_prev;
719 free_buffer(buf);
720 }
721 else
722 {
723 if (del_buf)
724 {
725 /* Free all internal variables and reset option values, to make
726 * ":bdel" compatible with Vim 5.7. */
727 free_buffer_stuff(buf, TRUE);
728
729 /* Make it look like a new buffer. */
730 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
731
732 /* Init the options when loaded again. */
733 buf->b_p_initialized = FALSE;
734 }
735 buf_clear_file(buf);
736 if (del_buf)
737 buf->b_p_bl = FALSE;
738 }
739}
740
741/*
742 * Make buffer not contain a file.
743 */
744 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100745buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746{
747 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200748 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 buf->b_p_eol = TRUE;
751 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000753 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 buf->b_ml.ml_mfp = NULL;
755 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
756#ifdef FEAT_NETBEANS_INTG
757 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#endif
759}
760
761/*
762 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200763 * the file. Careful: get here with "curwin" NULL when exiting.
764 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200765 * BFA_DEL buffer is going to be deleted
766 * BFA_WIPE buffer is going to be wiped out
767 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100770buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200773 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200774 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200775 win_T *the_curwin = curwin;
776 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
Bram Moolenaar5a497892016-09-03 16:29:04 +0200778 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200779 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200780 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200781 if (buf->b_ml.ml_mfp != NULL)
782 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200783 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
784 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200785 && !bufref_valid(&bufref))
786 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200787 return;
788 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200789 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200791 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
792 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200793 && !bufref_valid(&bufref))
794 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 return;
796 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200797 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200799 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
800 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200801 && !bufref_valid(&bufref))
802 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 return;
804 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200805 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200806
Bram Moolenaar5a497892016-09-03 16:29:04 +0200807 /* If the buffer was in curwin and the window has changed, go back to that
808 * window, if it still exists. This avoids that ":edit x" triggering a
809 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
810 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
811 {
812 block_autocmds();
813 goto_tabpage_win(the_curtab, the_curwin);
814 unblock_autocmds();
815 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200816
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100817#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000818 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100820#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822 /*
823 * It's possible that autocommands change curbuf to the one being deleted.
824 * This might cause curbuf to be deleted unexpectedly. But in some cases
825 * it's OK to delete the curbuf, because a new one is obtained anyway.
826 * Therefore only return if curbuf changed to the deleted buffer.
827 */
828 if (buf == curbuf && !is_curbuf)
829 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830#ifdef FEAT_DIFF
831 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
832#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200833#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100834 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200835 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100836 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200837#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000838
839#ifdef FEAT_FOLDING
840 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000841 {
842 win_T *win;
843 tabpage_T *tp;
844
845 FOR_ALL_TAB_WINDOWS(tp, win)
846 if (win->w_buffer == buf)
847 clearFolding(win);
848 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000849#endif
850
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851#ifdef FEAT_TCL
852 tcl_buffer_free(buf);
853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 ml_close(buf, TRUE); /* close and delete the memline/memfile */
855 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200856 if ((flags & BFA_KEEP_UNDO) == 0)
857 {
858 u_blockfree(buf); /* free the memory allocated for undo */
859 u_clearall(buf); /* reset all undo information */
860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200862 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100864#ifdef FEAT_TEXT_PROP
865 clear_buf_prop_types(buf);
866#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000867 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868}
869
870/*
871 * Free a buffer structure and the things it contains related to the buffer
872 * itself (not the file, that must have been done already).
873 */
874 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100875free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200877 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200879#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200880 /* b:changedtick uses an item in buf_T, remove it now */
881 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200882 unref_var_dict(buf->b_vars);
883#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200884#ifdef FEAT_LUA
885 lua_buffer_free(buf);
886#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000887#ifdef FEAT_MZSCHEME
888 mzscheme_buffer_free(buf);
889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890#ifdef FEAT_PERL
891 perl_buf_free(buf);
892#endif
893#ifdef FEAT_PYTHON
894 python_buffer_free(buf);
895#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200896#ifdef FEAT_PYTHON3
897 python3_buffer_free(buf);
898#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899#ifdef FEAT_RUBY
900 ruby_buffer_free(buf);
901#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200902#ifdef FEAT_JOB_CHANNEL
903 channel_buffer_free(buf);
904#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200905#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200906 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200907#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200908#ifdef FEAT_JOB_CHANNEL
909 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200910 free_callback(&buf->b_prompt_callback);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200911#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200912
913 buf_hashtab_remove(buf);
914
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200915 aubuflocal_remove(buf);
916
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200917 if (autocmd_busy)
918 {
919 /* Do not free the buffer structure while autocommands are executing,
920 * it's still needed. Free it when autocmd_busy is reset. */
921 buf->b_next = au_pending_free_buf;
922 au_pending_free_buf = buf;
923 }
924 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200925 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926}
927
928/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100929 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100930 */
931 static void
932init_changedtick(buf_T *buf)
933{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100934 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100935
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100936 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
937 di->di_tv.v_type = VAR_NUMBER;
938 di->di_tv.v_lock = VAR_FIXED;
939 di->di_tv.vval.v_number = 0;
940
Bram Moolenaar92769c32017-02-25 15:41:37 +0100941#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100942 STRCPY(buf->b_ct_di.di_key, "changedtick");
943 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100944#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100945}
946
947/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
949 */
950 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100951free_buffer_stuff(
952 buf_T *buf,
953 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954{
955 if (free_options)
956 {
957 clear_wininfo(buf); /* including window-local options */
958 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200959#ifdef FEAT_SPELL
960 ga_clear(&buf->b_s.b_langp);
961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100964 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100965 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100966
967 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
968 hash_init(&buf->b_vars->dv_hashtab);
969 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100970 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200973 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200975 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000977#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200978 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
981 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
Bram Moolenaard23a8232018-02-10 18:45:26 +0100982 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983}
984
985/*
986 * Free the b_wininfo list for buffer "buf".
987 */
988 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100989clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990{
991 wininfo_T *wip;
992
993 while (buf->b_wininfo != NULL)
994 {
995 wip = buf->b_wininfo;
996 buf->b_wininfo = wip->wi_next;
997 if (wip->wi_optset)
998 {
999 clear_winopt(&wip->wi_opt);
1000#ifdef FEAT_FOLDING
1001 deleteFoldRecurse(&wip->wi_folds);
1002#endif
1003 }
1004 vim_free(wip);
1005 }
1006}
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008/*
1009 * Go to another buffer. Handles the result of the ATTENTION dialog.
1010 */
1011 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001012goto_buffer(
1013 exarg_T *eap,
1014 int start,
1015 int dir,
1016 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001018 bufref_T old_curbuf;
1019
1020 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021
1022 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1024 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1026 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001027#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001028 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001029
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001030 /* Reset the error/interrupt/exception state here so that
1031 * aborting() returns FALSE when closing a window. */
1032 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001033#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001034
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001035 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 win_close(curwin, TRUE);
1037 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001038 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001039
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001040#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001041 /* Restore the error/interrupt/exception state if not discarded by a
1042 * new aborting error, interrupt, or uncaught exception. */
1043 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001044#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 }
1046 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001047 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001048}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050/*
1051 * Handle the situation of swap_exists_action being set.
1052 * It is allowed for "old_curbuf" to be NULL or invalid.
1053 */
1054 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001055handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001057#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001058 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001059#endif
1060#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001061 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001062#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001063 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001064
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 if (swap_exists_action == SEA_QUIT)
1066 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001067#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001068 /* Reset the error/interrupt/exception state here so that
1069 * aborting() returns FALSE when closing a buffer. */
1070 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001071#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 /* User selected Quit at ATTENTION prompt. Go back to previous
1074 * buffer. If that buffer is gone or the same as the current one,
1075 * open a new, empty buffer. */
1076 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001077 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001078 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001079 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1080 || old_curbuf->br_buf == curbuf)
1081 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1082 else
1083 buf = old_curbuf->br_buf;
1084 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001085 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001086 int old_msg_silent = msg_silent;
1087
1088 if (shortmess(SHM_FILEINFO))
1089 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001090 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001091 // restore msg_silent, so that the command line will be shown
1092 msg_silent = old_msg_silent;
1093
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001094#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001095 if (old_tw != curbuf->b_p_tw)
1096 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001097#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001098 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001100
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001101#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001102 /* Restore the error/interrupt/exception state if not discarded by a
1103 * new aborting error, interrupt, or uncaught exception. */
1104 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 }
1107 else if (swap_exists_action == SEA_RECOVER)
1108 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001109#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001110 /* Reset the error/interrupt/exception state here so that
1111 * aborting() returns FALSE when closing a buffer. */
1112 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001113#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001114
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 /* User selected Recover at ATTENTION prompt. */
1116 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001117 ml_recover(FALSE);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001118 msg_puts("\n"); /* don't overwrite the last message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001120 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001121
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001122#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001123 /* Restore the error/interrupt/exception state if not discarded by a
1124 * new aborting error, interrupt, or uncaught exception. */
1125 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001126#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 }
1128 swap_exists_action = SEA_NONE;
1129}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131/*
1132 * do_bufdel() - delete or unload buffer(s)
1133 *
1134 * addr_count == 0: ":bdel" - delete current buffer
1135 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1136 * buffer "end_bnr", then any other arguments.
1137 * addr_count == 2: ":N,N bdel" - delete buffers in range
1138 *
1139 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1140 * DOBUF_DEL (":bdel")
1141 *
1142 * Returns error message or NULL
1143 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001144 char *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001145do_bufdel(
1146 int command,
1147 char_u *arg, /* pointer to extra arguments */
1148 int addr_count,
1149 int start_bnr, /* first buffer number in a range */
1150 int end_bnr, /* buffer nr or last buffer nr in a range */
1151 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152{
1153 int do_current = 0; /* delete current buffer? */
1154 int deleted = 0; /* number of buffers deleted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001155 char *errormsg = NULL; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 int bnr; /* buffer number */
1157 char_u *p;
1158
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 if (addr_count == 0)
1160 {
1161 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1162 }
1163 else
1164 {
1165 if (addr_count == 2)
1166 {
1167 if (*arg) /* both range and argument is not allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001168 return _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 bnr = start_bnr;
1170 }
1171 else /* addr_count == 1 */
1172 bnr = end_bnr;
1173
1174 for ( ;!got_int; ui_breakcheck())
1175 {
1176 /*
1177 * delete the current buffer last, otherwise when the
1178 * current buffer is deleted, the next buffer becomes
1179 * the current one and will be loaded, which may then
1180 * also be deleted, etc.
1181 */
1182 if (bnr == curbuf->b_fnum)
1183 do_current = bnr;
1184 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1185 forceit) == OK)
1186 ++deleted;
1187
1188 /*
1189 * find next buffer number to delete/unload
1190 */
1191 if (addr_count == 2)
1192 {
1193 if (++bnr > end_bnr)
1194 break;
1195 }
1196 else /* addr_count == 1 */
1197 {
1198 arg = skipwhite(arg);
1199 if (*arg == NUL)
1200 break;
1201 if (!VIM_ISDIGIT(*arg))
1202 {
1203 p = skiptowhite_esc(arg);
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001204 bnr = buflist_findpat(arg, p,
1205 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE,
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001206 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 if (bnr < 0) /* failed */
1208 break;
1209 arg = p;
1210 }
1211 else
1212 bnr = getdigits(&arg);
1213 }
1214 }
1215 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1216 FORWARD, do_current, forceit) == OK)
1217 ++deleted;
1218
1219 if (deleted == 0)
1220 {
1221 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001222 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001224 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001226 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001227 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 }
1229 else if (deleted >= p_report)
1230 {
1231 if (command == DOBUF_UNLOAD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001232 smsg(NGETTEXT("%d buffer unloaded",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001233 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 else if (command == DOBUF_DEL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001235 smsg(NGETTEXT("%d buffer deleted",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001236 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001238 smsg(NGETTEXT("%d buffer wiped out",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001239 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 }
1241 }
1242
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243
1244 return errormsg;
1245}
1246
Bram Moolenaara02471e2014-01-10 16:43:14 +01001247/*
1248 * Make the current buffer empty.
1249 * Used when it is wiped out and it's the last buffer.
1250 */
1251 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001252empty_curbuf(
1253 int close_others,
1254 int forceit,
1255 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001256{
1257 int retval;
1258 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001259 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001260
1261 if (action == DOBUF_UNLOAD)
1262 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001263 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001264 return FAIL;
1265 }
1266
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001267 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001268 if (close_others)
1269 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001270 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001271
1272 setpcmark();
1273 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1274 forceit ? ECMD_FORCEIT : 0, curwin);
1275
1276 /*
1277 * do_ecmd() may create a new buffer, then we have to delete
1278 * the old one. But do_ecmd() may have done that already, check
1279 * if the buffer still exists.
1280 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001281 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001282 close_buffer(NULL, buf, action, FALSE);
1283 if (!close_others)
1284 need_fileinfo = FALSE;
1285 return retval;
1286}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001287
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288/*
1289 * Implementation of the commands for the buffer list.
1290 *
1291 * action == DOBUF_GOTO go to specified buffer
1292 * action == DOBUF_SPLIT split window and go to specified buffer
1293 * action == DOBUF_UNLOAD unload specified buffer(s)
1294 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1295 * action == DOBUF_WIPE delete specified buffer(s) really
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001296 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 *
1298 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1299 * start == DOBUF_FIRST go to "count" buffer from first buffer
1300 * start == DOBUF_LAST go to "count" buffer from last buffer
1301 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1302 *
1303 * Return FAIL or OK.
1304 */
1305 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001306do_buffer(
1307 int action,
1308 int start,
1309 int dir, /* FORWARD or BACKWARD */
1310 int count, /* buffer number or number of buffers */
1311 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312{
1313 buf_T *buf;
1314 buf_T *bp;
1315 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001316 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317
1318 switch (start)
1319 {
1320 case DOBUF_FIRST: buf = firstbuf; break;
1321 case DOBUF_LAST: buf = lastbuf; break;
1322 default: buf = curbuf; break;
1323 }
1324 if (start == DOBUF_MOD) /* find next modified buffer */
1325 {
1326 while (count-- > 0)
1327 {
1328 do
1329 {
1330 buf = buf->b_next;
1331 if (buf == NULL)
1332 buf = firstbuf;
1333 }
1334 while (buf != curbuf && !bufIsChanged(buf));
1335 }
1336 if (!bufIsChanged(buf))
1337 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001338 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 return FAIL;
1340 }
1341 }
1342 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1343 {
1344 while (buf != NULL && buf->b_fnum != count)
1345 buf = buf->b_next;
1346 }
1347 else
1348 {
1349 bp = NULL;
1350 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1351 {
1352 /* remember the buffer where we start, we come back there when all
1353 * buffers are unlisted. */
1354 if (bp == NULL)
1355 bp = buf;
1356 if (dir == FORWARD)
1357 {
1358 buf = buf->b_next;
1359 if (buf == NULL)
1360 buf = firstbuf;
1361 }
1362 else
1363 {
1364 buf = buf->b_prev;
1365 if (buf == NULL)
1366 buf = lastbuf;
1367 }
1368 /* don't count unlisted buffers */
1369 if (unload || buf->b_p_bl)
1370 {
1371 --count;
1372 bp = NULL; /* use this buffer as new starting point */
1373 }
1374 if (bp == buf)
1375 {
1376 /* back where we started, didn't find anything. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001377 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 return FAIL;
1379 }
1380 }
1381 }
1382
1383 if (buf == NULL) /* could not find it */
1384 {
1385 if (start == DOBUF_FIRST)
1386 {
1387 /* don't warn when deleting */
1388 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001389 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 }
1391 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001392 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001394 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 return FAIL;
1396 }
1397
1398#ifdef FEAT_GUI
1399 need_mouse_correct = TRUE;
1400#endif
1401
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 /*
1403 * delete buffer buf from memory and/or the list
1404 */
1405 if (unload)
1406 {
1407 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001408 bufref_T bufref;
1409
Bram Moolenaar94f01952018-09-01 15:30:03 +02001410 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001411 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001412
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001413 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415 /* When unloading or deleting a buffer that's already unloaded and
1416 * unlisted: fail silently. */
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001417 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE
1418 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 return FAIL;
1420
1421 if (!forceit && bufIsChanged(buf))
1422 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001423#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 if ((p_confirm || cmdmod.confirm) && p_write)
1425 {
1426 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001427 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 /* Autocommand deleted buffer, oops! It's not changed
1429 * now. */
1430 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001431 /* If it's still changed fail silently, the dialog already
1432 * mentioned why it fails. */
1433 if (bufIsChanged(buf))
1434 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001436 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001437#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001439 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 buf->b_fnum);
1441 return FAIL;
1442 }
1443 }
1444
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001445 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001446 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001447 end_visual_mode();
1448
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 /*
1450 * If deleting the last (listed) buffer, make it empty.
1451 * The last (listed) buffer cannot be unloaded.
1452 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001453 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 if (bp->b_p_bl && bp != buf)
1455 break;
1456 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001457 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 /*
1460 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001461 * (unless it's the only window). Repeat this so long as we end up in
1462 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001464 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001465 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001466 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001467 {
1468 if (win_close(curwin, FALSE) == FAIL)
1469 break;
1470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471
1472 /*
1473 * If the buffer to be deleted is not the current one, delete it here.
1474 */
1475 if (buf != curbuf)
1476 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001477 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001478 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001479 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 return OK;
1481 }
1482
1483 /*
1484 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001485 * There should be another, otherwise it would have been handled
1486 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001487 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 * Then prefer the buffer we most recently visited.
1489 * Else try to find one that is loaded, after the current buffer,
1490 * then before the current buffer.
1491 * Finally use any buffer.
1492 */
1493 buf = NULL; /* selected buffer */
1494 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001495 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1496 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001498 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 {
1500 int jumpidx;
1501
1502 jumpidx = curwin->w_jumplistidx - 1;
1503 if (jumpidx < 0)
1504 jumpidx = curwin->w_jumplistlen - 1;
1505
1506 forward = jumpidx;
1507 while (jumpidx != curwin->w_jumplistidx)
1508 {
1509 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1510 if (buf != NULL)
1511 {
1512 if (buf == curbuf || !buf->b_p_bl)
1513 buf = NULL; /* skip current and unlisted bufs */
1514 else if (buf->b_ml.ml_mfp == NULL)
1515 {
1516 /* skip unloaded buf, but may keep it for later */
1517 if (bp == NULL)
1518 bp = buf;
1519 buf = NULL;
1520 }
1521 }
1522 if (buf != NULL) /* found a valid buffer: stop searching */
1523 break;
1524 /* advance to older entry in jump list */
1525 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1526 break;
1527 if (--jumpidx < 0)
1528 jumpidx = curwin->w_jumplistlen - 1;
1529 if (jumpidx == forward) /* List exhausted for sure */
1530 break;
1531 }
1532 }
1533#endif
1534
1535 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1536 {
1537 forward = TRUE;
1538 buf = curbuf->b_next;
1539 for (;;)
1540 {
1541 if (buf == NULL)
1542 {
1543 if (!forward) /* tried both directions */
1544 break;
1545 buf = curbuf->b_prev;
1546 forward = FALSE;
1547 continue;
1548 }
1549 /* in non-help buffer, try to skip help buffers, and vv */
1550 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1551 {
1552 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1553 break;
1554 if (bp == NULL) /* remember unloaded buf for later */
1555 bp = buf;
1556 }
1557 if (forward)
1558 buf = buf->b_next;
1559 else
1560 buf = buf->b_prev;
1561 }
1562 }
1563 if (buf == NULL) /* No loaded buffer, use unloaded one */
1564 buf = bp;
1565 if (buf == NULL) /* No loaded buffer, find listed one */
1566 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001567 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (buf->b_p_bl && buf != curbuf)
1569 break;
1570 }
1571 if (buf == NULL) /* Still no buffer, just take one */
1572 {
1573 if (curbuf->b_next != NULL)
1574 buf = curbuf->b_next;
1575 else
1576 buf = curbuf->b_prev;
1577 }
1578 }
1579
Bram Moolenaara02471e2014-01-10 16:43:14 +01001580 if (buf == NULL)
1581 {
1582 /* Autocommands must have wiped out all other buffers. Only option
1583 * now is to make the current buffer empty. */
1584 return empty_curbuf(FALSE, forceit, action);
1585 }
1586
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 /*
1588 * make buf current buffer
1589 */
1590 if (action == DOBUF_SPLIT) /* split window first */
1591 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001592 /* If 'switchbuf' contains "useopen": jump to first window containing
1593 * "buf" if one exists */
1594 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001595 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001596 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001597 * page containing "buf" if one exists */
1598 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 return OK;
1600 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 return FAIL;
1602 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603
1604 /* go to current buffer - nothing to do */
1605 if (buf == curbuf)
1606 return OK;
1607
1608 /*
1609 * Check if the current buffer may be abandoned.
1610 */
1611 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1612 {
1613#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1614 if ((p_confirm || cmdmod.confirm) && p_write)
1615 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001616 bufref_T bufref;
1617
1618 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001620 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 /* Autocommand deleted buffer, oops! */
1622 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 }
1624 if (bufIsChanged(curbuf))
1625#endif
1626 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001627 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 return FAIL;
1629 }
1630 }
1631
1632 /* Go to the other buffer. */
1633 set_curbuf(buf, action);
1634
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001636 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001638#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 if (aborting()) /* autocmds may abort script processing */
1640 return FAIL;
1641#endif
1642
1643 return OK;
1644}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
1646/*
1647 * Set current buffer to "buf". Executes autocommands and closes current
1648 * buffer. "action" tells how to close the current buffer:
1649 * DOBUF_GOTO free or hide it
1650 * DOBUF_SPLIT nothing
1651 * DOBUF_UNLOAD unload it
1652 * DOBUF_DEL delete it
1653 * DOBUF_WIPE wipe it out
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001654 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 */
1656 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001657set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658{
1659 buf_T *prevbuf;
1660 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001661 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001662#ifdef FEAT_SYN_HL
1663 long old_tw = curbuf->b_p_tw;
1664#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001665 bufref_T newbufref;
1666 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
1668 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001669 if (!cmdmod.keepalt)
1670 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001671 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 /* Don't restart Select mode after switching to another buffer. */
1674 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001676 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1677 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001679 set_bufref(&prevbufref, prevbuf);
1680 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001682 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1683 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001684 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001685 || (bufref_valid(&prevbufref)
1686 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001687#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001688 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001690 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001692#ifdef FEAT_SYN_HL
1693 if (prevbuf == curwin->w_buffer)
1694 reset_synblock(curwin);
1695#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001697 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001698#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001699 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001701 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001703 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001704 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001705 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001706 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1708 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001709 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001710 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001711 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001712 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001713 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001716 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001717 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001718 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1719 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001720#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001721 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001723 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001724 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001726#ifdef FEAT_SYN_HL
1727 if (old_tw != curbuf->b_p_tw)
1728 check_colorcolumn(curwin);
1729#endif
1730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731}
1732
1733/*
1734 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001735 * Old curbuf must have been abandoned already! This also means "curbuf" may
1736 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001738 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001739enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740{
Bram Moolenaar010ee962019-09-25 20:37:36 +02001741 // Get the buffer in the current window.
1742 curwin->w_buffer = buf;
1743 curbuf = buf;
1744 ++curbuf->b_nwindows;
1745
1746 // Copy buffer and window local option values. Not for a help buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1748 if (!buf->b_help)
1749 get_winopts(buf);
1750#ifdef FEAT_FOLDING
1751 else
Bram Moolenaar010ee962019-09-25 20:37:36 +02001752 // Remove all folds in the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 clearFolding(curwin);
Bram Moolenaar010ee962019-09-25 20:37:36 +02001754 foldUpdateAll(curwin); // update folds (later).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755#endif
1756
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001758 if (curwin->w_p_diff)
1759 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760#endif
1761
Bram Moolenaara971b822011-09-14 14:43:25 +02001762#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001763 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001764#endif
1765
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 /* Cursor on first line by default. */
1767 curwin->w_cursor.lnum = 1;
1768 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001771 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001773 /* mark cursor position as being invalid */
1774 curwin->w_valid = 0;
1775
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001776 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1777 curbuf->b_last_cursor.col, TRUE);
1778
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 /* Make sure the buffer is loaded. */
1780 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001781 {
1782 /* If there is no filetype, allow for detecting one. Esp. useful for
1783 * ":ball" used in a autocommand. If there already is a filetype we
1784 * might prefer to keep it. */
1785 if (*curbuf->b_p_ft == NUL)
1786 did_filetype = FALSE;
1787
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001788 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 else
1791 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001792 if (!msg_silent && !shortmess(SHM_FILEINFO))
1793 need_fileinfo = TRUE; // display file info after redraw
1794
1795 // check if file changed
1796 (void)buf_check_timestamp(curbuf, FALSE);
1797
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001799#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1803 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 }
1805
1806 /* If autocommands did not change the cursor position, restore cursor lnum
1807 * and possibly cursor col. */
1808 if (curwin->w_cursor.lnum == 1 && inindent(0))
1809 buflist_getfpos();
1810
1811 check_arg_idx(curwin); /* check for valid arg_idx */
1812#ifdef FEAT_TITLE
1813 maketitle();
1814#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001815 /* when autocmds didn't change it */
1816 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1818
Bram Moolenaar009b2592004-10-24 19:18:58 +00001819#ifdef FEAT_NETBEANS_INTG
1820 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001821 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001822#endif
1823
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001824 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001825 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826
1827#ifdef FEAT_KEYMAP
1828 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001829 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001831#ifdef FEAT_SPELL
1832 /* May need to set the spell language. Can only do this after the buffer
1833 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001834 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1835 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001836#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001837#ifdef FEAT_VIMINFO
1838 curbuf->b_last_used = vim_time();
1839#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001840
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 redraw_later(NOT_VALID);
1842}
1843
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001844#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1845/*
1846 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001847 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001848 */
1849 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001850do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001851{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001852 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001853 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001854 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001855 shorten_fnames(TRUE);
1856}
1857#endif
1858
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001859 void
1860no_write_message(void)
1861{
1862#ifdef FEAT_TERMINAL
1863 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001864 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001865 else
1866#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001867 emsg(_("E37: No write since last change (add ! to override)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001868}
1869
1870 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001871no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001872{
1873#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001874 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001875 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001876 else
1877#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001878 emsg(_("E37: No write since last change"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001879}
1880
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881/*
1882 * functions for dealing with the buffer list
1883 */
1884
1885/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001886 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1887 * only one window. That means it can be re-used.
1888 */
1889 int
1890curbuf_reusable(void)
1891{
1892 return (curbuf != NULL
1893 && curbuf->b_ffname == NULL
1894 && curbuf->b_nwindows <= 1
1895 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001896#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001897 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001898#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001899 && !curbufIsChanged());
1900}
1901
1902/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 * Add a file name to the buffer list. Return a pointer to the buffer.
1904 * If the same file name already exists return a pointer to that buffer.
1905 * If it does not exist, or if fname == NULL, a new entry is created.
1906 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1907 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1908 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001909 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001910 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1911 * if the buffer already exists.
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02001912 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 * This is the ONLY way to create a new buffer.
1914 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001916buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001917 char_u *ffname_arg, // full path of fname or relative
1918 char_u *sfname_arg, // short fname or NULL
1919 linenr_T lnum, // preferred cursor line
1920 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001922 char_u *ffname = ffname_arg;
1923 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 buf_T *buf;
1925#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001926 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927#endif
1928
Bram Moolenaar480778b2016-07-14 22:09:39 +02001929 if (top_file_num == 1)
1930 hash_init(&buf_hashtab);
1931
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001932 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933
1934 /*
1935 * If file name already exists in the list, update the entry.
1936 */
1937#ifdef UNIX
1938 /* On Unix we can use inode numbers when the file exists. Works better
1939 * for hard links. */
1940 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1941 st.st_dev = (dev_T)-1;
1942#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001943 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944#ifdef UNIX
1945 buflist_findname_stat(ffname, &st)
1946#else
1947 buflist_findname(ffname)
1948#endif
1949 ) != NULL)
1950 {
1951 vim_free(ffname);
1952 if (lnum != 0)
1953 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001954
1955 if ((flags & BLN_NOOPT) == 0)
1956 /* copy the options now, if 'cpo' doesn't have 's' and not done
1957 * already */
1958 buf_copy_options(buf, 0);
1959
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1961 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001962 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001963
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001965 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001967 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001968 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001969 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001970 return NULL;
1971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 }
1973 return buf;
1974 }
1975
1976 /*
1977 * If the current buffer has no name and no contents, use the current
1978 * buffer. Otherwise: Need to allocate a new buffer structure.
1979 *
1980 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001981 * (A spell file buffer is allocated in spell.c, but that's not a normal
1982 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 */
1984 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001985 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 {
1987 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 /* It's like this buffer is deleted. Watch out for autocommands that
1989 * change curbuf! If that happens, allocate a new buffer anyway. */
1990 if (curbuf->b_p_bl)
1991 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1992 if (buf == curbuf)
1993 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001994#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001995 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 {
2000 /* Make sure 'bufhidden' and 'buftype' are empty */
2001 clear_string_option(&buf->b_p_bh);
2002 clear_string_option(&buf->b_p_bt);
2003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 }
2005 if (buf != curbuf || curbuf == NULL)
2006 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002007 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 if (buf == NULL)
2009 {
2010 vim_free(ffname);
2011 return NULL;
2012 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002013#ifdef FEAT_EVAL
2014 /* init b: variables */
2015 buf->b_vars = dict_alloc();
2016 if (buf->b_vars == NULL)
2017 {
2018 vim_free(ffname);
2019 vim_free(buf);
2020 return NULL;
2021 }
2022 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2023#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002024 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 }
2026
2027 if (ffname != NULL)
2028 {
2029 buf->b_ffname = ffname;
2030 buf->b_sfname = vim_strsave(sfname);
2031 }
2032
2033 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002034 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035
2036 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2037 || buf->b_wininfo == NULL)
2038 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002039 if (buf->b_sfname != buf->b_ffname)
2040 VIM_CLEAR(buf->b_sfname);
2041 else
2042 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002043 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 if (buf != curbuf)
2045 free_buffer(buf);
2046 return NULL;
2047 }
2048
2049 if (buf == curbuf)
2050 {
2051 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002052 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 if (buf != curbuf) /* autocommands deleted the buffer! */
2054 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002055#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002056 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 return NULL;
2058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002060
2061 /* Init the options. */
2062 buf->b_p_initialized = FALSE;
2063 buf_copy_options(buf, BCO_ENTER);
2064
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065#ifdef FEAT_KEYMAP
2066 /* need to reload lmaps and set b:keymap_name */
2067 curbuf->b_kmap_state |= KEYMAP_INIT;
2068#endif
2069 }
2070 else
2071 {
2072 /*
2073 * put new buffer at the end of the buffer list
2074 */
2075 buf->b_next = NULL;
2076 if (firstbuf == NULL) /* buffer list is empty */
2077 {
2078 buf->b_prev = NULL;
2079 firstbuf = buf;
2080 }
2081 else /* append new buffer at end of list */
2082 {
2083 lastbuf->b_next = buf;
2084 buf->b_prev = lastbuf;
2085 }
2086 lastbuf = buf;
2087
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02002088 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0)
2089 {
2090 // Recycle a previously used buffer number. Used for buffers which
2091 // are normally hidden, e.g. in a popup window. Avoids that the
2092 // buffer number grows rapidly.
2093 --buf_reuse.ga_len;
2094 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len];
2095 }
2096 else
2097 buf->b_fnum = top_file_num++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2099 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002100 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 if (emsg_silent == 0)
2102 {
2103 out_flush();
2104 ui_delay(3000L, TRUE); /* make sure it is noticed */
2105 }
2106 top_file_num = 1;
2107 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002108 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109
2110 /*
2111 * Always copy the options from the current buffer.
2112 */
2113 buf_copy_options(buf, BCO_ALWAYS);
2114 }
2115
2116 buf->b_wininfo->wi_fpos.lnum = lnum;
2117 buf->b_wininfo->wi_win = curwin;
2118
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002119#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002120 hash_init(&buf->b_s.b_keywtab);
2121 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122#endif
2123
2124 buf->b_fname = buf->b_sfname;
2125#ifdef UNIX
2126 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002127 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 else
2129 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002130 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 buf->b_dev = st.st_dev;
2132 buf->b_ino = st.st_ino;
2133 }
2134#endif
2135 buf->b_u_synced = TRUE;
2136 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002137 if (flags & BLN_DUMMY)
2138 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 buf_clear_file(buf);
2140 clrallmarks(buf); /* clear marks */
2141 fmarks_check_names(buf); /* check file marks for this file */
2142 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 if (!(flags & BLN_DUMMY))
2144 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002145 bufref_T bufref;
2146
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002147 /* Tricky: these autocommands may change the buffer list. They could
2148 * also split the window with re-using the one empty buffer. This may
2149 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002150 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002151 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002152 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002153 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002155 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002156 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002157 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002158 return NULL;
2159 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002160#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002161 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002164 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165
2166 return buf;
2167}
2168
2169/*
2170 * Free the memory for the options of a buffer.
2171 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2172 * 'fileencoding'.
2173 */
2174 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002175free_buf_options(
2176 buf_T *buf,
2177 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178{
2179 if (free_p_ff)
2180 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 clear_string_option(&buf->b_p_bh);
2184 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 }
2186#ifdef FEAT_FIND_ID
2187 clear_string_option(&buf->b_p_def);
2188 clear_string_option(&buf->b_p_inc);
2189# ifdef FEAT_EVAL
2190 clear_string_option(&buf->b_p_inex);
2191# endif
2192#endif
2193#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2194 clear_string_option(&buf->b_p_inde);
2195 clear_string_option(&buf->b_p_indk);
2196#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002197#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2198 clear_string_option(&buf->b_p_bexpr);
2199#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002200#if defined(FEAT_CRYPT)
2201 clear_string_option(&buf->b_p_cm);
2202#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002203 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002204#if defined(FEAT_EVAL)
2205 clear_string_option(&buf->b_p_fex);
2206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207#ifdef FEAT_CRYPT
2208 clear_string_option(&buf->b_p_key);
2209#endif
2210 clear_string_option(&buf->b_p_kp);
2211 clear_string_option(&buf->b_p_mps);
2212 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002213 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002215#ifdef FEAT_VARTABS
2216 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002217 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002218 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002219 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002220 buf->b_p_vsts_array = NULL;
2221 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002222 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002223#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224#ifdef FEAT_KEYMAP
2225 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002226 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 ga_clear(&buf->b_kmap_ga);
2228#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 clear_string_option(&buf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230#ifdef FEAT_FOLDING
2231 clear_string_option(&buf->b_p_cms);
2232#endif
2233 clear_string_option(&buf->b_p_nf);
2234#ifdef FEAT_SYN_HL
2235 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002236 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002237#endif
2238#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002239 clear_string_option(&buf->b_s.b_p_spc);
2240 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002241 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002242 buf->b_s.b_cap_prog = NULL;
2243 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244#endif
2245#ifdef FEAT_SEARCHPATH
2246 clear_string_option(&buf->b_p_sua);
2247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249#ifdef FEAT_CINDENT
2250 clear_string_option(&buf->b_p_cink);
2251 clear_string_option(&buf->b_p_cino);
2252#endif
2253#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2254 clear_string_option(&buf->b_p_cinw);
2255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 clear_string_option(&buf->b_p_cpt);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002257#ifdef FEAT_COMPL_FUNC
2258 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002259 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002260#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261#ifdef FEAT_QUICKFIX
2262 clear_string_option(&buf->b_p_gp);
2263 clear_string_option(&buf->b_p_mp);
2264 clear_string_option(&buf->b_p_efm);
2265#endif
2266 clear_string_option(&buf->b_p_ep);
2267 clear_string_option(&buf->b_p_path);
2268 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002269 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002270#ifdef FEAT_EVAL
2271 clear_string_option(&buf->b_p_tfu);
2272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 clear_string_option(&buf->b_p_dict);
2274 clear_string_option(&buf->b_p_tsr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002275#ifdef FEAT_TEXTOBJ
2276 clear_string_option(&buf->b_p_qe);
2277#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002279 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002280#ifdef FEAT_LISP
2281 clear_string_option(&buf->b_p_lw);
2282#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002283 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002284 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285}
2286
2287/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002288 * Get alternate file "n".
2289 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2290 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 * if (options & GETF_SETMARK) call setpcmark()
2292 * if (options & GETF_ALT) we are jumping to an alternate file.
2293 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2294 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002295 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 */
2297 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002298buflist_getfile(
2299 int n,
2300 linenr_T lnum,
2301 int options,
2302 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303{
2304 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 pos_T *fpos;
2307 colnr_T col;
2308
2309 buf = buflist_findnr(n);
2310 if (buf == NULL)
2311 {
2312 if ((options & GETF_ALT) && n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002313 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002315 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 return FAIL;
2317 }
2318
2319 /* if alternate file is the current buffer, nothing to do */
2320 if (buf == curbuf)
2321 return OK;
2322
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002323 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002324 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002325 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002327 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002328 if (curbuf_locked())
2329 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330
2331 /* altfpos may be changed by getfile(), get it now */
2332 if (lnum == 0)
2333 {
2334 fpos = buflist_findfpos(buf);
2335 lnum = fpos->lnum;
2336 col = fpos->col;
2337 }
2338 else
2339 col = 0;
2340
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 if (options & GETF_SWITCH)
2342 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002343 /* If 'switchbuf' contains "useopen": jump to first window containing
2344 * "buf" if one exists */
2345 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002347
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002348 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002349 * page containing "buf" if one exists */
2350 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002351 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002352
2353 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2354 * current buffer isn't empty: open new tab or window */
2355 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002356 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002358 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002359 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002360 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2361 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002363 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 }
2365 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366
2367 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002368 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2369 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 {
2371 --RedrawingDisabled;
2372
2373 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2374 if (!p_sol && col != 0)
2375 {
2376 curwin->w_cursor.col = col;
2377 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 curwin->w_set_curswant = TRUE;
2380 }
2381 return OK;
2382 }
2383 --RedrawingDisabled;
2384 return FAIL;
2385}
2386
2387/*
2388 * go to the last know line number for the current buffer
2389 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002390 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002391buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392{
2393 pos_T *fpos;
2394
2395 fpos = buflist_findfpos(curbuf);
2396
2397 curwin->w_cursor.lnum = fpos->lnum;
2398 check_cursor_lnum();
2399
2400 if (p_sol)
2401 curwin->w_cursor.col = 0;
2402 else
2403 {
2404 curwin->w_cursor.col = fpos->col;
2405 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 curwin->w_set_curswant = TRUE;
2408 }
2409}
2410
Bram Moolenaar81695252004-12-29 20:58:21 +00002411#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2412/*
2413 * Find file in buffer list by name (it has to be for the current window).
2414 * Returns NULL if not found.
2415 */
2416 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002417buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002418{
2419 char_u *ffname;
2420 buf_T *buf = NULL;
2421
2422 /* First make the name into a full path name */
2423 ffname = FullName_save(fname,
2424#ifdef UNIX
2425 TRUE /* force expansion, get rid of symbolic links */
2426#else
2427 FALSE
2428#endif
2429 );
2430 if (ffname != NULL)
2431 {
2432 buf = buflist_findname(ffname);
2433 vim_free(ffname);
2434 }
2435 return buf;
2436}
2437#endif
2438
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439/*
2440 * Find file in buffer list by name (it has to be for the current window).
2441 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002442 * Skips dummy buffers.
2443 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 */
2445 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002446buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447{
2448#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002449 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
2451 if (mch_stat((char *)ffname, &st) < 0)
2452 st.st_dev = (dev_T)-1;
2453 return buflist_findname_stat(ffname, &st);
2454}
2455
2456/*
2457 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2458 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002459 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 */
2461 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002462buflist_findname_stat(
2463 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002464 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465{
2466#endif
2467 buf_T *buf;
2468
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002469 /* Start at the last buffer, expect to find a match sooner. */
2470 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002471 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472#ifdef UNIX
2473 , stp
2474#endif
2475 ))
2476 return buf;
2477 return NULL;
2478}
2479
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480/*
2481 * Find file in buffer list by a regexp pattern.
2482 * Return fnum of the found buffer.
2483 * Return < 0 for error.
2484 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002486buflist_findpat(
2487 char_u *pattern,
2488 char_u *pattern_end, /* pointer to first char after pattern */
2489 int unlisted, /* find unlisted buffers */
2490 int diffmode UNUSED, /* find diff-mode buffers only */
2491 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492{
2493 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 int match = -1;
2495 int find_listed;
2496 char_u *pat;
2497 char_u *patend;
2498 int attempt;
2499 char_u *p;
2500 int toggledollar;
2501
2502 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2503 {
2504 if (*pattern == '%')
2505 match = curbuf->b_fnum;
2506 else
2507 match = curwin->w_alt_fnum;
2508#ifdef FEAT_DIFF
2509 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2510 match = -1;
2511#endif
2512 }
2513
2514 /*
2515 * Try four ways of matching a listed buffer:
2516 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002517 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 * attempt == 2: with '$' at end (only match at end)
2519 * attempt == 3: with '^' at start and '$' at end (only full match)
2520 * Repeat this for finding an unlisted buffer if there was no matching
2521 * listed buffer.
2522 */
2523 else
2524 {
2525 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2526 if (pat == NULL)
2527 return -1;
2528 patend = pat + STRLEN(pat) - 1;
2529 toggledollar = (patend > pat && *patend == '$');
2530
2531 /* First try finding a listed buffer. If not found and "unlisted"
2532 * is TRUE, try finding an unlisted buffer. */
2533 find_listed = TRUE;
2534 for (;;)
2535 {
2536 for (attempt = 0; attempt <= 3; ++attempt)
2537 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002538 regmatch_T regmatch;
2539
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 /* may add '^' and '$' */
2541 if (toggledollar)
2542 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2543 p = pat;
2544 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2545 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002546 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2547 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 {
2549 vim_free(pat);
2550 return -1;
2551 }
2552
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002553 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 if (buf->b_p_bl == find_listed
2555#ifdef FEAT_DIFF
2556 && (!diffmode || diff_mode_buf(buf))
2557#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002558 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002560 if (curtab_only)
2561 {
2562 /* Ignore the match if the buffer is not open in
2563 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002564 win_T *wp;
2565
Bram Moolenaar29323592016-07-24 22:04:11 +02002566 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002567 if (wp->w_buffer == buf)
2568 break;
2569 if (wp == NULL)
2570 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 if (match >= 0) /* already found a match */
2573 {
2574 match = -2;
2575 break;
2576 }
2577 match = buf->b_fnum; /* remember first match */
2578 }
2579
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002580 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 if (match >= 0) /* found one match */
2582 break;
2583 }
2584
2585 /* Only search for unlisted buffers if there was no match with
2586 * a listed buffer. */
2587 if (!unlisted || !find_listed || match != -1)
2588 break;
2589 find_listed = FALSE;
2590 }
2591
2592 vim_free(pat);
2593 }
2594
2595 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002596 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002598 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 return match;
2600}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602/*
2603 * Find all buffer names that match.
2604 * For command line expansion of ":buf" and ":sbuf".
2605 * Return OK if matches found, FAIL otherwise.
2606 */
2607 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002608ExpandBufnames(
2609 char_u *pat,
2610 int *num_file,
2611 char_u ***file,
2612 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613{
2614 int count = 0;
2615 buf_T *buf;
2616 int round;
2617 char_u *p;
2618 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002619 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620
2621 *num_file = 0; /* return values in case of FAIL */
2622 *file = NULL;
2623
Bram Moolenaar05159a02005-02-26 23:04:13 +00002624 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2625 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002627 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002628 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002630 STRCPY(patc, "\\(^\\|[\\/]\\)");
2631 STRCPY(patc + 11, pat + 1);
2632 }
2633 else
2634 patc = pat;
2635
2636 /*
2637 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002638 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002639 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002640 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002641 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002642 regmatch_T regmatch;
2643
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002644 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002645 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002646 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2647 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002648 {
2649 if (patc != pat)
2650 vim_free(patc);
2651 return FAIL;
2652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653
2654 /*
2655 * round == 1: Count the matches.
2656 * round == 2: Build the array to keep the matches.
2657 */
2658 for (round = 1; round <= 2; ++round)
2659 {
2660 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002661 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 {
2663 if (!buf->b_p_bl) /* skip unlisted buffers */
2664 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002665 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (p != NULL)
2667 {
2668 if (round == 1)
2669 ++count;
2670 else
2671 {
2672 if (options & WILD_HOME_REPLACE)
2673 p = home_replace_save(buf, p);
2674 else
2675 p = vim_strsave(p);
2676 (*file)[count++] = p;
2677 }
2678 }
2679 }
2680 if (count == 0) /* no match found, break here */
2681 break;
2682 if (round == 1)
2683 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002684 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 if (*file == NULL)
2686 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002687 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002688 if (patc != pat)
2689 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 return FAIL;
2691 }
2692 }
2693 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002694 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 if (count) /* match(es) found, break here */
2696 break;
2697 }
2698
Bram Moolenaar05159a02005-02-26 23:04:13 +00002699 if (patc != pat)
2700 vim_free(patc);
2701
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 *num_file = count;
2703 return (count == 0 ? FAIL : OK);
2704}
2705
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706/*
2707 * Check for a match on the file name for buffer "buf" with regprog "prog".
2708 */
2709 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002710buflist_match(
2711 regmatch_T *rmp,
2712 buf_T *buf,
2713 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714{
2715 char_u *match;
2716
2717 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002718 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002720 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721
2722 return match;
2723}
2724
2725/*
2726 * Try matching the regexp in "prog" with file name "name".
2727 * Return "name" when there is a match, NULL when not.
2728 */
2729 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002730fname_match(
2731 regmatch_T *rmp,
2732 char_u *name,
2733 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 char_u *match = NULL;
2736 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737
2738 if (name != NULL)
2739 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002740 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002741 rmp->rm_ic = p_fic || ignore_case;
2742 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 match = name;
2744 else
2745 {
2746 /* Replace $(HOME) with '~' and try matching again. */
2747 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002748 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 match = name;
2750 vim_free(p);
2751 }
2752 }
2753
2754 return match;
2755}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756
2757/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002758 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 */
2760 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002761buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002763 char_u key[VIM_SIZEOF_INT * 2 + 1];
2764 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765
2766 if (nr == 0)
2767 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002768 sprintf((char *)key, "%x", nr);
2769 hi = hash_find(&buf_hashtab, key);
2770
2771 if (!HASHITEM_EMPTY(hi))
2772 return (buf_T *)(hi->hi_key
2773 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 return NULL;
2775}
2776
2777/*
2778 * Get name of file 'n' in the buffer list.
2779 * When the file has no name an empty string is returned.
2780 * home_replace() is used to shorten the file name (used for marks).
2781 * Returns a pointer to allocated memory, of NULL when failed.
2782 */
2783 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002784buflist_nr2name(
2785 int n,
2786 int fullname,
2787 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788{
2789 buf_T *buf;
2790
2791 buf = buflist_findnr(n);
2792 if (buf == NULL)
2793 return NULL;
2794 return home_replace_save(helptail ? buf : NULL,
2795 fullname ? buf->b_ffname : buf->b_fname);
2796}
2797
2798/*
2799 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2800 * When "copy_options" is TRUE save the local window option values.
2801 * When "lnum" is 0 only do the options.
2802 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002803 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002804buflist_setfpos(
2805 buf_T *buf,
2806 win_T *win,
2807 linenr_T lnum,
2808 colnr_T col,
2809 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810{
2811 wininfo_T *wip;
2812
2813 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2814 if (wip->wi_win == win)
2815 break;
2816 if (wip == NULL)
2817 {
2818 /* allocate a new entry */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002819 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 if (wip == NULL)
2821 return;
2822 wip->wi_win = win;
2823 if (lnum == 0) /* set lnum even when it's 0 */
2824 lnum = 1;
2825 }
2826 else
2827 {
2828 /* remove the entry from the list */
2829 if (wip->wi_prev)
2830 wip->wi_prev->wi_next = wip->wi_next;
2831 else
2832 buf->b_wininfo = wip->wi_next;
2833 if (wip->wi_next)
2834 wip->wi_next->wi_prev = wip->wi_prev;
2835 if (copy_options && wip->wi_optset)
2836 {
2837 clear_winopt(&wip->wi_opt);
2838#ifdef FEAT_FOLDING
2839 deleteFoldRecurse(&wip->wi_folds);
2840#endif
2841 }
2842 }
2843 if (lnum != 0)
2844 {
2845 wip->wi_fpos.lnum = lnum;
2846 wip->wi_fpos.col = col;
2847 }
2848 if (copy_options)
2849 {
2850 /* Save the window-specific option values. */
2851 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2852#ifdef FEAT_FOLDING
2853 wip->wi_fold_manual = win->w_fold_manual;
2854 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2855#endif
2856 wip->wi_optset = TRUE;
2857 }
2858
2859 /* insert the entry in front of the list */
2860 wip->wi_next = buf->b_wininfo;
2861 buf->b_wininfo = wip;
2862 wip->wi_prev = NULL;
2863 if (wip->wi_next)
2864 wip->wi_next->wi_prev = wip;
2865
2866 return;
2867}
2868
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002869#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002870/*
2871 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2872 * page. That's because a diff is local to a tab page.
2873 */
2874 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002875wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002876{
2877 win_T *wp;
2878
2879 if (wip->wi_opt.wo_diff)
2880 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002881 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002882 /* return FALSE when it's a window in the current tab page, thus
2883 * the buffer was in diff mode here */
2884 if (wip->wi_win == wp)
2885 return FALSE;
2886 return TRUE;
2887 }
2888 return FALSE;
2889}
2890#endif
2891
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892/*
2893 * Find info for the current window in buffer "buf".
2894 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002895 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2896 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 * Returns NULL when there isn't any info.
2898 */
2899 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002900find_wininfo(
2901 buf_T *buf,
2902 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903{
2904 wininfo_T *wip;
2905
2906 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002907 if (wip->wi_win == curwin
2908#ifdef FEAT_DIFF
2909 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2910#endif
2911 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002913
2914 /* If no wininfo for curwin, use the first in the list (that doesn't have
2915 * 'diff' set and is in another tab page). */
2916 if (wip == NULL)
2917 {
2918#ifdef FEAT_DIFF
2919 if (skip_diff_buffer)
2920 {
2921 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2922 if (!wininfo_other_tab_diff(wip))
2923 break;
2924 }
2925 else
2926#endif
2927 wip = buf->b_wininfo;
2928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 return wip;
2930}
2931
2932/*
2933 * Reset the local window options to the values last used in this window.
2934 * If the buffer wasn't used in this window before, use the values from
2935 * the most recently used window. If the values were never set, use the
2936 * global values for the window.
2937 */
2938 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002939get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940{
2941 wininfo_T *wip;
2942
2943 clear_winopt(&curwin->w_onebuf_opt);
2944#ifdef FEAT_FOLDING
2945 clearFolding(curwin);
2946#endif
2947
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002948 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002949 if (wip != NULL && wip->wi_win != NULL
2950 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002952 /* The buffer is currently displayed in the window: use the actual
2953 * option values instead of the saved (possibly outdated) values. */
2954 win_T *wp = wip->wi_win;
2955
2956 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2957#ifdef FEAT_FOLDING
2958 curwin->w_fold_manual = wp->w_fold_manual;
2959 curwin->w_foldinvalid = TRUE;
2960 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2961#endif
2962 }
2963 else if (wip != NULL && wip->wi_optset)
2964 {
2965 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2967#ifdef FEAT_FOLDING
2968 curwin->w_fold_manual = wip->wi_fold_manual;
2969 curwin->w_foldinvalid = TRUE;
2970 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2971#endif
2972 }
2973 else
2974 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2975
2976#ifdef FEAT_FOLDING
2977 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2978 if (p_fdls >= 0)
2979 curwin->w_p_fdl = p_fdls;
2980#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02002981 after_copy_winopt(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982}
2983
2984/*
2985 * Find the position (lnum and col) for the buffer 'buf' for the current
2986 * window.
2987 * Returns a pointer to no_position if no position is found.
2988 */
2989 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002990buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002993 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002995 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (wip != NULL)
2997 return &(wip->wi_fpos);
2998 else
2999 return &no_position;
3000}
3001
3002/*
3003 * Find the lnum for the buffer 'buf' for the current window.
3004 */
3005 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003006buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
3008 return buflist_findfpos(buf)->lnum;
3009}
3010
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003012 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003015buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016{
3017 buf_T *buf;
3018 int len;
3019 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003020 int ro_char;
3021 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02003022#ifdef FEAT_TERMINAL
3023 int job_running;
3024 int job_none_open;
3025#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026
3027 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
3028 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003029#ifdef FEAT_TERMINAL
3030 job_running = term_job_running(buf->b_term);
3031 job_none_open = job_running && term_none_open(buf->b_term);
3032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02003034 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3035 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3036 || (vim_strchr(eap->arg, '+')
3037 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3038 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003039 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003040 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003041 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3042#ifdef FEAT_TERMINAL
3043 || (vim_strchr(eap->arg, 'R')
3044 && (!job_running || (job_running && job_none_open)))
3045 || (vim_strchr(eap->arg, '?')
3046 && (!job_running || (job_running && !job_none_open)))
3047 || (vim_strchr(eap->arg, 'F')
3048 && (job_running || buf->b_term == NULL))
3049#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003050 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3051 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3052 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3053 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3054 || (vim_strchr(eap->arg, '#')
3055 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003058 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 else
3060 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003061 if (message_filtered(NameBuff))
3062 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003064 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3065 : (bufIsChanged(buf) ? '+' : ' ');
3066#ifdef FEAT_TERMINAL
3067 if (term_job_running(buf->b_term))
3068 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003069 if (term_none_open(buf->b_term))
3070 ro_char = '?';
3071 else
3072 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003073 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3074 * closing, but it's not actually changed. */
3075 }
3076 else if (buf->b_term != NULL)
3077 ro_char = 'F';
3078 else
3079#endif
3080 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3081
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003082 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003083 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 buf->b_fnum,
3085 buf->b_p_bl ? ' ' : 'u',
3086 buf == curbuf ? '%' :
3087 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3088 buf->b_ml.ml_mfp == NULL ? ' ' :
3089 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003090 ro_char,
3091 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003092 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003093 if (len > IOSIZE - 20)
3094 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095
3096 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 i = 40 - vim_strsize(IObuff);
3098 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003100 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003101 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3102 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003103 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 msg_outtrans(IObuff);
3105 out_flush(); /* output one line at a time */
3106 ui_breakcheck();
3107 }
3108}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109
3110/*
3111 * Get file name and line number for file 'fnum'.
3112 * Used by DoOneCmd() for translating '%' and '#'.
3113 * Used by insert_reg() and cmdline_paste() for '#' register.
3114 * Return FAIL if not found, OK for success.
3115 */
3116 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003117buflist_name_nr(
3118 int fnum,
3119 char_u **fname,
3120 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121{
3122 buf_T *buf;
3123
3124 buf = buflist_findnr(fnum);
3125 if (buf == NULL || buf->b_fname == NULL)
3126 return FAIL;
3127
3128 *fname = buf->b_fname;
3129 *lnum = buflist_findlnum(buf);
3130
3131 return OK;
3132}
3133
3134/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003135 * Set the file name for "buf"' to "ffname_arg", short file name to
3136 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 * The file name with the full path is also remembered, for when :cd is used.
3138 * Returns FAIL for failure (file name already in use by other buffer)
3139 * OK otherwise.
3140 */
3141 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003142setfname(
3143 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003144 char_u *ffname_arg,
3145 char_u *sfname_arg,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003146 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003148 char_u *ffname = ffname_arg;
3149 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003150 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003152 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153#endif
3154
3155 if (ffname == NULL || *ffname == NUL)
3156 {
3157 /* Removing the name. */
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003158 if (buf->b_sfname != buf->b_ffname)
3159 VIM_CLEAR(buf->b_sfname);
3160 else
3161 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003162 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163#ifdef UNIX
3164 st.st_dev = (dev_T)-1;
3165#endif
3166 }
3167 else
3168 {
3169 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3170 if (ffname == NULL) /* out of memory */
3171 return FAIL;
3172
3173 /*
3174 * if the file name is already used in another buffer:
3175 * - if the buffer is loaded, fail
3176 * - if the buffer is not loaded, delete it from the list
3177 */
3178#ifdef UNIX
3179 if (mch_stat((char *)ffname, &st) < 0)
3180 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003181#endif
3182 if (!(buf->b_flags & BF_DUMMY))
3183#ifdef UNIX
3184 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003186 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187#endif
3188 if (obuf != NULL && obuf != buf)
3189 {
3190 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3191 {
3192 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003193 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 vim_free(ffname);
3195 return FAIL;
3196 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003197 /* delete from the list */
3198 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 }
3200 sfname = vim_strsave(sfname);
3201 if (ffname == NULL || sfname == NULL)
3202 {
3203 vim_free(sfname);
3204 vim_free(ffname);
3205 return FAIL;
3206 }
3207#ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01003208 fname_case(sfname, 0); /* set correct case for short file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003210 if (buf->b_sfname != buf->b_ffname)
3211 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 buf->b_ffname = ffname;
3214 buf->b_sfname = sfname;
3215 }
3216 buf->b_fname = buf->b_sfname;
3217#ifdef UNIX
3218 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003219 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 else
3221 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003222 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 buf->b_dev = st.st_dev;
3224 buf->b_ino = st.st_ino;
3225 }
3226#endif
3227
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229
3230 buf_name_changed(buf);
3231 return OK;
3232}
3233
3234/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003235 * Crude way of changing the name of a buffer. Use with care!
3236 * The name should be relative to the current directory.
3237 */
3238 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003239buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003240{
3241 buf_T *buf;
3242
3243 buf = buflist_findnr(fnum);
3244 if (buf != NULL)
3245 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003246 if (buf->b_sfname != buf->b_ffname)
3247 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003248 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003249 buf->b_ffname = vim_strsave(name);
3250 buf->b_sfname = NULL;
3251 /* Allocate ffname and expand into full path. Also resolves .lnk
3252 * files on Win32. */
3253 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003254 buf->b_fname = buf->b_sfname;
3255 }
3256}
3257
3258/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 * Take care of what needs to be done when the name of buffer "buf" has
3260 * changed.
3261 */
3262 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003263buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264{
3265 /*
3266 * If the file name changed, also change the name of the swapfile
3267 */
3268 if (buf->b_ml.ml_mfp != NULL)
3269 ml_setname(buf);
3270
3271 if (curwin->w_buffer == buf)
3272 check_arg_idx(curwin); /* check file name for arg list */
3273#ifdef FEAT_TITLE
3274 maketitle(); /* set window title */
3275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 fmarks_check_names(buf); /* check named file marks */
3278 ml_timestamp(buf); /* reset timestamp */
3279}
3280
3281/*
3282 * set alternate file name for current window
3283 *
3284 * Used by do_one_cmd(), do_write() and do_ecmd().
3285 * Return the buffer.
3286 */
3287 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003288setaltfname(
3289 char_u *ffname,
3290 char_u *sfname,
3291 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292{
3293 buf_T *buf;
3294
3295 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3296 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003297 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 curwin->w_alt_fnum = buf->b_fnum;
3299 return buf;
3300}
3301
3302/*
3303 * Get alternate file name for current window.
3304 * Return NULL if there isn't any, and give error message if requested.
3305 */
3306 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003307getaltfname(
3308 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309{
3310 char_u *fname;
3311 linenr_T dummy;
3312
3313 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3314 {
3315 if (errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003316 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 return NULL;
3318 }
3319 return fname;
3320}
3321
3322/*
3323 * Add a file name to the buflist and return its number.
3324 * Uses same flags as buflist_new(), except BLN_DUMMY.
3325 *
3326 * used by qf_init(), main() and doarglist()
3327 */
3328 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003329buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330{
3331 buf_T *buf;
3332
3333 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3334 if (buf != NULL)
3335 return buf->b_fnum;
3336 return 0;
3337}
3338
3339#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3340/*
3341 * Adjust slashes in file names. Called after 'shellslash' was set.
3342 */
3343 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003344buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345{
3346 buf_T *bp;
3347
Bram Moolenaar29323592016-07-24 22:04:11 +02003348 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 {
3350 if (bp->b_ffname != NULL)
3351 slash_adjust(bp->b_ffname);
3352 if (bp->b_sfname != NULL)
3353 slash_adjust(bp->b_sfname);
3354 }
3355}
3356#endif
3357
3358/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003359 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 * Also save the local window option values.
3361 */
3362 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003363buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003365 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366}
3367
3368/*
3369 * Return TRUE if 'ffname' is not the same file as current file.
3370 * Fname must have a full path (expanded by mch_FullName()).
3371 */
3372 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003373otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374{
3375 return otherfile_buf(curbuf, ffname
3376#ifdef UNIX
3377 , NULL
3378#endif
3379 );
3380}
3381
3382 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003383otherfile_buf(
3384 buf_T *buf,
3385 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003387 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003389 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390{
3391 /* no name is different */
3392 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3393 return TRUE;
3394 if (fnamecmp(ffname, buf->b_ffname) == 0)
3395 return FALSE;
3396#ifdef UNIX
3397 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003398 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399
Bram Moolenaar8767f522016-07-01 17:17:39 +02003400 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 if (stp == NULL)
3402 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003403 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 st.st_dev = (dev_T)-1;
3405 stp = &st;
3406 }
3407 /* Use dev/ino to check if the files are the same, even when the names
3408 * are different (possible with links). Still need to compare the
3409 * name above, for when the file doesn't exist yet.
3410 * Problem: The dev/ino changes when a file is deleted (and created
3411 * again) and remains the same when renamed/moved. We don't want to
3412 * mch_stat() each buffer each time, that would be too slow. Get the
3413 * dev/ino again when they appear to match, but not when they appear
3414 * to be different: Could skip a buffer when it's actually the same
3415 * file. */
3416 if (buf_same_ino(buf, stp))
3417 {
3418 buf_setino(buf);
3419 if (buf_same_ino(buf, stp))
3420 return FALSE;
3421 }
3422 }
3423#endif
3424 return TRUE;
3425}
3426
3427#if defined(UNIX) || defined(PROTO)
3428/*
3429 * Set inode and device number for a buffer.
3430 * Must always be called when b_fname is changed!.
3431 */
3432 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003433buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003435 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436
3437 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3438 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003439 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 buf->b_dev = st.st_dev;
3441 buf->b_ino = st.st_ino;
3442 }
3443 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003444 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445}
3446
3447/*
3448 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3449 */
3450 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003451buf_same_ino(
3452 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003453 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003455 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 && stp->st_dev == buf->b_dev
3457 && stp->st_ino == buf->b_ino);
3458}
3459#endif
3460
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003461/*
3462 * Print info about the current buffer.
3463 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003465fileinfo(
3466 int fullname, /* when non-zero print full path */
3467 int shorthelp,
3468 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469{
3470 char_u *name;
3471 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003472 char *p;
3473 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003474 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003476 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 if (buffer == NULL)
3478 return;
3479
3480 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3481 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003482 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 p = buffer + STRLEN(buffer);
3484 }
3485 else
3486 p = buffer;
3487
3488 *p++ = '"';
3489 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003490 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 else
3492 {
3493 if (!fullname && curbuf->b_fname != NULL)
3494 name = curbuf->b_fname;
3495 else
3496 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003497 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 (int)(IOSIZE - (p - buffer)), TRUE);
3499 }
3500
Bram Moolenaar32526b32019-01-19 17:43:09 +01003501 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 curbufIsChanged() ? (shortmess(SHM_MOD)
3503 ? " [+]" : _(" [Modified]")) : " ",
3504 (curbuf->b_flags & BF_NOTEDITED)
3505#ifdef FEAT_QUICKFIX
3506 && !bt_dontwrite(curbuf)
3507#endif
3508 ? _("[Not edited]") : "",
3509 (curbuf->b_flags & BF_NEW)
3510#ifdef FEAT_QUICKFIX
3511 && !bt_dontwrite(curbuf)
3512#endif
3513 ? _("[New file]") : "",
3514 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003515 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 : _("[readonly]")) : "",
3517 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3518 || curbuf->b_p_ro) ?
3519 " " : "");
3520 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3521 * causes an overflow, thus for large numbers divide instead. */
3522 if (curwin->w_cursor.lnum > 1000000L)
3523 n = (int)(((long)curwin->w_cursor.lnum) /
3524 ((long)curbuf->b_ml.ml_line_count / 100L));
3525 else
3526 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3527 (long)curbuf->b_ml.ml_line_count);
3528 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003529 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530#ifdef FEAT_CMDL_INFO
3531 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 /* Current line and column are already on the screen -- webb */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003533 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003534 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3535 curbuf->b_ml.ml_line_count),
3536 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537#endif
3538 else
3539 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003540 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 _("line %ld of %ld --%d%%-- col "),
3542 (long)curwin->w_cursor.lnum,
3543 (long)curbuf->b_ml.ml_line_count,
3544 n);
3545 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003546 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003547 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3549 }
3550
Bram Moolenaar32526b32019-01-19 17:43:09 +01003551 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3552 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553
3554 if (dont_truncate)
3555 {
3556 /* Temporarily set msg_scroll to avoid the message being truncated.
3557 * First call msg_start() to get the message in the right place. */
3558 msg_start();
3559 n = msg_scroll;
3560 msg_scroll = TRUE;
3561 msg(buffer);
3562 msg_scroll = n;
3563 }
3564 else
3565 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003566 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 /* Need to repeat the message after redrawing when:
3569 * - When restart_edit is set (otherwise there will be a delay
3570 * before redrawing).
3571 * - When the screen was scrolled but there is no wait-return
3572 * prompt. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003573 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 }
3575
3576 vim_free(buffer);
3577}
3578
3579 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003580col_print(
3581 char_u *buf,
3582 size_t buflen,
3583 int col,
3584 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585{
3586 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003587 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003589 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590}
3591
3592#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593static char_u *lasttitle = NULL;
3594static char_u *lasticon = NULL;
3595
Bram Moolenaar84a93082018-06-16 22:58:15 +02003596/*
3597 * Put the file name in the title bar and icon of the window.
3598 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003600maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601{
3602 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003603 char_u *title_str = NULL;
3604 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 int maxlen = 0;
3606 int len;
3607 int mustset;
3608 char_u buf[IOSIZE];
3609 int off;
3610
3611 if (!redrawing())
3612 {
3613 /* Postpone updating the title when 'lazyredraw' is set. */
3614 need_maketitle = TRUE;
3615 return;
3616 }
3617
3618 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003619 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003620 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621
3622 if (p_title)
3623 {
3624 if (p_titlelen > 0)
3625 {
3626 maxlen = p_titlelen * Columns / 100;
3627 if (maxlen < 10)
3628 maxlen = 10;
3629 }
3630
Bram Moolenaar84a93082018-06-16 22:58:15 +02003631 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 if (*p_titlestring != NUL)
3633 {
3634#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003635 if (stl_syntax & STL_IN_TITLE)
3636 {
3637 int use_sandbox = FALSE;
3638 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003639
3640# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003641 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003642# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003643 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003644 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003645 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003646 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003647 if (called_emsg)
3648 set_string_option_direct((char_u *)"titlestring", -1,
3649 (char_u *)"", OPT_FREE, SID_ERROR);
3650 called_emsg |= save_called_emsg;
3651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 else
3653#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003654 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 }
3656 else
3657 {
3658 /* format: "fname + (path) (1 of 2) - VIM" */
3659
Bram Moolenaar2c666692012-09-05 13:30:40 +02003660#define SPACE_FOR_FNAME (IOSIZE - 100)
3661#define SPACE_FOR_DIR (IOSIZE - 20)
3662#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003664 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003665#ifdef FEAT_TERMINAL
3666 else if (curbuf->b_term != NULL)
3667 {
3668 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3669 SPACE_FOR_FNAME);
3670 }
3671#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 else
3673 {
3674 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003675 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 }
3678
Bram Moolenaar21554412017-07-24 21:44:43 +02003679#ifdef FEAT_TERMINAL
3680 if (curbuf->b_term == NULL)
3681#endif
3682 switch (bufIsChanged(curbuf)
3683 + (curbuf->b_p_ro * 2)
3684 + (!curbuf->b_p_ma * 4))
3685 {
3686 case 1: STRCAT(buf, " +"); break;
3687 case 2: STRCAT(buf, " ="); break;
3688 case 3: STRCAT(buf, " =+"); break;
3689 case 4:
3690 case 6: STRCAT(buf, " -"); break;
3691 case 5:
3692 case 7: STRCAT(buf, " -+"); break;
3693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694
Bram Moolenaar21554412017-07-24 21:44:43 +02003695 if (curbuf->b_fname != NULL
3696#ifdef FEAT_TERMINAL
3697 && curbuf->b_term == NULL
3698#endif
3699 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 {
3701 /* Get path of file, replace home dir with ~ */
3702 off = (int)STRLEN(buf);
3703 buf[off++] = ' ';
3704 buf[off++] = '(';
3705 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003706 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707#ifdef BACKSLASH_IN_FILENAME
3708 /* avoid "c:/name" to be reduced to "c" */
3709 if (isalpha(buf[off]) && buf[off + 1] == ':')
3710 off += 2;
3711#endif
3712 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003713 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003715 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003716 /* must be a help buffer */
3717 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003718 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003722
Bram Moolenaar2c666692012-09-05 13:30:40 +02003723 /* Translate unprintable chars and concatenate. Keep some
3724 * room for the server name. When there is no room (very long
3725 * file name) use (...). */
3726 if (off < SPACE_FOR_DIR)
3727 {
3728 p = transstr(buf + off);
3729 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3730 vim_free(p);
3731 }
3732 else
3733 {
3734 vim_strncpy(buf + off, (char_u *)"...",
3735 (size_t)(SPACE_FOR_ARGNR - off));
3736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 STRCAT(buf, ")");
3738 }
3739
Bram Moolenaar2c666692012-09-05 13:30:40 +02003740 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741
3742#if defined(FEAT_CLIENTSERVER)
3743 if (serverName != NULL)
3744 {
3745 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003746 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 }
3748 else
3749#endif
3750 STRCAT(buf, " - VIM");
3751
3752 if (maxlen > 0)
3753 {
3754 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003755 if (vim_strsize(buf) > maxlen)
3756 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 }
3758 }
3759 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003760 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761
3762 if (p_icon)
3763 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003764 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 if (*p_iconstring != NUL)
3766 {
3767#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003768 if (stl_syntax & STL_IN_ICON)
3769 {
3770 int use_sandbox = FALSE;
3771 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003772
3773# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003774 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003775# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003776 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003777 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003778 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003779 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003780 if (called_emsg)
3781 set_string_option_direct((char_u *)"iconstring", -1,
3782 (char_u *)"", OPT_FREE, SID_ERROR);
3783 called_emsg |= save_called_emsg;
3784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 else
3786#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003787 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 }
3789 else
3790 {
3791 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003792 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003794 p = gettail(curbuf->b_ffname);
3795 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003797 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 if (len > 100)
3799 {
3800 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003802 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003803 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003805 STRCPY(icon_str, p);
3806 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 }
3808 }
3809
Bram Moolenaar84a93082018-06-16 22:58:15 +02003810 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811
3812 if (mustset)
3813 resettitle();
3814}
3815
3816/*
3817 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3818 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003819 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 */
3821 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003822value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823{
3824 if ((str == NULL) != (*last == NULL)
3825 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3826 {
3827 vim_free(*last);
3828 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003829 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003831 mch_restore_title(
3832 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003835 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003837 return TRUE;
3838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 }
3840 return FALSE;
3841}
3842
3843/*
3844 * Put current window title back (used after calling a shell)
3845 */
3846 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003847resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848{
3849 mch_settitle(lasttitle, lasticon);
3850}
Bram Moolenaarea408852005-06-25 22:49:46 +00003851
3852# if defined(EXITFREE) || defined(PROTO)
3853 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003854free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003855{
3856 vim_free(lasttitle);
3857 vim_free(lasticon);
3858}
3859# endif
3860
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861#endif /* FEAT_TITLE */
3862
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003863#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003865 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 * Return length of string in screen cells.
3867 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003868 * Normally works for window "wp", except when working for 'tabline' then it
3869 * is "curwin".
3870 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 * Items are drawn interspersed with the text that surrounds it
3872 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3873 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3874 *
3875 * If maxwidth is not zero, the string will be filled at any middle marker
3876 * or truncated if too long, fillchar is used for all whitespace.
3877 */
3878 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003879build_stl_str_hl(
3880 win_T *wp,
3881 char_u *out, /* buffer to write into != NameBuff */
3882 size_t outlen, /* length of out[] */
3883 char_u *fmt,
3884 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3885 int fillchar,
3886 int maxwidth,
3887 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3888 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889{
Bram Moolenaar10772302019-01-20 18:25:54 +01003890 linenr_T lnum;
3891 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 char_u *p;
3893 char_u *s;
3894 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003895 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003897 win_T *save_curwin;
3898 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899#endif
3900 int empty_line;
3901 colnr_T virtcol;
3902 long l;
3903 long n;
3904 int prevchar_isflag;
3905 int prevchar_isitem;
3906 int itemisflag;
3907 int fillable;
3908 char_u *str;
3909 long num;
3910 int width;
3911 int itemcnt;
3912 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003913 int group_end_userhl;
3914 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 int groupitem[STL_MAX_ITEM];
3916 int groupdepth;
3917 struct stl_item
3918 {
3919 char_u *start;
3920 int minwid;
3921 int maxwid;
3922 enum
3923 {
3924 Normal,
3925 Empty,
3926 Group,
3927 Middle,
3928 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003929 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 Trunc
3931 } type;
3932 } item[STL_MAX_ITEM];
3933 int minwid;
3934 int maxwid;
3935 int zeropad;
3936 char_u base;
3937 char_u opt;
3938#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003939 char_u buf_tmp[TMPLEN];
3940 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003941 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003942 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003943 int save_must_redraw = must_redraw;
3944 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003945
3946#ifdef FEAT_EVAL
3947 /*
3948 * When the format starts with "%!" then evaluate it as an expression and
3949 * use the result as the actual format string.
3950 */
3951 if (fmt[0] == '%' && fmt[1] == '!')
3952 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003953 typval_T tv;
3954
3955 tv.v_type = VAR_NUMBER;
3956 tv.vval.v_number = wp->w_id;
3957 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
3958
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003959 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3960 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003961 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003962
3963 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003964 }
3965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966
3967 if (fillchar == 0)
3968 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003969 /* Can't handle a multi-byte fill character yet. */
3970 else if (mb_char2len(fillchar) > 1)
3971 fillchar = '-';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003972
Bram Moolenaar10772302019-01-20 18:25:54 +01003973 // The cursor in windows other than the current one isn't always
3974 // up-to-date, esp. because of autocommands and timers.
3975 lnum = wp->w_cursor.lnum;
3976 if (lnum > wp->w_buffer->b_ml.ml_line_count)
3977 {
3978 lnum = wp->w_buffer->b_ml.ml_line_count;
3979 wp->w_cursor.lnum = lnum;
3980 }
3981
3982 // Get line & check if empty (cursorpos will show "0-1"). Note that
3983 // p will become invalid when getting another buffer line.
3984 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02003985 empty_line = (*p == NUL);
3986
Bram Moolenaar10772302019-01-20 18:25:54 +01003987 // Get the byte value now, in case we need it below. This is more efficient
3988 // than making a copy of the line.
3989 len = STRLEN(p);
3990 if (wp->w_cursor.col > (colnr_T)len)
3991 {
3992 // Line may have changed since checking the cursor column, or the lnum
3993 // was adjusted above.
3994 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01003995 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003996 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01003997 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02003998 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02003999 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000
4001 groupdepth = 0;
4002 p = out;
4003 curitem = 0;
4004 prevchar_isflag = TRUE;
4005 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004006 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01004008 if (curitem == STL_MAX_ITEM)
4009 {
4010 /* There are too many items. Add the error code to the statusline
4011 * to give the user a hint about what went wrong. */
4012 if (p + 6 < out + outlen)
4013 {
4014 mch_memmove(p, " E541", (size_t)5);
4015 p += 5;
4016 }
4017 break;
4018 }
4019
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 if (*s != NUL && *s != '%')
4021 prevchar_isflag = prevchar_isitem = FALSE;
4022
4023 /*
4024 * Handle up to the next '%' or the end.
4025 */
4026 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4027 *p++ = *s++;
4028 if (*s == NUL || p + 1 >= out + outlen)
4029 break;
4030
4031 /*
4032 * Handle one '%' item.
4033 */
4034 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004035 if (*s == NUL) /* ignore trailing % */
4036 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 if (*s == '%')
4038 {
4039 if (p + 1 >= out + outlen)
4040 break;
4041 *p++ = *s++;
4042 prevchar_isflag = prevchar_isitem = FALSE;
4043 continue;
4044 }
4045 if (*s == STL_MIDDLEMARK)
4046 {
4047 s++;
4048 if (groupdepth > 0)
4049 continue;
4050 item[curitem].type = Middle;
4051 item[curitem++].start = p;
4052 continue;
4053 }
4054 if (*s == STL_TRUNCMARK)
4055 {
4056 s++;
4057 item[curitem].type = Trunc;
4058 item[curitem++].start = p;
4059 continue;
4060 }
4061 if (*s == ')')
4062 {
4063 s++;
4064 if (groupdepth < 1)
4065 continue;
4066 groupdepth--;
4067
4068 t = item[groupitem[groupdepth]].start;
4069 *p = NUL;
4070 l = vim_strsize(t);
4071 if (curitem > groupitem[groupdepth] + 1
4072 && item[groupitem[groupdepth]].minwid == 0)
4073 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004074 /* remove group if all items are empty and highlight group
4075 * doesn't change */
4076 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004077 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4078 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004079 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004080 {
4081 group_start_userhl = group_end_userhl = item[n].minwid;
4082 break;
4083 }
4084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004086 {
4087 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004089 if (item[n].type == Highlight)
4090 group_end_userhl = item[n].minwid;
4091 }
4092 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 {
4094 p = t;
4095 l = 0;
4096 }
4097 }
4098 if (l > item[groupitem[groupdepth]].maxwid)
4099 {
4100 /* truncate, remove n bytes of text at the start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 if (has_mbyte)
4102 {
4103 /* Find the first character that should be included. */
4104 n = 0;
4105 while (l >= item[groupitem[groupdepth]].maxwid)
4106 {
4107 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004108 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 }
4110 }
4111 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004112 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113
4114 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004115 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004117
4118 // Fill up space left over by half a double-wide char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 while (++l < item[groupitem[groupdepth]].minwid)
4120 *p++ = fillchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121
4122 /* correct the start of the items for the truncation */
4123 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4124 {
4125 item[l].start -= n;
4126 if (item[l].start < t)
4127 item[l].start = t;
4128 }
4129 }
4130 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4131 {
4132 /* fill */
4133 n = item[groupitem[groupdepth]].minwid;
4134 if (n < 0)
4135 {
4136 /* fill by appending characters */
4137 n = 0 - n;
4138 while (l++ < n && p + 1 < out + outlen)
4139 *p++ = fillchar;
4140 }
4141 else
4142 {
4143 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004144 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 l = n - l;
4146 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004147 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 p += l;
4149 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4150 item[n].start += l;
4151 for ( ; l > 0; l--)
4152 *t++ = fillchar;
4153 }
4154 }
4155 continue;
4156 }
4157 minwid = 0;
4158 maxwid = 9999;
4159 zeropad = FALSE;
4160 l = 1;
4161 if (*s == '0')
4162 {
4163 s++;
4164 zeropad = TRUE;
4165 }
4166 if (*s == '-')
4167 {
4168 s++;
4169 l = -1;
4170 }
4171 if (VIM_ISDIGIT(*s))
4172 {
4173 minwid = (int)getdigits(&s);
4174 if (minwid < 0) /* overflow */
4175 minwid = 0;
4176 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004177 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 {
4179 item[curitem].type = Highlight;
4180 item[curitem].start = p;
4181 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4182 s++;
4183 curitem++;
4184 continue;
4185 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004186 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4187 {
4188 if (*s == STL_TABCLOSENR)
4189 {
4190 if (minwid == 0)
4191 {
4192 /* %X ends the close label, go back to the previously
4193 * define tab label nr. */
4194 for (n = curitem - 1; n >= 0; --n)
4195 if (item[n].type == TabPage && item[n].minwid >= 0)
4196 {
4197 minwid = item[n].minwid;
4198 break;
4199 }
4200 }
4201 else
4202 /* close nrs are stored as negative values */
4203 minwid = - minwid;
4204 }
4205 item[curitem].type = TabPage;
4206 item[curitem].start = p;
4207 item[curitem].minwid = minwid;
4208 s++;
4209 curitem++;
4210 continue;
4211 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 if (*s == '.')
4213 {
4214 s++;
4215 if (VIM_ISDIGIT(*s))
4216 {
4217 maxwid = (int)getdigits(&s);
4218 if (maxwid <= 0) /* overflow */
4219 maxwid = 50;
4220 }
4221 }
4222 minwid = (minwid > 50 ? 50 : minwid) * l;
4223 if (*s == '(')
4224 {
4225 groupitem[groupdepth++] = curitem;
4226 item[curitem].type = Group;
4227 item[curitem].start = p;
4228 item[curitem].minwid = minwid;
4229 item[curitem].maxwid = maxwid;
4230 s++;
4231 curitem++;
4232 continue;
4233 }
4234 if (vim_strchr(STL_ALL, *s) == NULL)
4235 {
4236 s++;
4237 continue;
4238 }
4239 opt = *s++;
4240
4241 /* OK - now for the real work */
4242 base = 'D';
4243 itemisflag = FALSE;
4244 fillable = TRUE;
4245 num = -1;
4246 str = NULL;
4247 switch (opt)
4248 {
4249 case STL_FILEPATH:
4250 case STL_FULLPATH:
4251 case STL_FILENAME:
4252 fillable = FALSE; /* don't change ' ' to fillchar */
4253 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004254 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 else
4256 {
4257 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004258 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4260 }
4261 trans_characters(NameBuff, MAXPATHL);
4262 if (opt != STL_FILENAME)
4263 str = NameBuff;
4264 else
4265 str = gettail(NameBuff);
4266 break;
4267
4268 case STL_VIM_EXPR: /* '{' */
4269 itemisflag = TRUE;
4270 t = p;
4271 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4272 *p++ = *s++;
4273 if (*s != '}') /* missing '}' or out of space */
4274 break;
4275 s++;
4276 *p = 0;
4277 p = t;
4278
4279#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004280 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4281 "%d", curbuf->b_fnum);
4282 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4283 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4284 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004286 save_curbuf = curbuf;
4287 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 curwin = wp;
4289 curbuf = wp->w_buffer;
4290
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004291 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004293 curwin = save_curwin;
4294 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004295 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004296 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297
4298 if (str != NULL && *str != 0)
4299 {
4300 if (*skipdigits(str) == NUL)
4301 {
4302 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004303 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 itemisflag = FALSE;
4305 }
4306 }
4307#endif
4308 break;
4309
4310 case STL_LINE:
4311 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4312 ? 0L : (long)(wp->w_cursor.lnum);
4313 break;
4314
4315 case STL_NUMLINES:
4316 num = wp->w_buffer->b_ml.ml_line_count;
4317 break;
4318
4319 case STL_COLUMN:
4320 num = !(State & INSERT) && empty_line
4321 ? 0 : (int)wp->w_cursor.col + 1;
4322 break;
4323
4324 case STL_VIRTCOL:
4325 case STL_VIRTCOL_ALT:
4326 /* In list mode virtcol needs to be recomputed */
4327 virtcol = wp->w_virtcol;
4328 if (wp->w_p_list && lcs_tab1 == NUL)
4329 {
4330 wp->w_p_list = FALSE;
4331 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4332 wp->w_p_list = TRUE;
4333 }
4334 ++virtcol;
4335 /* Don't display %V if it's the same as %c. */
4336 if (opt == STL_VIRTCOL_ALT
4337 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4338 ? 0 : (int)wp->w_cursor.col + 1)))
4339 break;
4340 num = (long)virtcol;
4341 break;
4342
4343 case STL_PERCENTAGE:
4344 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4345 (long)wp->w_buffer->b_ml.ml_line_count);
4346 break;
4347
4348 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004349 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004350 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 break;
4352
4353 case STL_ARGLISTSTAT:
4354 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004355 buf_tmp[0] = 0;
4356 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4357 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 break;
4359
4360 case STL_KEYMAP:
4361 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004362 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4363 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 break;
4365 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004366#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004367 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368#else
4369 num = 0;
4370#endif
4371 break;
4372
4373 case STL_BUFNO:
4374 num = wp->w_buffer->b_fnum;
4375 break;
4376
4377 case STL_OFFSET_X:
4378 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004379 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 case STL_OFFSET:
4381#ifdef FEAT_BYTEOFF
4382 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4383 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4384 0L : l + 1 + (!(State & INSERT) && empty_line ?
4385 0 : (int)wp->w_cursor.col);
4386#endif
4387 break;
4388
4389 case STL_BYTEVAL_X:
4390 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004391 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004393 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 if (num == NL)
4395 num = 0;
4396 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4397 num = NL;
4398 break;
4399
4400 case STL_ROFLAG:
4401 case STL_ROFLAG_ALT:
4402 itemisflag = TRUE;
4403 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004404 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 break;
4406
4407 case STL_HELPFLAG:
4408 case STL_HELPFLAG_ALT:
4409 itemisflag = TRUE;
4410 if (wp->w_buffer->b_help)
4411 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004412 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 break;
4414
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 case STL_FILETYPE:
4416 if (*wp->w_buffer->b_p_ft != NUL
4417 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4418 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004419 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004420 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004421 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 }
4423 break;
4424
4425 case STL_FILETYPE_ALT:
4426 itemisflag = TRUE;
4427 if (*wp->w_buffer->b_p_ft != NUL
4428 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4429 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004430 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004431 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004432 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004434 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 }
4436 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437
Bram Moolenaar4033c552017-09-16 20:54:51 +02004438#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 case STL_PREVIEWFLAG:
4440 case STL_PREVIEWFLAG_ALT:
4441 itemisflag = TRUE;
4442 if (wp->w_p_pvw)
4443 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4444 : _("[Preview]"));
4445 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004446
4447 case STL_QUICKFIX:
4448 if (bt_quickfix(wp->w_buffer))
4449 str = (char_u *)(wp->w_llist_ref
4450 ? _(msg_loclist)
4451 : _(msg_qflist));
4452 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453#endif
4454
4455 case STL_MODIFIED:
4456 case STL_MODIFIED_ALT:
4457 itemisflag = TRUE;
4458 switch ((opt == STL_MODIFIED_ALT)
4459 + bufIsChanged(wp->w_buffer) * 2
4460 + (!wp->w_buffer->b_p_ma) * 4)
4461 {
4462 case 2: str = (char_u *)"[+]"; break;
4463 case 3: str = (char_u *)",+"; break;
4464 case 4: str = (char_u *)"[-]"; break;
4465 case 5: str = (char_u *)",-"; break;
4466 case 6: str = (char_u *)"[+-]"; break;
4467 case 7: str = (char_u *)",+-"; break;
4468 }
4469 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004470
4471 case STL_HIGHLIGHT:
4472 t = s;
4473 while (*s != '#' && *s != NUL)
4474 ++s;
4475 if (*s == '#')
4476 {
4477 item[curitem].type = Highlight;
4478 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004479 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004480 curitem++;
4481 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004482 if (*s != NUL)
4483 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004484 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 }
4486
4487 item[curitem].start = p;
4488 item[curitem].type = Normal;
4489 if (str != NULL && *str)
4490 {
4491 t = str;
4492 if (itemisflag)
4493 {
4494 if ((t[0] && t[1])
4495 && ((!prevchar_isitem && *t == ',')
4496 || (prevchar_isflag && *t == ' ')))
4497 t++;
4498 prevchar_isflag = TRUE;
4499 }
4500 l = vim_strsize(t);
4501 if (l > 0)
4502 prevchar_isitem = TRUE;
4503 if (l > maxwid)
4504 {
4505 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 if (has_mbyte)
4507 {
4508 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004509 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 }
4511 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 l -= byte2cells(*t++);
4513 if (p + 1 >= out + outlen)
4514 break;
4515 *p++ = '<';
4516 }
4517 if (minwid > 0)
4518 {
4519 for (; l < minwid && p + 1 < out + outlen; l++)
4520 {
4521 /* Don't put a "-" in front of a digit. */
4522 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4523 *p++ = ' ';
4524 else
4525 *p++ = fillchar;
4526 }
4527 minwid = 0;
4528 }
4529 else
4530 minwid *= -1;
4531 while (*t && p + 1 < out + outlen)
4532 {
4533 *p++ = *t++;
4534 /* Change a space by fillchar, unless fillchar is '-' and a
4535 * digit follows. */
4536 if (fillable && p[-1] == ' '
4537 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4538 p[-1] = fillchar;
4539 }
4540 for (; l < minwid && p + 1 < out + outlen; l++)
4541 *p++ = fillchar;
4542 }
4543 else if (num >= 0)
4544 {
4545 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4546 char_u nstr[20];
4547
4548 if (p + 20 >= out + outlen)
4549 break; /* not sufficient space */
4550 prevchar_isitem = TRUE;
4551 t = nstr;
4552 if (opt == STL_VIRTCOL_ALT)
4553 {
4554 *t++ = '-';
4555 minwid--;
4556 }
4557 *t++ = '%';
4558 if (zeropad)
4559 *t++ = '0';
4560 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004561 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 *t = 0;
4563
4564 for (n = num, l = 1; n >= nbase; n /= nbase)
4565 l++;
4566 if (opt == STL_VIRTCOL_ALT)
4567 l++;
4568 if (l > maxwid)
4569 {
4570 l += 2;
4571 n = l - maxwid;
4572 while (l-- > maxwid)
4573 num /= nbase;
4574 *t++ = '>';
4575 *t++ = '%';
4576 *t = t[-3];
4577 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004578 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4579 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 }
4581 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004582 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4583 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 p += STRLEN(p);
4585 }
4586 else
4587 item[curitem].type = Empty;
4588
4589 if (opt == STL_VIM_EXPR)
4590 vim_free(str);
4591
4592 if (num >= 0 || (!itemisflag && str && *str))
4593 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4594 curitem++;
4595 }
4596 *p = NUL;
4597 itemcnt = curitem;
4598
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004599#ifdef FEAT_EVAL
4600 if (usefmt != fmt)
4601 vim_free(usefmt);
4602#endif
4603
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 width = vim_strsize(out);
4605 if (maxwidth > 0 && width > maxwidth)
4606 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004607 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 l = 0;
4609 if (itemcnt == 0)
4610 s = out;
4611 else
4612 {
4613 for ( ; l < itemcnt; l++)
4614 if (item[l].type == Trunc)
4615 {
4616 /* Truncate at %< item. */
4617 s = item[l].start;
4618 break;
4619 }
4620 if (l == itemcnt)
4621 {
4622 /* No %< item, truncate first item. */
4623 s = item[0].start;
4624 l = 0;
4625 }
4626 }
4627
4628 if (width - vim_strsize(s) >= maxwidth)
4629 {
4630 /* Truncation mark is beyond max length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 if (has_mbyte)
4632 {
4633 s = out;
4634 width = 0;
4635 for (;;)
4636 {
4637 width += ptr2cells(s);
4638 if (width >= maxwidth)
4639 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004640 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 }
4642 /* Fill up for half a double-wide character. */
4643 while (++width < maxwidth)
4644 *s++ = fillchar;
4645 }
4646 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 s = out + maxwidth - 1;
4648 for (l = 0; l < itemcnt; l++)
4649 if (item[l].start > s)
4650 break;
4651 itemcnt = l;
4652 *s++ = '>';
4653 *s = 0;
4654 }
4655 else
4656 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 if (has_mbyte)
4658 {
4659 n = 0;
4660 while (width >= maxwidth)
4661 {
4662 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004663 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 }
4665 }
4666 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 n = width - maxwidth + 1;
4668 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004669 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 *s = '<';
4671
4672 /* Fill up for half a double-wide character. */
4673 while (++width < maxwidth)
4674 {
4675 s = s + STRLEN(s);
4676 *s++ = fillchar;
4677 *s = NUL;
4678 }
4679
4680 --n; /* count the '<' */
4681 for (; l < itemcnt; l++)
4682 {
4683 if (item[l].start - n >= s)
4684 item[l].start -= n;
4685 else
4686 item[l].start = s;
4687 }
4688 }
4689 width = maxwidth;
4690 }
4691 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4692 {
4693 /* Apply STL_MIDDLE if any */
4694 for (l = 0; l < itemcnt; l++)
4695 if (item[l].type == Middle)
4696 break;
4697 if (l < itemcnt)
4698 {
4699 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004700 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 for (s = item[l].start; s < p; s++)
4702 *s = fillchar;
4703 for (l++; l < itemcnt; l++)
4704 item[l].start += maxwidth - width;
4705 width = maxwidth;
4706 }
4707 }
4708
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004709 /* Store the info about highlighting. */
4710 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004712 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 for (l = 0; l < itemcnt; l++)
4714 {
4715 if (item[l].type == Highlight)
4716 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004717 sp->start = item[l].start;
4718 sp->userhl = item[l].minwid;
4719 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 }
4721 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004722 sp->start = NULL;
4723 sp->userhl = 0;
4724 }
4725
4726 /* Store the info about tab pages labels. */
4727 if (tabtab != NULL)
4728 {
4729 sp = tabtab;
4730 for (l = 0; l < itemcnt; l++)
4731 {
4732 if (item[l].type == TabPage)
4733 {
4734 sp->start = item[l].start;
4735 sp->userhl = item[l].minwid;
4736 sp++;
4737 }
4738 }
4739 sp->start = NULL;
4740 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 }
4742
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004743 /* When inside update_screen we do not want redrawing a stausline, ruler,
4744 * title, etc. to trigger another redraw, it may cause an endless loop. */
4745 if (updating_screen)
4746 {
4747 must_redraw = save_must_redraw;
4748 curwin->w_redr_type = save_redr_type;
4749 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004750
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 return width;
4752}
4753#endif /* FEAT_STL_OPT */
4754
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004755#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4756 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004758 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4759 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 */
4761 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004762get_rel_pos(
4763 win_T *wp,
4764 char_u *buf,
4765 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766{
4767 long above; /* number of lines above window */
4768 long below; /* number of lines below window */
4769
Bram Moolenaar0027c212015-01-07 13:31:52 +01004770 if (buflen < 3) /* need at least 3 chars for writing */
4771 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 above = wp->w_topline - 1;
4773#ifdef FEAT_DIFF
4774 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004775 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4776 above = 0; /* All buffer lines are displayed and there is an
4777 * indication of filler lines, that can be considered
4778 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779#endif
4780 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4781 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004782 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4783 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004785 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004787 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 ? (int)(above / ((above + below) / 100L))
4789 : (int)(above * 100L / (above + below)));
4790}
4791#endif
4792
4793/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004794 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 * Return TRUE if it was appended.
4796 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004797 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004798append_arg_number(
4799 win_T *wp,
4800 char_u *buf,
4801 int buflen,
4802 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803{
4804 char_u *p;
4805
4806 if (ARGCOUNT <= 1) /* nothing to do */
4807 return FALSE;
4808
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004809 p = buf + STRLEN(buf); /* go to the end of the buffer */
4810 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 return FALSE;
4812 *p++ = ' ';
4813 *p++ = '(';
4814 if (add_file)
4815 {
4816 STRCPY(p, "file ");
4817 p += 5;
4818 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004819 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4820 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4822 return TRUE;
4823}
4824
4825/*
4826 * If fname is not a full path, make it a full path.
4827 * Returns pointer to allocated memory (NULL for failure).
4828 */
4829 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004830fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831{
4832 /*
4833 * Force expanding the path always for Unix, because symbolic links may
4834 * mess up the full path name, even though it starts with a '/'.
4835 * Also expand when there is ".." in the file name, try to remove it,
4836 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004837 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 * For MS-Windows also expand names like "longna~1" to "longname".
4839 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004840#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 return FullName_save(fname, TRUE);
4842#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004843 if (!vim_isAbsName(fname)
4844 || strstr((char *)fname, "..") != NULL
4845 || strstr((char *)fname, "//") != NULL
4846# ifdef BACKSLASH_IN_FILENAME
4847 || strstr((char *)fname, "\\\\") != NULL
4848# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004849# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004851# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 )
4853 return FullName_save(fname, FALSE);
4854
4855 fname = vim_strsave(fname);
4856
Bram Moolenaar9b942202007-10-03 12:31:33 +00004857# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01004858 if (fname != NULL)
4859 fname_case(fname, 0); /* set correct case for file name */
Bram Moolenaar9b942202007-10-03 12:31:33 +00004860# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861
4862 return fname;
4863#endif
4864}
4865
4866/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004867 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
4868 * "*ffname" becomes a pointer to allocated memory (or NULL).
4869 * When resolving a link both "*sfname" and "*ffname" will point to the same
4870 * allocated memory.
4871 * The "*ffname" and "*sfname" pointer values on call will not be freed.
4872 * Note that the resulting "*ffname" pointer should be considered not allocaed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004875fname_expand(
4876 buf_T *buf UNUSED,
4877 char_u **ffname,
4878 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004880 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004882 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004884 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885
4886#ifdef FEAT_SHORTCUT
4887 if (!buf->b_p_bin)
4888 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004889 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004891 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01004892 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004893 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 {
4895 vim_free(*ffname);
4896 *ffname = rfname;
4897 *sfname = rfname;
4898 }
4899 }
4900#endif
4901}
4902
4903/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 * Open a window for a number of buffers.
4905 */
4906 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004907ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908{
4909 buf_T *buf;
4910 win_T *wp, *wpnext;
4911 int split_ret = OK;
4912 int p_ea_save;
4913 int open_wins = 0;
4914 int r;
4915 int count; /* Maximum number of windows to open. */
4916 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004917 int had_tab = cmdmod.tab;
4918 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919
4920 if (eap->addr_count == 0) /* make as many windows as possible */
4921 count = 9999;
4922 else
4923 count = eap->line2; /* make as many windows as specified */
4924 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
4925 all = FALSE;
4926 else
4927 all = TRUE;
4928
4929 setpcmark();
4930
4931#ifdef FEAT_GUI
4932 need_mouse_correct = TRUE;
4933#endif
4934
4935 /*
4936 * Close superfluous windows (two windows for the same buffer).
4937 * Also close windows that are not full-width.
4938 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004939 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004940 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004943 tpnext = curtab->tp_next;
4944 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004946 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004947 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004948 || ((cmdmod.split & WSP_VERT)
4949 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004950 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004951 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02004952 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004953 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004954 {
4955 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004956 wpnext = firstwin; /* just in case an autocommand does
4957 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004958 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004959 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004960 }
4961 else
4962 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004964
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004965 /* Without the ":tab" modifier only do the current tab page. */
4966 if (had_tab == 0 || tpnext == NULL)
4967 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004968 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
4970
4971 /*
4972 * Go through the buffer list. When a buffer doesn't have a window yet,
4973 * open one. Otherwise move the window to the right position.
4974 * Watch out for autocommands that delete buffers or windows!
4975 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4977 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
4981 {
4982 /* Check if this buffer needs a window */
4983 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
4984 continue;
4985
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004986 if (had_tab != 0)
4987 {
4988 /* With the ":tab" modifier don't move the window. */
4989 if (buf->b_nwindows > 0)
4990 wp = lastwin; /* buffer has a window, skip it */
4991 else
4992 wp = NULL;
4993 }
4994 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004995 {
4996 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02004997 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004998 if (wp->w_buffer == buf)
4999 break;
5000 /* If the buffer already has a window, move it */
5001 if (wp != NULL)
5002 win_move_after(wp, curwin);
5003 }
5004
5005 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005007 bufref_T bufref;
5008
5009 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005010
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 /* Split the window and put the buffer in it */
5012 p_ea_save = p_ea;
5013 p_ea = TRUE; /* use space from all windows */
5014 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5015 ++open_wins;
5016 p_ea = p_ea_save;
5017 if (split_ret == FAIL)
5018 continue;
5019
5020 /* Open the buffer in this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005023 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005025 /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 break;
5028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 if (swap_exists_action == SEA_QUIT)
5030 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005031#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005032 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005033
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005034 /* Reset the error/interrupt/exception state here so that
5035 * aborting() returns FALSE when closing a window. */
5036 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005037#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005038
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005039 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 win_close(curwin, TRUE);
5041 --open_wins;
5042 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005043 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005044
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005045#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005046 /* Restore the error/interrupt/exception state if not
5047 * discarded by a new aborting error, interrupt, or uncaught
5048 * exception. */
5049 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 }
5052 else
5053 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 }
5055
5056 ui_breakcheck();
5057 if (got_int)
5058 {
5059 (void)vgetc(); /* only break the file loading, not the rest */
5060 break;
5061 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005062#ifdef FEAT_EVAL
5063 /* Autocommands deleted the buffer or aborted script processing!!! */
5064 if (aborting())
5065 break;
5066#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005067 /* When ":tab" was used open a new tab for a new window repeatedly. */
5068 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5069 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074
5075 /*
5076 * Close superfluous windows.
5077 */
5078 for (wp = lastwin; open_wins > count; )
5079 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005080 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 if (!win_valid(wp))
5083 {
5084 /* BufWrite Autocommands made the window invalid, start over */
5085 wp = lastwin;
5086 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005087 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005089 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 --open_wins;
5091 wp = lastwin;
5092 }
5093 else
5094 {
5095 wp = wp->w_prev;
5096 if (wp == NULL)
5097 break;
5098 }
5099 }
5100}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005103static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005104
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105/*
5106 * do_modelines() - process mode lines for the current file
5107 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005108 * "flags" can be:
5109 * OPT_WINONLY only set options local to window
5110 * OPT_NOWIN don't set options local to window
5111 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 * Returns immediately if the "ml" option isn't set.
5113 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005115do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005117 linenr_T lnum;
5118 int nmlines;
5119 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120
5121 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5122 return;
5123
5124 /* Disallow recursive entry here. Can happen when executing a modeline
5125 * triggers an autocommand, which reloads modelines with a ":do". */
5126 if (entered)
5127 return;
5128
5129 ++entered;
5130 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5131 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005132 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 nmlines = 0;
5134
5135 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5136 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005137 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 nmlines = 0;
5139 --entered;
5140}
5141
5142#include "version.h" /* for version number */
5143
5144/*
5145 * chk_modeline() - check a single line for a mode string
5146 * Return FAIL if an error encountered.
5147 */
5148 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005149chk_modeline(
5150 linenr_T lnum,
5151 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152{
5153 char_u *s;
5154 char_u *e;
5155 char_u *linecopy; /* local copy of any modeline found */
5156 int prev;
5157 int vers;
5158 int end;
5159 int retval = OK;
5160 char_u *save_sourcing_name;
5161 linenr_T save_sourcing_lnum;
5162#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005163 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164#endif
5165
5166 prev = -1;
5167 for (s = ml_get(lnum); *s != NUL; ++s)
5168 {
5169 if (prev == -1 || vim_isspace(prev))
5170 {
5171 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5172 || STRNCMP(s, "vi:", (size_t)3) == 0)
5173 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005174 /* Accept both "vim" and "Vim". */
5175 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 {
5177 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5178 e = s + 4;
5179 else
5180 e = s + 3;
5181 vers = getdigits(&e);
5182 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005183 && (s[0] != 'V'
5184 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 && (s[3] == ':'
5186 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5187 || (VIM_VERSION_100 < vers && s[3] == '<')
5188 || (VIM_VERSION_100 > vers && s[3] == '>')
5189 || (VIM_VERSION_100 == vers && s[3] == '=')))
5190 break;
5191 }
5192 }
5193 prev = *s;
5194 }
5195
5196 if (*s)
5197 {
5198 do /* skip over "ex:", "vi:" or "vim:" */
5199 ++s;
5200 while (s[-1] != ':');
5201
5202 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5203 if (linecopy == NULL)
5204 return FAIL;
5205
5206 save_sourcing_lnum = sourcing_lnum;
5207 save_sourcing_name = sourcing_name;
5208 sourcing_lnum = lnum; /* prepare for emsg() */
5209 sourcing_name = (char_u *)"modelines";
5210
5211 end = FALSE;
5212 while (end == FALSE)
5213 {
5214 s = skipwhite(s);
5215 if (*s == NUL)
5216 break;
5217
5218 /*
5219 * Find end of set command: ':' or end of line.
5220 * Skip over "\:", replacing it with ":".
5221 */
5222 for (e = s; *e != ':' && *e != NUL; ++e)
5223 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005224 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 if (*e == NUL)
5226 end = TRUE;
5227
5228 /*
5229 * If there is a "set" command, require a terminating ':' and
5230 * ignore the stuff after the ':'.
5231 * "vi:set opt opt opt: foo" -- foo not interpreted
5232 * "vi:opt opt opt: foo" -- foo interpreted
5233 * Accept "se" for compatibility with Elvis.
5234 */
5235 if (STRNCMP(s, "set ", (size_t)4) == 0
5236 || STRNCMP(s, "se ", (size_t)3) == 0)
5237 {
5238 if (*e != ':') /* no terminating ':'? */
5239 break;
5240 end = TRUE;
5241 s = vim_strchr(s, ' ') + 1;
5242 }
5243 *e = NUL; /* truncate the set command */
5244
5245 if (*s != NUL) /* skip over an empty "::" */
5246 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005247 int secure_save = secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005249 save_current_sctx = current_sctx;
5250 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005251 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005252 current_sctx.sc_lnum = 0;
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02005253 current_sctx.sc_version = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254#endif
Bram Moolenaar5958f952018-11-20 04:25:21 +01005255 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005256 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005257
Bram Moolenaara3227e22006-03-08 21:32:40 +00005258 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005259
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005260 secure = secure_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005262 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263#endif
5264 if (retval == FAIL) /* stop if error found */
5265 break;
5266 }
5267 s = e + 1; /* advance to next part */
5268 }
5269
5270 sourcing_lnum = save_sourcing_lnum;
5271 sourcing_name = save_sourcing_name;
5272
5273 vim_free(linecopy);
5274 }
5275 return retval;
5276}
5277
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005278/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005279 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5280 */
5281 int
5282bt_normal(buf_T *buf)
5283{
5284 return buf != NULL && buf->b_p_bt[0] == NUL;
5285}
5286
Bram Moolenaar113e1072019-01-20 15:30:40 +01005287#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005288/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005289 * Return TRUE if "buf" is the quickfix buffer.
5290 */
5291 int
5292bt_quickfix(buf_T *buf)
5293{
5294 return buf != NULL && buf->b_p_bt[0] == 'q';
5295}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005296#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005297
Bram Moolenaar113e1072019-01-20 15:30:40 +01005298#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005299/*
5300 * Return TRUE if "buf" is a terminal buffer.
5301 */
5302 int
5303bt_terminal(buf_T *buf)
5304{
5305 return buf != NULL && buf->b_p_bt[0] == 't';
5306}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005307#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005308
5309/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005310 * Return TRUE if "buf" is a help buffer.
5311 */
5312 int
5313bt_help(buf_T *buf)
5314{
5315 return buf != NULL && buf->b_help;
5316}
5317
5318/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005319 * Return TRUE if "buf" is a prompt buffer.
5320 */
5321 int
5322bt_prompt(buf_T *buf)
5323{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005324 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5325}
5326
5327/*
5328 * Return TRUE if "buf" is a buffer for a popup window.
5329 */
5330 int
5331bt_popup(buf_T *buf)
5332{
5333 return buf != NULL && buf->b_p_bt != NULL
5334 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005335}
5336
5337/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005338 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5339 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005340 */
5341 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005342bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005343{
5344 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5345 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005346 || buf->b_p_bt[0] == 't'
5347 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005348}
5349
5350/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005351 * Return TRUE if "buf" has 'buftype' set to "nofile".
5352 */
5353 int
5354bt_nofile(buf_T *buf)
5355{
5356 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5357}
5358
5359/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005360 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5361 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005362 */
5363 int
5364bt_dontwrite(buf_T *buf)
5365{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005366 return buf != NULL && (buf->b_p_bt[0] == 'n'
5367 || buf->b_p_bt[0] == 't'
5368 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005369}
5370
Bram Moolenaar113e1072019-01-20 15:30:40 +01005371#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005372 int
5373bt_dontwrite_msg(buf_T *buf)
5374{
5375 if (bt_dontwrite(buf))
5376 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005377 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005378 return TRUE;
5379 }
5380 return FALSE;
5381}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005382#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005383
5384/*
5385 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5386 * and 'bufhidden'.
5387 */
5388 int
5389buf_hide(buf_T *buf)
5390{
5391 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5392 switch (buf->b_p_bh[0])
5393 {
5394 case 'u': /* "unload" */
5395 case 'w': /* "wipe" */
5396 case 'd': return FALSE; /* "delete" */
5397 case 'h': return TRUE; /* "hide" */
5398 }
5399 return (p_hid || cmdmod.hide);
5400}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401
5402/*
5403 * Return special buffer name.
5404 * Returns NULL when the buffer has a normal file name.
5405 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005406 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005407buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005409#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005411 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005412 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005413 * Differentiate between the quickfix and location list buffers using
5414 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005415 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005416 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005417 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005418 else
5419 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005422
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005424 * contains the name as specified by the user. */
Bram Moolenaar26910de2019-06-15 19:37:15 +02005425 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005427#ifdef FEAT_TERMINAL
5428 if (buf->b_term != NULL)
5429 return term_get_status_text(buf->b_term);
5430#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005431 if (buf->b_fname != NULL)
5432 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005433#ifdef FEAT_JOB_CHANNEL
5434 if (bt_prompt(buf))
5435 return (char_u *)_("[Prompt]");
5436#endif
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005437#ifdef FEAT_TEXT_PROP
5438 if (bt_popup(buf))
5439 return (char_u *)_("[Popup]");
5440#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005441 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005443
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005445 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 return NULL;
5447}
5448
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449/*
5450 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5451 */
5452 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005453set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454{
5455 if (on != curbuf->b_p_bl)
5456 {
5457 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 if (on)
5459 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5460 else
5461 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 }
5463}
5464
5465/*
5466 * Read the file for "buf" again and check if the contents changed.
5467 * Return TRUE if it changed or this could not be checked.
5468 */
5469 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005470buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471{
5472 buf_T *newbuf;
5473 int differ = TRUE;
5474 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 exarg_T ea;
5477
5478 /* Allocate a buffer without putting it in the buffer list. */
5479 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5480 if (newbuf == NULL)
5481 return TRUE;
5482
5483 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5484 if (prep_exarg(&ea, buf) == FAIL)
5485 {
5486 wipe_buffer(newbuf, FALSE);
5487 return TRUE;
5488 }
5489
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 /* set curwin/curbuf to buf and save a few things */
5491 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492
Bram Moolenaar4770d092006-01-12 23:22:24 +00005493 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 && readfile(buf->b_ffname, buf->b_fname,
5495 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5496 &ea, READ_NEW | READ_DUMMY) == OK)
5497 {
5498 /* compare the two files line by line */
5499 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5500 {
5501 differ = FALSE;
5502 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5503 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5504 {
5505 differ = TRUE;
5506 break;
5507 }
5508 }
5509 }
5510 vim_free(ea.cmd);
5511
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 /* restore curwin/curbuf and a few other things */
5513 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514
5515 if (curbuf != newbuf) /* safety check */
5516 wipe_buffer(newbuf, FALSE);
5517
5518 return differ;
5519}
5520
5521/*
5522 * Wipe out a buffer and decrement the last buffer number if it was used for
5523 * this buffer. Call this to wipe out a temp buffer that does not contain any
5524 * marks.
5525 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005527wipe_buffer(
5528 buf_T *buf,
5529 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530{
5531 if (buf->b_fnum == top_file_num - 1)
5532 --top_file_num;
5533
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005535 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005536
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005537 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005538
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005540 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541}