blob: ea61c5ad03649e8d0a7d195602f6cbc27fdbbfbc [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 Moolenaarf28dbce2016-01-29 22:03:47 +010030static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020034static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
35static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
36static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#endif
40#ifdef FEAT_TITLE
Bram Moolenaar84a93082018-06-16 22:58:15 +020041static int value_changed(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000042#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010043static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
44static void free_buffer(buf_T *);
45static void free_buffer_stuff(buf_T *buf, int free_options);
46static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000047
48#ifdef UNIX
49# define dev_T dev_t
50#else
51# define dev_T unsigned
52#endif
53
Bram Moolenaar4033c552017-09-16 20:54:51 +020054#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020055static char *msg_loclist = N_("[Location List]");
56static char *msg_qflist = N_("[Quickfix List]");
57#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010058static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020059
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020060/* Number of times free_buffer() was called. */
61static int buf_free_count = 0;
62
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020063/* Read data from buffer for retrying. */
64 static int
65read_buffer(
66 int read_stdin, /* read file from stdin, otherwise fifo */
67 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
68 int flags) /* extra flags for readfile() */
69{
70 int retval = OK;
71 linenr_T line_count;
72
73 /*
74 * Read from the buffer which the text is already filled in and append at
75 * the end. This makes it possible to retry when 'fileformat' or
76 * 'fileencoding' was guessed wrong.
77 */
78 line_count = curbuf->b_ml.ml_line_count;
79 retval = readfile(
80 read_stdin ? NULL : curbuf->b_ffname,
81 read_stdin ? NULL : curbuf->b_fname,
82 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
83 flags | READ_BUFFER);
84 if (retval == OK)
85 {
86 /* Delete the binary lines. */
87 while (--line_count >= 0)
88 ml_delete((linenr_T)1, FALSE);
89 }
90 else
91 {
92 /* Delete the converted lines. */
93 while (curbuf->b_ml.ml_line_count > line_count)
94 ml_delete(line_count, FALSE);
95 }
96 /* Put the cursor on the first line. */
97 curwin->w_cursor.lnum = 1;
98 curwin->w_cursor.col = 0;
99
100 if (read_stdin)
101 {
102 /* Set or reset 'modified' before executing autocommands, so that
103 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100104 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200105 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100106 else if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200107 unchanged(curbuf, FALSE);
108
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100109 if (retval == OK)
110 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100111#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100112 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100113 curbuf, &retval);
114#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100115 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100117 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200118 }
119 return retval;
120}
121
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200123 * Open current buffer, that is: open the memfile and read the file into
124 * memory.
125 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 */
127 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100128open_buffer(
129 int read_stdin, /* read file from stdin */
130 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
131 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132{
133 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200134 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100135#ifdef FEAT_SYN_HL
136 long old_tw = curbuf->b_p_tw;
137#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200138 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
140 /*
141 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
142 * When re-entering the same buffer, it should not change, because the
143 * user may have reset the flag by hand.
144 */
145 if (readonlymode && curbuf->b_ffname != NULL
146 && (curbuf->b_flags & BF_NEVERLOADED))
147 curbuf->b_p_ro = TRUE;
148
Bram Moolenaar4770d092006-01-12 23:22:24 +0000149 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 {
151 /*
152 * There MUST be a memfile, otherwise we can't do anything
153 * If we can't create one for the current buffer, take another buffer
154 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100155 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200156 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 if (curbuf->b_ml.ml_mfp != NULL)
158 break;
159 /*
160 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000161 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 */
163 if (curbuf == NULL)
164 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100165 emsg(_("E82: Cannot allocate any buffer, exiting..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 getout(2);
167 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100168 emsg(_("E83: Cannot allocate buffer, using other one..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100170#ifdef FEAT_SYN_HL
171 if (old_tw != curbuf->b_p_tw)
172 check_colorcolumn(curwin);
173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 return FAIL;
175 }
176
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 /* The autocommands in readfile() may change the buffer, but only AFTER
178 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200179 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
182 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100183 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185 if (curbuf->b_ffname != NULL
186#ifdef FEAT_NETBEANS_INTG
187 && netbeansReadFile
188#endif
189 )
190 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100191 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200192#ifdef UNIX
193 int save_bin = curbuf->b_p_bin;
194 int perm;
195#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196#ifdef FEAT_NETBEANS_INTG
197 int oldFire = netbeansFireChanges;
198
199 netbeansFireChanges = 0;
200#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200201#ifdef UNIX
202 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200203 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200204 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200205# ifdef OPEN_CHR_FILES
206 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
207# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200208 ))
209 read_fifo = TRUE;
210 if (read_fifo)
211 curbuf->b_p_bin = TRUE;
212#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100213 if (shortmess(SHM_FILEINFO))
214 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200216 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200217 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
218#ifdef UNIX
219 if (read_fifo)
220 {
221 curbuf->b_p_bin = save_bin;
222 if (retval == OK)
223 retval = read_buffer(FALSE, eap, flags);
224 }
225#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100226 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227#ifdef FEAT_NETBEANS_INTG
228 netbeansFireChanges = oldFire;
229#endif
230 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200231 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 fix_help_buffer();
233 }
234 else if (read_stdin)
235 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200236 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238 /*
239 * First read the text in binary mode into the buffer.
240 * Then read from that same buffer and append at the end. This makes
241 * it possible to retry when 'fileformat' or 'fileencoding' was
242 * guessed wrong.
243 */
244 curbuf->b_p_bin = TRUE;
245 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200246 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
247 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248 curbuf->b_p_bin = save_bin;
249 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200250 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 }
252
253 /* if first time loading this buffer, init b_chartab[] */
254 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100255 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100257#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100258 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100259#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261
262 /*
263 * Set/reset the Changed flag first, autocmds may change the buffer.
264 * Apply the automatic commands, before processing the modelines.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200265 * So the modelines have priority over autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 */
267 /* When reading stdin, the buffer contents always needs writing, so set
268 * the changed flag. Unless in readonly mode: "ls | gview -".
269 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000270 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100272#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000275 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100277 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 unchanged(curbuf, FALSE);
279 save_file_ff(curbuf); /* keep this fileformat */
280
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100281 /* Set last_changedtick to avoid triggering a TextChanged autocommand right
282 * after it was added. */
283 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
284#ifdef FEAT_INS_EXPAND
285 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
286#endif
287
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 /* require "!" to overwrite the file, because it wasn't read completely */
289#ifdef FEAT_EVAL
290 if (aborting())
291#else
292 if (got_int)
293#endif
294 curbuf->b_flags |= BF_READERR;
295
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000296#ifdef FEAT_FOLDING
297 /* Need to update automatic folding. Do this before the autocommands,
298 * they may use the fold info. */
299 foldUpdateAll(curwin);
300#endif
301
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 /* need to set w_topline, unless some autocommand already did that. */
303 if (!(curwin->w_valid & VALID_TOPLINE))
304 {
305 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100306#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100308#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100310#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100312#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#endif
315
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100316 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 /*
319 * The autocommands may have changed the current buffer. Apply the
320 * modelines to the correct buffer, if it still exists and is loaded.
321 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200322 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 {
324 aco_save_T aco;
325
326 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200327 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000328 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
330
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100331#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100333 &retval);
334#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337
338 /* restore curwin/curbuf and a few other things */
339 aucmd_restbuf(&aco);
340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 }
342
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 return retval;
344}
345
346/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200347 * Store "buf" in "bufref" and set the free count.
348 */
349 void
350set_bufref(bufref_T *bufref, buf_T *buf)
351{
352 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200353 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200354 bufref->br_buf_free_count = buf_free_count;
355}
356
357/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200358 * Return TRUE if "bufref->br_buf" points to the same buffer as when
359 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200360 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200361 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
362 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200363 */
364 int
365bufref_valid(bufref_T *bufref)
366{
367 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200368 ? TRUE : buf_valid(bufref->br_buf)
369 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200370}
371
372/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200374 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 */
376 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100377buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378{
379 buf_T *bp;
380
Bram Moolenaar82404332016-07-10 17:00:38 +0200381 /* Assume that we more often have a recent buffer, start with the last
382 * one. */
383 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 if (bp == buf)
385 return TRUE;
386 return FALSE;
387}
388
389/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200390 * A hash table used to quickly lookup a buffer by its number.
391 */
392static hashtab_T buf_hashtab;
393
394 static void
395buf_hashtab_add(buf_T *buf)
396{
397 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
398 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100399 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200400}
401
402 static void
403buf_hashtab_remove(buf_T *buf)
404{
405 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
406
407 if (!HASHITEM_EMPTY(hi))
408 hash_remove(&buf_hashtab, hi);
409}
410
Bram Moolenaar94f01952018-09-01 15:30:03 +0200411/*
412 * Return TRUE when buffer "buf" can be unloaded.
413 * Give an error message and return FALSE when the buffer is locked or the
414 * screen is being redrawn and the buffer is in a window.
415 */
416 static int
417can_unload_buffer(buf_T *buf)
418{
419 int can_unload = !buf->b_locked;
420
421 if (can_unload && updating_screen)
422 {
423 win_T *wp;
424
425 FOR_ALL_WINDOWS(wp)
426 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200427 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200428 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200429 break;
430 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200431 }
432 if (!can_unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100433 emsg(_("E937: Attempt to delete a buffer that is in use"));
Bram Moolenaar94f01952018-09-01 15:30:03 +0200434 return can_unload;
435}
Bram Moolenaara997b452018-04-17 23:24:06 +0200436
Bram Moolenaar480778b2016-07-14 22:09:39 +0200437/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 * Close the link to a buffer.
439 * "action" is used when there is no longer a window for the buffer.
440 * It can be:
441 * 0 buffer becomes hidden
442 * DOBUF_UNLOAD buffer is unloaded
443 * DOBUF_DELETE buffer is unloaded and removed from buffer list
444 * DOBUF_WIPE buffer is unloaded and really deleted
445 * When doing all but the first one on the current buffer, the caller should
446 * get a new buffer very soon!
447 *
448 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100449 *
450 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
451 * cause there to be only one window with this buffer. e.g. when ":quit" is
452 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 */
454 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100455close_buffer(
456 win_T *win, /* if not NULL, set b_last_cursor */
457 buf_T *buf,
458 int action,
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200459 int abort_if_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100462 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200463 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100464 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200465 win_T *the_curwin = curwin;
466 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 int unload_buf = (action != 0);
468 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
469 int wipe_buf = (action == DOBUF_WIPE);
470
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200471 /*
472 * Force unloading or deleting when 'bufhidden' says so.
473 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
474 * "hide" (otherwise we could never free or delete a buffer).
475 */
476 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
477 {
478 del_buf = TRUE;
479 unload_buf = TRUE;
480 }
481 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
482 {
483 del_buf = TRUE;
484 unload_buf = TRUE;
485 wipe_buf = TRUE;
486 }
487 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
488 unload_buf = TRUE;
489
Bram Moolenaar94053a52017-08-01 21:44:33 +0200490#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200491 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200492 {
493 if (term_job_running(buf->b_term))
494 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200495 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200496 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200497 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +0200498 return;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200499
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200500 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200501 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200502 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200503 else
504 {
505 /* The job keeps running, hide the buffer. */
506 del_buf = FALSE;
507 unload_buf = FALSE;
508 }
509 }
510 else
511 {
512 /* A terminal buffer is wiped out if the job has finished. */
513 del_buf = TRUE;
514 unload_buf = TRUE;
515 wipe_buf = TRUE;
516 }
517 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200518#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200520 /* Disallow deleting the buffer when it is locked (already being closed or
521 * halfway a command that relies on it). Unloading is allowed. */
Bram Moolenaar94f01952018-09-01 15:30:03 +0200522 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200523 return;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200524
Bram Moolenaar4033c552017-09-16 20:54:51 +0200525 /* check no autocommands closed the window */
526 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 {
528 /* Set b_last_cursor when closing the last window for the buffer.
529 * Remember the last cursor position and window options of the buffer.
530 * This used to be only for the current window, but then options like
531 * 'foldmethod' may be lost with a ":only" command. */
532 if (buf->b_nwindows == 1)
533 set_last_cursor(win);
534 buflist_setfpos(buf, win,
535 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
536 win->w_cursor.col, TRUE);
537 }
538
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200539 set_bufref(&bufref, buf);
540
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 /* When the buffer is no longer in a window, trigger BufWinLeave */
542 if (buf->b_nwindows == 1)
543 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200544 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200545 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
546 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200547 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100548 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200549 /* Autocommands deleted the buffer. */
550aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100551 emsg(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100553 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200554 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200555 if (abort_if_last && one_window())
556 /* Autocommands made this the only window. */
557 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558
559 /* When the buffer becomes hidden, but is not unloaded, trigger
560 * BufHidden */
561 if (!unload_buf)
562 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200563 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200564 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
565 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200566 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200567 /* Autocommands deleted the buffer. */
568 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200570 if (abort_if_last && one_window())
571 /* Autocommands made this the only window. */
572 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100574#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 if (aborting()) /* autocmds may abort script processing */
576 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200579
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200580 /* If the buffer was in curwin and the window has changed, go back to that
581 * window, if it still exists. This avoids that ":edit x" triggering a
582 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
583 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
584 {
585 block_autocmds();
586 goto_tabpage_win(the_curtab, the_curwin);
587 unblock_autocmds();
588 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200589
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591
592 /* decrease the link count from windows (unless not in any window) */
593 if (buf->b_nwindows > 0)
594 --buf->b_nwindows;
595
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100596#ifdef FEAT_DIFF
597 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100598 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100599#endif
600
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 /* Return when a window is displaying the buffer or when it's not
602 * unloaded. */
603 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
606 /* Always remove the buffer when there is no file name. */
607 if (buf->b_ffname == NULL)
608 del_buf = TRUE;
609
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200610 /* When closing the current buffer stop Visual mode before freeing
611 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200612 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200613#if defined(EXITFREE)
614 && !entered_free_all_mem
615#endif
616 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200617 end_visual_mode();
618
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 /*
620 * Free all things allocated for this buffer.
621 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
622 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 /* Remember if we are closing the current buffer. Restore the number of
624 * windows, so that autocommands in buf_freeall() don't get confused. */
625 is_curbuf = (buf == curbuf);
626 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200628 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200631 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100633#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000634 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 /*
639 * It's possible that autocommands change curbuf to the one being deleted.
640 * This might cause the previous curbuf to be deleted unexpectedly. But
641 * in some cases it's OK to delete the curbuf, because a new one is
642 * obtained anyway. Therefore only return if curbuf changed to the
643 * deleted buffer.
644 */
645 if (buf == curbuf && !is_curbuf)
646 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200647
Bram Moolenaar4033c552017-09-16 20:54:51 +0200648 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200649 win->w_buffer = NULL; /* make sure we don't use the buffer now */
650
651 /* Autocommands may have opened or closed windows for this buffer.
652 * Decrement the count for the close we do here. */
653 if (buf->b_nwindows > 0)
654 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 /*
657 * Remove the buffer from the list.
658 */
659 if (wipe_buf)
660 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200661 if (buf->b_sfname != buf->b_ffname)
662 VIM_CLEAR(buf->b_sfname);
663 else
664 buf->b_sfname = NULL;
665 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 if (buf->b_prev == NULL)
667 firstbuf = buf->b_next;
668 else
669 buf->b_prev->b_next = buf->b_next;
670 if (buf->b_next == NULL)
671 lastbuf = buf->b_prev;
672 else
673 buf->b_next->b_prev = buf->b_prev;
674 free_buffer(buf);
675 }
676 else
677 {
678 if (del_buf)
679 {
680 /* Free all internal variables and reset option values, to make
681 * ":bdel" compatible with Vim 5.7. */
682 free_buffer_stuff(buf, TRUE);
683
684 /* Make it look like a new buffer. */
685 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
686
687 /* Init the options when loaded again. */
688 buf->b_p_initialized = FALSE;
689 }
690 buf_clear_file(buf);
691 if (del_buf)
692 buf->b_p_bl = FALSE;
693 }
694}
695
696/*
697 * Make buffer not contain a file.
698 */
699 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100700buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701{
702 buf->b_ml.ml_line_count = 1;
703 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 buf->b_p_eol = TRUE;
706 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000708 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 buf->b_ml.ml_mfp = NULL;
710 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
711#ifdef FEAT_NETBEANS_INTG
712 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713#endif
714}
715
716/*
717 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200718 * the file. Careful: get here with "curwin" NULL when exiting.
719 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200720 * BFA_DEL buffer is going to be deleted
721 * BFA_WIPE buffer is going to be wiped out
722 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100725buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200728 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200729 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200730 win_T *the_curwin = curwin;
731 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
Bram Moolenaar5a497892016-09-03 16:29:04 +0200733 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200734 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200735 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200736 if (buf->b_ml.ml_mfp != NULL)
737 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200738 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
739 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200740 && !bufref_valid(&bufref))
741 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200742 return;
743 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200744 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200746 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
747 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200748 && !bufref_valid(&bufref))
749 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 return;
751 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200752 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200754 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
755 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200756 && !bufref_valid(&bufref))
757 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 return;
759 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200760 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200761
Bram Moolenaar5a497892016-09-03 16:29:04 +0200762 /* If the buffer was in curwin and the window has changed, go back to that
763 * window, if it still exists. This avoids that ":edit x" triggering a
764 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
765 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
766 {
767 block_autocmds();
768 goto_tabpage_win(the_curtab, the_curwin);
769 unblock_autocmds();
770 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200771
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100772#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000773 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776
777 /*
778 * It's possible that autocommands change curbuf to the one being deleted.
779 * This might cause curbuf to be deleted unexpectedly. But in some cases
780 * it's OK to delete the curbuf, because a new one is obtained anyway.
781 * Therefore only return if curbuf changed to the deleted buffer.
782 */
783 if (buf == curbuf && !is_curbuf)
784 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785#ifdef FEAT_DIFF
786 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
787#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200788#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100789 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200790 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100791 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200792#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000793
794#ifdef FEAT_FOLDING
795 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000796 {
797 win_T *win;
798 tabpage_T *tp;
799
800 FOR_ALL_TAB_WINDOWS(tp, win)
801 if (win->w_buffer == buf)
802 clearFolding(win);
803 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000804#endif
805
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806#ifdef FEAT_TCL
807 tcl_buffer_free(buf);
808#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 ml_close(buf, TRUE); /* close and delete the memline/memfile */
810 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200811 if ((flags & BFA_KEEP_UNDO) == 0)
812 {
813 u_blockfree(buf); /* free the memory allocated for undo */
814 u_clearall(buf); /* reset all undo information */
815 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200817 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100819#ifdef FEAT_TEXT_PROP
820 clear_buf_prop_types(buf);
821#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000822 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823}
824
825/*
826 * Free a buffer structure and the things it contains related to the buffer
827 * itself (not the file, that must have been done already).
828 */
829 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100830free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200832 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200834#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200835 /* b:changedtick uses an item in buf_T, remove it now */
836 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200837 unref_var_dict(buf->b_vars);
838#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200839#ifdef FEAT_LUA
840 lua_buffer_free(buf);
841#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000842#ifdef FEAT_MZSCHEME
843 mzscheme_buffer_free(buf);
844#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845#ifdef FEAT_PERL
846 perl_buf_free(buf);
847#endif
848#ifdef FEAT_PYTHON
849 python_buffer_free(buf);
850#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200851#ifdef FEAT_PYTHON3
852 python3_buffer_free(buf);
853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854#ifdef FEAT_RUBY
855 ruby_buffer_free(buf);
856#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200857#ifdef FEAT_JOB_CHANNEL
858 channel_buffer_free(buf);
859#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200860#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200861 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200862#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200863#ifdef FEAT_JOB_CHANNEL
864 vim_free(buf->b_prompt_text);
865 free_callback(buf->b_prompt_callback, buf->b_prompt_partial);
866#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200867
868 buf_hashtab_remove(buf);
869
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200870 aubuflocal_remove(buf);
871
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200872 if (autocmd_busy)
873 {
874 /* Do not free the buffer structure while autocommands are executing,
875 * it's still needed. Free it when autocmd_busy is reset. */
876 buf->b_next = au_pending_free_buf;
877 au_pending_free_buf = buf;
878 }
879 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200880 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881}
882
883/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100884 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100885 */
886 static void
887init_changedtick(buf_T *buf)
888{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100889 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100890
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100891 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
892 di->di_tv.v_type = VAR_NUMBER;
893 di->di_tv.v_lock = VAR_FIXED;
894 di->di_tv.vval.v_number = 0;
895
Bram Moolenaar92769c32017-02-25 15:41:37 +0100896#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100897 STRCPY(buf->b_ct_di.di_key, "changedtick");
898 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100899#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100900}
901
902/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
904 */
905 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100906free_buffer_stuff(
907 buf_T *buf,
908 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909{
910 if (free_options)
911 {
912 clear_wininfo(buf); /* including window-local options */
913 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200914#ifdef FEAT_SPELL
915 ga_clear(&buf->b_s.b_langp);
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 }
918#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100919 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100920 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100921
922 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
923 hash_init(&buf->b_vars->dv_hashtab);
924 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100925 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200928 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200930 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000932#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200933 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935#ifdef FEAT_LOCALMAP
936 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
937 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
938#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +0100939 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940}
941
942/*
943 * Free the b_wininfo list for buffer "buf".
944 */
945 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100946clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947{
948 wininfo_T *wip;
949
950 while (buf->b_wininfo != NULL)
951 {
952 wip = buf->b_wininfo;
953 buf->b_wininfo = wip->wi_next;
954 if (wip->wi_optset)
955 {
956 clear_winopt(&wip->wi_opt);
957#ifdef FEAT_FOLDING
958 deleteFoldRecurse(&wip->wi_folds);
959#endif
960 }
961 vim_free(wip);
962 }
963}
964
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965/*
966 * Go to another buffer. Handles the result of the ATTENTION dialog.
967 */
968 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100969goto_buffer(
970 exarg_T *eap,
971 int start,
972 int dir,
973 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200975 bufref_T old_curbuf;
976
977 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
981 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
983 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +0200984#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000985 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000986
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000987 /* Reset the error/interrupt/exception state here so that
988 * aborting() returns FALSE when closing a window. */
989 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +0200990#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000991
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000992 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 win_close(curwin, TRUE);
994 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000995 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000996
Bram Moolenaar67cf86b2019-04-28 22:25:38 +0200997#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000998 /* Restore the error/interrupt/exception state if not discarded by a
999 * new aborting error, interrupt, or uncaught exception. */
1000 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 }
1003 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001004 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001005}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007/*
1008 * Handle the situation of swap_exists_action being set.
1009 * It is allowed for "old_curbuf" to be NULL or invalid.
1010 */
1011 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001012handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001014#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001015 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001016#endif
1017#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001018 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001019#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001020 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001021
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 if (swap_exists_action == SEA_QUIT)
1023 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001024#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001025 /* Reset the error/interrupt/exception state here so that
1026 * aborting() returns FALSE when closing a buffer. */
1027 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001028#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001029
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 /* User selected Quit at ATTENTION prompt. Go back to previous
1031 * buffer. If that buffer is gone or the same as the current one,
1032 * open a new, empty buffer. */
1033 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001034 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001035 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001036 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1037 || old_curbuf->br_buf == curbuf)
1038 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1039 else
1040 buf = old_curbuf->br_buf;
1041 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001042 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001043 int old_msg_silent = msg_silent;
1044
1045 if (shortmess(SHM_FILEINFO))
1046 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001047 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001048 // restore msg_silent, so that the command line will be shown
1049 msg_silent = old_msg_silent;
1050
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001051#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001052 if (old_tw != curbuf->b_p_tw)
1053 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001054#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001057
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001058#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001059 /* Restore the error/interrupt/exception state if not discarded by a
1060 * new aborting error, interrupt, or uncaught exception. */
1061 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001062#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 }
1064 else if (swap_exists_action == SEA_RECOVER)
1065 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001066#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001067 /* Reset the error/interrupt/exception state here so that
1068 * aborting() returns FALSE when closing a buffer. */
1069 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001070#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001071
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 /* User selected Recover at ATTENTION prompt. */
1073 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001074 ml_recover(FALSE);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001075 msg_puts("\n"); /* don't overwrite the last message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001077 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001078
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001079#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001080 /* Restore the error/interrupt/exception state if not discarded by a
1081 * new aborting error, interrupt, or uncaught exception. */
1082 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 }
1085 swap_exists_action = SEA_NONE;
1086}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088/*
1089 * do_bufdel() - delete or unload buffer(s)
1090 *
1091 * addr_count == 0: ":bdel" - delete current buffer
1092 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1093 * buffer "end_bnr", then any other arguments.
1094 * addr_count == 2: ":N,N bdel" - delete buffers in range
1095 *
1096 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1097 * DOBUF_DEL (":bdel")
1098 *
1099 * Returns error message or NULL
1100 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001101 char *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001102do_bufdel(
1103 int command,
1104 char_u *arg, /* pointer to extra arguments */
1105 int addr_count,
1106 int start_bnr, /* first buffer number in a range */
1107 int end_bnr, /* buffer nr or last buffer nr in a range */
1108 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109{
1110 int do_current = 0; /* delete current buffer? */
1111 int deleted = 0; /* number of buffers deleted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001112 char *errormsg = NULL; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 int bnr; /* buffer number */
1114 char_u *p;
1115
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 if (addr_count == 0)
1117 {
1118 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1119 }
1120 else
1121 {
1122 if (addr_count == 2)
1123 {
1124 if (*arg) /* both range and argument is not allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001125 return _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 bnr = start_bnr;
1127 }
1128 else /* addr_count == 1 */
1129 bnr = end_bnr;
1130
1131 for ( ;!got_int; ui_breakcheck())
1132 {
1133 /*
1134 * delete the current buffer last, otherwise when the
1135 * current buffer is deleted, the next buffer becomes
1136 * the current one and will be loaded, which may then
1137 * also be deleted, etc.
1138 */
1139 if (bnr == curbuf->b_fnum)
1140 do_current = bnr;
1141 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1142 forceit) == OK)
1143 ++deleted;
1144
1145 /*
1146 * find next buffer number to delete/unload
1147 */
1148 if (addr_count == 2)
1149 {
1150 if (++bnr > end_bnr)
1151 break;
1152 }
1153 else /* addr_count == 1 */
1154 {
1155 arg = skipwhite(arg);
1156 if (*arg == NUL)
1157 break;
1158 if (!VIM_ISDIGIT(*arg))
1159 {
1160 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001161 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1162 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 if (bnr < 0) /* failed */
1164 break;
1165 arg = p;
1166 }
1167 else
1168 bnr = getdigits(&arg);
1169 }
1170 }
1171 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1172 FORWARD, do_current, forceit) == OK)
1173 ++deleted;
1174
1175 if (deleted == 0)
1176 {
1177 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001178 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001180 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001182 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001183 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 }
1185 else if (deleted >= p_report)
1186 {
1187 if (command == DOBUF_UNLOAD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001188 smsg(NGETTEXT("%d buffer unloaded",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001189 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 else if (command == DOBUF_DEL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001191 smsg(NGETTEXT("%d buffer deleted",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001192 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001194 smsg(NGETTEXT("%d buffer wiped out",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001195 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 }
1197 }
1198
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199
1200 return errormsg;
1201}
1202
Bram Moolenaara02471e2014-01-10 16:43:14 +01001203/*
1204 * Make the current buffer empty.
1205 * Used when it is wiped out and it's the last buffer.
1206 */
1207 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001208empty_curbuf(
1209 int close_others,
1210 int forceit,
1211 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001212{
1213 int retval;
1214 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001215 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001216
1217 if (action == DOBUF_UNLOAD)
1218 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001219 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001220 return FAIL;
1221 }
1222
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001223 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001224 if (close_others)
1225 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001226 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001227
1228 setpcmark();
1229 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1230 forceit ? ECMD_FORCEIT : 0, curwin);
1231
1232 /*
1233 * do_ecmd() may create a new buffer, then we have to delete
1234 * the old one. But do_ecmd() may have done that already, check
1235 * if the buffer still exists.
1236 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001237 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001238 close_buffer(NULL, buf, action, FALSE);
1239 if (!close_others)
1240 need_fileinfo = FALSE;
1241 return retval;
1242}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001243
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244/*
1245 * Implementation of the commands for the buffer list.
1246 *
1247 * action == DOBUF_GOTO go to specified buffer
1248 * action == DOBUF_SPLIT split window and go to specified buffer
1249 * action == DOBUF_UNLOAD unload specified buffer(s)
1250 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1251 * action == DOBUF_WIPE delete specified buffer(s) really
1252 *
1253 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1254 * start == DOBUF_FIRST go to "count" buffer from first buffer
1255 * start == DOBUF_LAST go to "count" buffer from last buffer
1256 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1257 *
1258 * Return FAIL or OK.
1259 */
1260 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001261do_buffer(
1262 int action,
1263 int start,
1264 int dir, /* FORWARD or BACKWARD */
1265 int count, /* buffer number or number of buffers */
1266 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267{
1268 buf_T *buf;
1269 buf_T *bp;
1270 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1271 || action == DOBUF_WIPE);
1272
1273 switch (start)
1274 {
1275 case DOBUF_FIRST: buf = firstbuf; break;
1276 case DOBUF_LAST: buf = lastbuf; break;
1277 default: buf = curbuf; break;
1278 }
1279 if (start == DOBUF_MOD) /* find next modified buffer */
1280 {
1281 while (count-- > 0)
1282 {
1283 do
1284 {
1285 buf = buf->b_next;
1286 if (buf == NULL)
1287 buf = firstbuf;
1288 }
1289 while (buf != curbuf && !bufIsChanged(buf));
1290 }
1291 if (!bufIsChanged(buf))
1292 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001293 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 return FAIL;
1295 }
1296 }
1297 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1298 {
1299 while (buf != NULL && buf->b_fnum != count)
1300 buf = buf->b_next;
1301 }
1302 else
1303 {
1304 bp = NULL;
1305 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1306 {
1307 /* remember the buffer where we start, we come back there when all
1308 * buffers are unlisted. */
1309 if (bp == NULL)
1310 bp = buf;
1311 if (dir == FORWARD)
1312 {
1313 buf = buf->b_next;
1314 if (buf == NULL)
1315 buf = firstbuf;
1316 }
1317 else
1318 {
1319 buf = buf->b_prev;
1320 if (buf == NULL)
1321 buf = lastbuf;
1322 }
1323 /* don't count unlisted buffers */
1324 if (unload || buf->b_p_bl)
1325 {
1326 --count;
1327 bp = NULL; /* use this buffer as new starting point */
1328 }
1329 if (bp == buf)
1330 {
1331 /* back where we started, didn't find anything. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001332 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 return FAIL;
1334 }
1335 }
1336 }
1337
1338 if (buf == NULL) /* could not find it */
1339 {
1340 if (start == DOBUF_FIRST)
1341 {
1342 /* don't warn when deleting */
1343 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001344 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 }
1346 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001347 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001349 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 return FAIL;
1351 }
1352
1353#ifdef FEAT_GUI
1354 need_mouse_correct = TRUE;
1355#endif
1356
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 /*
1358 * delete buffer buf from memory and/or the list
1359 */
1360 if (unload)
1361 {
1362 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001363 bufref_T bufref;
1364
Bram Moolenaar94f01952018-09-01 15:30:03 +02001365 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001366 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001367
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001368 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369
1370 /* When unloading or deleting a buffer that's already unloaded and
1371 * unlisted: fail silently. */
1372 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1373 return FAIL;
1374
1375 if (!forceit && bufIsChanged(buf))
1376 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001377#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 if ((p_confirm || cmdmod.confirm) && p_write)
1379 {
1380 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001381 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 /* Autocommand deleted buffer, oops! It's not changed
1383 * now. */
1384 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001385 /* If it's still changed fail silently, the dialog already
1386 * mentioned why it fails. */
1387 if (bufIsChanged(buf))
1388 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001390 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001391#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001393 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 buf->b_fnum);
1395 return FAIL;
1396 }
1397 }
1398
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001399 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001400 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001401 end_visual_mode();
1402
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 /*
1404 * If deleting the last (listed) buffer, make it empty.
1405 * The last (listed) buffer cannot be unloaded.
1406 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001407 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 if (bp->b_p_bl && bp != buf)
1409 break;
1410 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001411 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 /*
1414 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001415 * (unless it's the only window). Repeat this so long as we end up in
1416 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001418 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001419 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001420 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001421 {
1422 if (win_close(curwin, FALSE) == FAIL)
1423 break;
1424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425
1426 /*
1427 * If the buffer to be deleted is not the current one, delete it here.
1428 */
1429 if (buf != curbuf)
1430 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001431 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001432 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001433 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 return OK;
1435 }
1436
1437 /*
1438 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001439 * There should be another, otherwise it would have been handled
1440 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001441 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 * Then prefer the buffer we most recently visited.
1443 * Else try to find one that is loaded, after the current buffer,
1444 * then before the current buffer.
1445 * Finally use any buffer.
1446 */
1447 buf = NULL; /* selected buffer */
1448 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001449 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1450 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001452 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 {
1454 int jumpidx;
1455
1456 jumpidx = curwin->w_jumplistidx - 1;
1457 if (jumpidx < 0)
1458 jumpidx = curwin->w_jumplistlen - 1;
1459
1460 forward = jumpidx;
1461 while (jumpidx != curwin->w_jumplistidx)
1462 {
1463 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1464 if (buf != NULL)
1465 {
1466 if (buf == curbuf || !buf->b_p_bl)
1467 buf = NULL; /* skip current and unlisted bufs */
1468 else if (buf->b_ml.ml_mfp == NULL)
1469 {
1470 /* skip unloaded buf, but may keep it for later */
1471 if (bp == NULL)
1472 bp = buf;
1473 buf = NULL;
1474 }
1475 }
1476 if (buf != NULL) /* found a valid buffer: stop searching */
1477 break;
1478 /* advance to older entry in jump list */
1479 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1480 break;
1481 if (--jumpidx < 0)
1482 jumpidx = curwin->w_jumplistlen - 1;
1483 if (jumpidx == forward) /* List exhausted for sure */
1484 break;
1485 }
1486 }
1487#endif
1488
1489 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1490 {
1491 forward = TRUE;
1492 buf = curbuf->b_next;
1493 for (;;)
1494 {
1495 if (buf == NULL)
1496 {
1497 if (!forward) /* tried both directions */
1498 break;
1499 buf = curbuf->b_prev;
1500 forward = FALSE;
1501 continue;
1502 }
1503 /* in non-help buffer, try to skip help buffers, and vv */
1504 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1505 {
1506 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1507 break;
1508 if (bp == NULL) /* remember unloaded buf for later */
1509 bp = buf;
1510 }
1511 if (forward)
1512 buf = buf->b_next;
1513 else
1514 buf = buf->b_prev;
1515 }
1516 }
1517 if (buf == NULL) /* No loaded buffer, use unloaded one */
1518 buf = bp;
1519 if (buf == NULL) /* No loaded buffer, find listed one */
1520 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001521 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 if (buf->b_p_bl && buf != curbuf)
1523 break;
1524 }
1525 if (buf == NULL) /* Still no buffer, just take one */
1526 {
1527 if (curbuf->b_next != NULL)
1528 buf = curbuf->b_next;
1529 else
1530 buf = curbuf->b_prev;
1531 }
1532 }
1533
Bram Moolenaara02471e2014-01-10 16:43:14 +01001534 if (buf == NULL)
1535 {
1536 /* Autocommands must have wiped out all other buffers. Only option
1537 * now is to make the current buffer empty. */
1538 return empty_curbuf(FALSE, forceit, action);
1539 }
1540
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 /*
1542 * make buf current buffer
1543 */
1544 if (action == DOBUF_SPLIT) /* split window first */
1545 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001546 /* If 'switchbuf' contains "useopen": jump to first window containing
1547 * "buf" if one exists */
1548 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001549 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001550 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001551 * page containing "buf" if one exists */
1552 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 return OK;
1554 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 return FAIL;
1556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557
1558 /* go to current buffer - nothing to do */
1559 if (buf == curbuf)
1560 return OK;
1561
1562 /*
1563 * Check if the current buffer may be abandoned.
1564 */
1565 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1566 {
1567#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1568 if ((p_confirm || cmdmod.confirm) && p_write)
1569 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001570 bufref_T bufref;
1571
1572 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001574 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 /* Autocommand deleted buffer, oops! */
1576 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 }
1578 if (bufIsChanged(curbuf))
1579#endif
1580 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001581 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 return FAIL;
1583 }
1584 }
1585
1586 /* Go to the other buffer. */
1587 set_curbuf(buf, action);
1588
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001590 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001592#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 if (aborting()) /* autocmds may abort script processing */
1594 return FAIL;
1595#endif
1596
1597 return OK;
1598}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599
1600/*
1601 * Set current buffer to "buf". Executes autocommands and closes current
1602 * buffer. "action" tells how to close the current buffer:
1603 * DOBUF_GOTO free or hide it
1604 * DOBUF_SPLIT nothing
1605 * DOBUF_UNLOAD unload it
1606 * DOBUF_DEL delete it
1607 * DOBUF_WIPE wipe it out
1608 */
1609 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001610set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611{
1612 buf_T *prevbuf;
1613 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1614 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001615#ifdef FEAT_SYN_HL
1616 long old_tw = curbuf->b_p_tw;
1617#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001618 bufref_T newbufref;
1619 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620
1621 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001622 if (!cmdmod.keepalt)
1623 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001624 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 /* Don't restart Select mode after switching to another buffer. */
1627 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001629 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1630 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001632 set_bufref(&prevbufref, prevbuf);
1633 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001635 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1636 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001637 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001638 || (bufref_valid(&prevbufref)
1639 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001640#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001641 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001643 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001645#ifdef FEAT_SYN_HL
1646 if (prevbuf == curwin->w_buffer)
1647 reset_synblock(curwin);
1648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001650 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001651#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001652 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001654 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001656 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001657 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001658 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001659 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1661 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001662 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001663 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001664 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001665 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001666 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001667 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001669 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001670 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001671 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1672 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001673#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001674 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001676 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001677 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001679#ifdef FEAT_SYN_HL
1680 if (old_tw != curbuf->b_p_tw)
1681 check_colorcolumn(curwin);
1682#endif
1683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684}
1685
1686/*
1687 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001688 * Old curbuf must have been abandoned already! This also means "curbuf" may
1689 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 */
1691 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001692enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693{
1694 /* Copy buffer and window local option values. Not for a help buffer. */
1695 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1696 if (!buf->b_help)
1697 get_winopts(buf);
1698#ifdef FEAT_FOLDING
1699 else
1700 /* Remove all folds in the window. */
1701 clearFolding(curwin);
1702 foldUpdateAll(curwin); /* update folds (later). */
1703#endif
1704
1705 /* Get the buffer in the current window. */
1706 curwin->w_buffer = buf;
1707 curbuf = buf;
1708 ++curbuf->b_nwindows;
1709
1710#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001711 if (curwin->w_p_diff)
1712 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713#endif
1714
Bram Moolenaara971b822011-09-14 14:43:25 +02001715#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001716 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001717#endif
1718
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 /* Cursor on first line by default. */
1720 curwin->w_cursor.lnum = 1;
1721 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001724 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001726 /* mark cursor position as being invalid */
1727 curwin->w_valid = 0;
1728
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001729 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1730 curbuf->b_last_cursor.col, TRUE);
1731
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 /* Make sure the buffer is loaded. */
1733 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001734 {
1735 /* If there is no filetype, allow for detecting one. Esp. useful for
1736 * ":ball" used in a autocommand. If there already is a filetype we
1737 * might prefer to keep it. */
1738 if (*curbuf->b_p_ft == NUL)
1739 did_filetype = FALSE;
1740
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001741 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 else
1744 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001745 if (!msg_silent && !shortmess(SHM_FILEINFO))
1746 need_fileinfo = TRUE; // display file info after redraw
1747
1748 // check if file changed
1749 (void)buf_check_timestamp(curbuf, FALSE);
1750
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001752#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1756 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 }
1758
1759 /* If autocommands did not change the cursor position, restore cursor lnum
1760 * and possibly cursor col. */
1761 if (curwin->w_cursor.lnum == 1 && inindent(0))
1762 buflist_getfpos();
1763
1764 check_arg_idx(curwin); /* check for valid arg_idx */
1765#ifdef FEAT_TITLE
1766 maketitle();
1767#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001768 /* when autocmds didn't change it */
1769 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1771
Bram Moolenaar009b2592004-10-24 19:18:58 +00001772#ifdef FEAT_NETBEANS_INTG
1773 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001774 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001775#endif
1776
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001777 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001778 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779
1780#ifdef FEAT_KEYMAP
1781 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001782 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001784#ifdef FEAT_SPELL
1785 /* May need to set the spell language. Can only do this after the buffer
1786 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001787 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1788 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001789#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001790#ifdef FEAT_VIMINFO
1791 curbuf->b_last_used = vim_time();
1792#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001793
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 redraw_later(NOT_VALID);
1795}
1796
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001797#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1798/*
1799 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001800 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001801 */
1802 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001803do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001804{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001805 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001806 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001807 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001808 shorten_fnames(TRUE);
1809}
1810#endif
1811
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001812 void
1813no_write_message(void)
1814{
1815#ifdef FEAT_TERMINAL
1816 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001817 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001818 else
1819#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001820 emsg(_("E37: No write since last change (add ! to override)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001821}
1822
1823 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001824no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001825{
1826#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001827 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001828 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001829 else
1830#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001831 emsg(_("E37: No write since last change"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001832}
1833
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834/*
1835 * functions for dealing with the buffer list
1836 */
1837
Bram Moolenaar480778b2016-07-14 22:09:39 +02001838static int top_file_num = 1; /* highest file number */
1839
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001841 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1842 * only one window. That means it can be re-used.
1843 */
1844 int
1845curbuf_reusable(void)
1846{
1847 return (curbuf != NULL
1848 && curbuf->b_ffname == NULL
1849 && curbuf->b_nwindows <= 1
1850 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001851#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001852 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001853#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001854 && !curbufIsChanged());
1855}
1856
1857/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 * Add a file name to the buffer list. Return a pointer to the buffer.
1859 * If the same file name already exists return a pointer to that buffer.
1860 * If it does not exist, or if fname == NULL, a new entry is created.
1861 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1862 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1863 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001864 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001865 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1866 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 * This is the ONLY way to create a new buffer.
1868 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001870buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001871 char_u *ffname_arg, // full path of fname or relative
1872 char_u *sfname_arg, // short fname or NULL
1873 linenr_T lnum, // preferred cursor line
1874 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001876 char_u *ffname = ffname_arg;
1877 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 buf_T *buf;
1879#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001880 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881#endif
1882
Bram Moolenaar480778b2016-07-14 22:09:39 +02001883 if (top_file_num == 1)
1884 hash_init(&buf_hashtab);
1885
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001886 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887
1888 /*
1889 * If file name already exists in the list, update the entry.
1890 */
1891#ifdef UNIX
1892 /* On Unix we can use inode numbers when the file exists. Works better
1893 * for hard links. */
1894 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1895 st.st_dev = (dev_T)-1;
1896#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001897 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898#ifdef UNIX
1899 buflist_findname_stat(ffname, &st)
1900#else
1901 buflist_findname(ffname)
1902#endif
1903 ) != NULL)
1904 {
1905 vim_free(ffname);
1906 if (lnum != 0)
1907 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001908
1909 if ((flags & BLN_NOOPT) == 0)
1910 /* copy the options now, if 'cpo' doesn't have 's' and not done
1911 * already */
1912 buf_copy_options(buf, 0);
1913
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1915 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001916 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001917
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001919 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001921 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001922 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001923 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001924 return NULL;
1925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 }
1927 return buf;
1928 }
1929
1930 /*
1931 * If the current buffer has no name and no contents, use the current
1932 * buffer. Otherwise: Need to allocate a new buffer structure.
1933 *
1934 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001935 * (A spell file buffer is allocated in spell.c, but that's not a normal
1936 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 */
1938 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001939 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 {
1941 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 /* It's like this buffer is deleted. Watch out for autocommands that
1943 * change curbuf! If that happens, allocate a new buffer anyway. */
1944 if (curbuf->b_p_bl)
1945 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1946 if (buf == curbuf)
1947 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001948#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001949 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 {
1954 /* Make sure 'bufhidden' and 'buftype' are empty */
1955 clear_string_option(&buf->b_p_bh);
1956 clear_string_option(&buf->b_p_bt);
1957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 }
1959 if (buf != curbuf || curbuf == NULL)
1960 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001961 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 if (buf == NULL)
1963 {
1964 vim_free(ffname);
1965 return NULL;
1966 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001967#ifdef FEAT_EVAL
1968 /* init b: variables */
1969 buf->b_vars = dict_alloc();
1970 if (buf->b_vars == NULL)
1971 {
1972 vim_free(ffname);
1973 vim_free(buf);
1974 return NULL;
1975 }
1976 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1977#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001978 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 }
1980
1981 if (ffname != NULL)
1982 {
1983 buf->b_ffname = ffname;
1984 buf->b_sfname = vim_strsave(sfname);
1985 }
1986
1987 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001988 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989
1990 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1991 || buf->b_wininfo == NULL)
1992 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001993 if (buf->b_sfname != buf->b_ffname)
1994 VIM_CLEAR(buf->b_sfname);
1995 else
1996 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01001997 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (buf != curbuf)
1999 free_buffer(buf);
2000 return NULL;
2001 }
2002
2003 if (buf == curbuf)
2004 {
2005 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002006 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 if (buf != curbuf) /* autocommands deleted the buffer! */
2008 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002009#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002010 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 return NULL;
2012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002014
2015 /* Init the options. */
2016 buf->b_p_initialized = FALSE;
2017 buf_copy_options(buf, BCO_ENTER);
2018
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019#ifdef FEAT_KEYMAP
2020 /* need to reload lmaps and set b:keymap_name */
2021 curbuf->b_kmap_state |= KEYMAP_INIT;
2022#endif
2023 }
2024 else
2025 {
2026 /*
2027 * put new buffer at the end of the buffer list
2028 */
2029 buf->b_next = NULL;
2030 if (firstbuf == NULL) /* buffer list is empty */
2031 {
2032 buf->b_prev = NULL;
2033 firstbuf = buf;
2034 }
2035 else /* append new buffer at end of list */
2036 {
2037 lastbuf->b_next = buf;
2038 buf->b_prev = lastbuf;
2039 }
2040 lastbuf = buf;
2041
2042 buf->b_fnum = top_file_num++;
2043 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2044 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002045 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 if (emsg_silent == 0)
2047 {
2048 out_flush();
2049 ui_delay(3000L, TRUE); /* make sure it is noticed */
2050 }
2051 top_file_num = 1;
2052 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002053 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054
2055 /*
2056 * Always copy the options from the current buffer.
2057 */
2058 buf_copy_options(buf, BCO_ALWAYS);
2059 }
2060
2061 buf->b_wininfo->wi_fpos.lnum = lnum;
2062 buf->b_wininfo->wi_win = curwin;
2063
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002064#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002065 hash_init(&buf->b_s.b_keywtab);
2066 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067#endif
2068
2069 buf->b_fname = buf->b_sfname;
2070#ifdef UNIX
2071 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002072 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 else
2074 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002075 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 buf->b_dev = st.st_dev;
2077 buf->b_ino = st.st_ino;
2078 }
2079#endif
2080 buf->b_u_synced = TRUE;
2081 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002082 if (flags & BLN_DUMMY)
2083 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 buf_clear_file(buf);
2085 clrallmarks(buf); /* clear marks */
2086 fmarks_check_names(buf); /* check file marks for this file */
2087 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 if (!(flags & BLN_DUMMY))
2089 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002090 bufref_T bufref;
2091
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002092 /* Tricky: these autocommands may change the buffer list. They could
2093 * also split the window with re-using the one empty buffer. This may
2094 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002095 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002096 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002097 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002098 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002100 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002101 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002102 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002103 return NULL;
2104 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002105#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002106 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002109 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111 return buf;
2112}
2113
2114/*
2115 * Free the memory for the options of a buffer.
2116 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2117 * 'fileencoding'.
2118 */
2119 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002120free_buf_options(
2121 buf_T *buf,
2122 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123{
2124 if (free_p_ff)
2125 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 clear_string_option(&buf->b_p_bh);
2129 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 }
2131#ifdef FEAT_FIND_ID
2132 clear_string_option(&buf->b_p_def);
2133 clear_string_option(&buf->b_p_inc);
2134# ifdef FEAT_EVAL
2135 clear_string_option(&buf->b_p_inex);
2136# endif
2137#endif
2138#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2139 clear_string_option(&buf->b_p_inde);
2140 clear_string_option(&buf->b_p_indk);
2141#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002142#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2143 clear_string_option(&buf->b_p_bexpr);
2144#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002145#if defined(FEAT_CRYPT)
2146 clear_string_option(&buf->b_p_cm);
2147#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002148 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002149#if defined(FEAT_EVAL)
2150 clear_string_option(&buf->b_p_fex);
2151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152#ifdef FEAT_CRYPT
2153 clear_string_option(&buf->b_p_key);
2154#endif
2155 clear_string_option(&buf->b_p_kp);
2156 clear_string_option(&buf->b_p_mps);
2157 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002158 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002160#ifdef FEAT_VARTABS
2161 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002162 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002163 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002164 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002165 buf->b_p_vsts_array = NULL;
2166 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002167 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169#ifdef FEAT_KEYMAP
2170 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002171 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 ga_clear(&buf->b_kmap_ga);
2173#endif
2174#ifdef FEAT_COMMENTS
2175 clear_string_option(&buf->b_p_com);
2176#endif
2177#ifdef FEAT_FOLDING
2178 clear_string_option(&buf->b_p_cms);
2179#endif
2180 clear_string_option(&buf->b_p_nf);
2181#ifdef FEAT_SYN_HL
2182 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002183 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002184#endif
2185#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002186 clear_string_option(&buf->b_s.b_p_spc);
2187 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002188 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002189 buf->b_s.b_cap_prog = NULL;
2190 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191#endif
2192#ifdef FEAT_SEARCHPATH
2193 clear_string_option(&buf->b_p_sua);
2194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196#ifdef FEAT_CINDENT
2197 clear_string_option(&buf->b_p_cink);
2198 clear_string_option(&buf->b_p_cino);
2199#endif
2200#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2201 clear_string_option(&buf->b_p_cinw);
2202#endif
2203#ifdef FEAT_INS_EXPAND
2204 clear_string_option(&buf->b_p_cpt);
2205#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002206#ifdef FEAT_COMPL_FUNC
2207 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002208 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210#ifdef FEAT_QUICKFIX
2211 clear_string_option(&buf->b_p_gp);
2212 clear_string_option(&buf->b_p_mp);
2213 clear_string_option(&buf->b_p_efm);
2214#endif
2215 clear_string_option(&buf->b_p_ep);
2216 clear_string_option(&buf->b_p_path);
2217 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002218 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002219#ifdef FEAT_EVAL
2220 clear_string_option(&buf->b_p_tfu);
2221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222#ifdef FEAT_INS_EXPAND
2223 clear_string_option(&buf->b_p_dict);
2224 clear_string_option(&buf->b_p_tsr);
2225#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002226#ifdef FEAT_TEXTOBJ
2227 clear_string_option(&buf->b_p_qe);
2228#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002230 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002231#ifdef FEAT_LISP
2232 clear_string_option(&buf->b_p_lw);
2233#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002234 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002235 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236}
2237
2238/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002239 * Get alternate file "n".
2240 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2241 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 * if (options & GETF_SETMARK) call setpcmark()
2243 * if (options & GETF_ALT) we are jumping to an alternate file.
2244 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2245 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002246 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 */
2248 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002249buflist_getfile(
2250 int n,
2251 linenr_T lnum,
2252 int options,
2253 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254{
2255 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 pos_T *fpos;
2258 colnr_T col;
2259
2260 buf = buflist_findnr(n);
2261 if (buf == NULL)
2262 {
2263 if ((options & GETF_ALT) && n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002264 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002266 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 return FAIL;
2268 }
2269
2270 /* if alternate file is the current buffer, nothing to do */
2271 if (buf == curbuf)
2272 return OK;
2273
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002274 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002275 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002276 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002278 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002279 if (curbuf_locked())
2280 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281
2282 /* altfpos may be changed by getfile(), get it now */
2283 if (lnum == 0)
2284 {
2285 fpos = buflist_findfpos(buf);
2286 lnum = fpos->lnum;
2287 col = fpos->col;
2288 }
2289 else
2290 col = 0;
2291
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 if (options & GETF_SWITCH)
2293 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002294 /* If 'switchbuf' contains "useopen": jump to first window containing
2295 * "buf" if one exists */
2296 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002298
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002299 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002300 * page containing "buf" if one exists */
2301 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002302 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002303
2304 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2305 * current buffer isn't empty: open new tab or window */
2306 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002307 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002309 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002310 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002311 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2312 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002314 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
2316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317
2318 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002319 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2320 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 {
2322 --RedrawingDisabled;
2323
2324 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2325 if (!p_sol && col != 0)
2326 {
2327 curwin->w_cursor.col = col;
2328 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 curwin->w_set_curswant = TRUE;
2331 }
2332 return OK;
2333 }
2334 --RedrawingDisabled;
2335 return FAIL;
2336}
2337
2338/*
2339 * go to the last know line number for the current buffer
2340 */
2341 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002342buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343{
2344 pos_T *fpos;
2345
2346 fpos = buflist_findfpos(curbuf);
2347
2348 curwin->w_cursor.lnum = fpos->lnum;
2349 check_cursor_lnum();
2350
2351 if (p_sol)
2352 curwin->w_cursor.col = 0;
2353 else
2354 {
2355 curwin->w_cursor.col = fpos->col;
2356 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 curwin->w_set_curswant = TRUE;
2359 }
2360}
2361
Bram Moolenaar81695252004-12-29 20:58:21 +00002362#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2363/*
2364 * Find file in buffer list by name (it has to be for the current window).
2365 * Returns NULL if not found.
2366 */
2367 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002368buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002369{
2370 char_u *ffname;
2371 buf_T *buf = NULL;
2372
2373 /* First make the name into a full path name */
2374 ffname = FullName_save(fname,
2375#ifdef UNIX
2376 TRUE /* force expansion, get rid of symbolic links */
2377#else
2378 FALSE
2379#endif
2380 );
2381 if (ffname != NULL)
2382 {
2383 buf = buflist_findname(ffname);
2384 vim_free(ffname);
2385 }
2386 return buf;
2387}
2388#endif
2389
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390/*
2391 * Find file in buffer list by name (it has to be for the current window).
2392 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002393 * Skips dummy buffers.
2394 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 */
2396 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002397buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398{
2399#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002400 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
2402 if (mch_stat((char *)ffname, &st) < 0)
2403 st.st_dev = (dev_T)-1;
2404 return buflist_findname_stat(ffname, &st);
2405}
2406
2407/*
2408 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2409 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002410 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 */
2412 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002413buflist_findname_stat(
2414 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002415 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416{
2417#endif
2418 buf_T *buf;
2419
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002420 /* Start at the last buffer, expect to find a match sooner. */
2421 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002422 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423#ifdef UNIX
2424 , stp
2425#endif
2426 ))
2427 return buf;
2428 return NULL;
2429}
2430
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431/*
2432 * Find file in buffer list by a regexp pattern.
2433 * Return fnum of the found buffer.
2434 * Return < 0 for error.
2435 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002437buflist_findpat(
2438 char_u *pattern,
2439 char_u *pattern_end, /* pointer to first char after pattern */
2440 int unlisted, /* find unlisted buffers */
2441 int diffmode UNUSED, /* find diff-mode buffers only */
2442 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443{
2444 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 int match = -1;
2446 int find_listed;
2447 char_u *pat;
2448 char_u *patend;
2449 int attempt;
2450 char_u *p;
2451 int toggledollar;
2452
2453 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2454 {
2455 if (*pattern == '%')
2456 match = curbuf->b_fnum;
2457 else
2458 match = curwin->w_alt_fnum;
2459#ifdef FEAT_DIFF
2460 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2461 match = -1;
2462#endif
2463 }
2464
2465 /*
2466 * Try four ways of matching a listed buffer:
2467 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002468 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 * attempt == 2: with '$' at end (only match at end)
2470 * attempt == 3: with '^' at start and '$' at end (only full match)
2471 * Repeat this for finding an unlisted buffer if there was no matching
2472 * listed buffer.
2473 */
2474 else
2475 {
2476 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2477 if (pat == NULL)
2478 return -1;
2479 patend = pat + STRLEN(pat) - 1;
2480 toggledollar = (patend > pat && *patend == '$');
2481
2482 /* First try finding a listed buffer. If not found and "unlisted"
2483 * is TRUE, try finding an unlisted buffer. */
2484 find_listed = TRUE;
2485 for (;;)
2486 {
2487 for (attempt = 0; attempt <= 3; ++attempt)
2488 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002489 regmatch_T regmatch;
2490
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 /* may add '^' and '$' */
2492 if (toggledollar)
2493 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2494 p = pat;
2495 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2496 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002497 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2498 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 {
2500 vim_free(pat);
2501 return -1;
2502 }
2503
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002504 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 if (buf->b_p_bl == find_listed
2506#ifdef FEAT_DIFF
2507 && (!diffmode || diff_mode_buf(buf))
2508#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002509 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002511 if (curtab_only)
2512 {
2513 /* Ignore the match if the buffer is not open in
2514 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002515 win_T *wp;
2516
Bram Moolenaar29323592016-07-24 22:04:11 +02002517 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002518 if (wp->w_buffer == buf)
2519 break;
2520 if (wp == NULL)
2521 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 if (match >= 0) /* already found a match */
2524 {
2525 match = -2;
2526 break;
2527 }
2528 match = buf->b_fnum; /* remember first match */
2529 }
2530
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002531 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 if (match >= 0) /* found one match */
2533 break;
2534 }
2535
2536 /* Only search for unlisted buffers if there was no match with
2537 * a listed buffer. */
2538 if (!unlisted || !find_listed || match != -1)
2539 break;
2540 find_listed = FALSE;
2541 }
2542
2543 vim_free(pat);
2544 }
2545
2546 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002547 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002549 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 return match;
2551}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
2553#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2554
2555/*
2556 * Find all buffer names that match.
2557 * For command line expansion of ":buf" and ":sbuf".
2558 * Return OK if matches found, FAIL otherwise.
2559 */
2560 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002561ExpandBufnames(
2562 char_u *pat,
2563 int *num_file,
2564 char_u ***file,
2565 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 int count = 0;
2568 buf_T *buf;
2569 int round;
2570 char_u *p;
2571 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002572 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573
2574 *num_file = 0; /* return values in case of FAIL */
2575 *file = NULL;
2576
Bram Moolenaar05159a02005-02-26 23:04:13 +00002577 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2578 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002580 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002581 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002583 STRCPY(patc, "\\(^\\|[\\/]\\)");
2584 STRCPY(patc + 11, pat + 1);
2585 }
2586 else
2587 patc = pat;
2588
2589 /*
2590 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002591 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002592 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002593 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002594 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002595 regmatch_T regmatch;
2596
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002597 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002598 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002599 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2600 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002601 {
2602 if (patc != pat)
2603 vim_free(patc);
2604 return FAIL;
2605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606
2607 /*
2608 * round == 1: Count the matches.
2609 * round == 2: Build the array to keep the matches.
2610 */
2611 for (round = 1; round <= 2; ++round)
2612 {
2613 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002614 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 {
2616 if (!buf->b_p_bl) /* skip unlisted buffers */
2617 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002618 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 if (p != NULL)
2620 {
2621 if (round == 1)
2622 ++count;
2623 else
2624 {
2625 if (options & WILD_HOME_REPLACE)
2626 p = home_replace_save(buf, p);
2627 else
2628 p = vim_strsave(p);
2629 (*file)[count++] = p;
2630 }
2631 }
2632 }
2633 if (count == 0) /* no match found, break here */
2634 break;
2635 if (round == 1)
2636 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002637 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (*file == NULL)
2639 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002640 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002641 if (patc != pat)
2642 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 return FAIL;
2644 }
2645 }
2646 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002647 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 if (count) /* match(es) found, break here */
2649 break;
2650 }
2651
Bram Moolenaar05159a02005-02-26 23:04:13 +00002652 if (patc != pat)
2653 vim_free(patc);
2654
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 *num_file = count;
2656 return (count == 0 ? FAIL : OK);
2657}
2658
2659#endif /* FEAT_CMDL_COMPL */
2660
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661/*
2662 * Check for a match on the file name for buffer "buf" with regprog "prog".
2663 */
2664 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002665buflist_match(
2666 regmatch_T *rmp,
2667 buf_T *buf,
2668 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669{
2670 char_u *match;
2671
2672 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002673 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002675 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677 return match;
2678}
2679
2680/*
2681 * Try matching the regexp in "prog" with file name "name".
2682 * Return "name" when there is a match, NULL when not.
2683 */
2684 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002685fname_match(
2686 regmatch_T *rmp,
2687 char_u *name,
2688 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689{
2690 char_u *match = NULL;
2691 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692
2693 if (name != NULL)
2694 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002695 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002696 rmp->rm_ic = p_fic || ignore_case;
2697 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 match = name;
2699 else
2700 {
2701 /* Replace $(HOME) with '~' and try matching again. */
2702 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002703 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 match = name;
2705 vim_free(p);
2706 }
2707 }
2708
2709 return match;
2710}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711
2712/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002713 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 */
2715 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002716buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002718 char_u key[VIM_SIZEOF_INT * 2 + 1];
2719 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720
2721 if (nr == 0)
2722 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002723 sprintf((char *)key, "%x", nr);
2724 hi = hash_find(&buf_hashtab, key);
2725
2726 if (!HASHITEM_EMPTY(hi))
2727 return (buf_T *)(hi->hi_key
2728 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 return NULL;
2730}
2731
2732/*
2733 * Get name of file 'n' in the buffer list.
2734 * When the file has no name an empty string is returned.
2735 * home_replace() is used to shorten the file name (used for marks).
2736 * Returns a pointer to allocated memory, of NULL when failed.
2737 */
2738 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002739buflist_nr2name(
2740 int n,
2741 int fullname,
2742 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743{
2744 buf_T *buf;
2745
2746 buf = buflist_findnr(n);
2747 if (buf == NULL)
2748 return NULL;
2749 return home_replace_save(helptail ? buf : NULL,
2750 fullname ? buf->b_ffname : buf->b_fname);
2751}
2752
2753/*
2754 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2755 * When "copy_options" is TRUE save the local window option values.
2756 * When "lnum" is 0 only do the options.
2757 */
2758 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002759buflist_setfpos(
2760 buf_T *buf,
2761 win_T *win,
2762 linenr_T lnum,
2763 colnr_T col,
2764 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765{
2766 wininfo_T *wip;
2767
2768 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2769 if (wip->wi_win == win)
2770 break;
2771 if (wip == NULL)
2772 {
2773 /* allocate a new entry */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002774 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 if (wip == NULL)
2776 return;
2777 wip->wi_win = win;
2778 if (lnum == 0) /* set lnum even when it's 0 */
2779 lnum = 1;
2780 }
2781 else
2782 {
2783 /* remove the entry from the list */
2784 if (wip->wi_prev)
2785 wip->wi_prev->wi_next = wip->wi_next;
2786 else
2787 buf->b_wininfo = wip->wi_next;
2788 if (wip->wi_next)
2789 wip->wi_next->wi_prev = wip->wi_prev;
2790 if (copy_options && wip->wi_optset)
2791 {
2792 clear_winopt(&wip->wi_opt);
2793#ifdef FEAT_FOLDING
2794 deleteFoldRecurse(&wip->wi_folds);
2795#endif
2796 }
2797 }
2798 if (lnum != 0)
2799 {
2800 wip->wi_fpos.lnum = lnum;
2801 wip->wi_fpos.col = col;
2802 }
2803 if (copy_options)
2804 {
2805 /* Save the window-specific option values. */
2806 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2807#ifdef FEAT_FOLDING
2808 wip->wi_fold_manual = win->w_fold_manual;
2809 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2810#endif
2811 wip->wi_optset = TRUE;
2812 }
2813
2814 /* insert the entry in front of the list */
2815 wip->wi_next = buf->b_wininfo;
2816 buf->b_wininfo = wip;
2817 wip->wi_prev = NULL;
2818 if (wip->wi_next)
2819 wip->wi_next->wi_prev = wip;
2820
2821 return;
2822}
2823
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002824#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002825/*
2826 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2827 * page. That's because a diff is local to a tab page.
2828 */
2829 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002830wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002831{
2832 win_T *wp;
2833
2834 if (wip->wi_opt.wo_diff)
2835 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002836 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002837 /* return FALSE when it's a window in the current tab page, thus
2838 * the buffer was in diff mode here */
2839 if (wip->wi_win == wp)
2840 return FALSE;
2841 return TRUE;
2842 }
2843 return FALSE;
2844}
2845#endif
2846
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847/*
2848 * Find info for the current window in buffer "buf".
2849 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002850 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2851 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 * Returns NULL when there isn't any info.
2853 */
2854 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002855find_wininfo(
2856 buf_T *buf,
2857 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858{
2859 wininfo_T *wip;
2860
2861 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002862 if (wip->wi_win == curwin
2863#ifdef FEAT_DIFF
2864 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2865#endif
2866 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002868
2869 /* If no wininfo for curwin, use the first in the list (that doesn't have
2870 * 'diff' set and is in another tab page). */
2871 if (wip == NULL)
2872 {
2873#ifdef FEAT_DIFF
2874 if (skip_diff_buffer)
2875 {
2876 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2877 if (!wininfo_other_tab_diff(wip))
2878 break;
2879 }
2880 else
2881#endif
2882 wip = buf->b_wininfo;
2883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 return wip;
2885}
2886
2887/*
2888 * Reset the local window options to the values last used in this window.
2889 * If the buffer wasn't used in this window before, use the values from
2890 * the most recently used window. If the values were never set, use the
2891 * global values for the window.
2892 */
2893 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002894get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895{
2896 wininfo_T *wip;
2897
2898 clear_winopt(&curwin->w_onebuf_opt);
2899#ifdef FEAT_FOLDING
2900 clearFolding(curwin);
2901#endif
2902
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002903 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002904 if (wip != NULL && wip->wi_win != NULL
2905 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002907 /* The buffer is currently displayed in the window: use the actual
2908 * option values instead of the saved (possibly outdated) values. */
2909 win_T *wp = wip->wi_win;
2910
2911 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2912#ifdef FEAT_FOLDING
2913 curwin->w_fold_manual = wp->w_fold_manual;
2914 curwin->w_foldinvalid = TRUE;
2915 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2916#endif
2917 }
2918 else if (wip != NULL && wip->wi_optset)
2919 {
2920 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2922#ifdef FEAT_FOLDING
2923 curwin->w_fold_manual = wip->wi_fold_manual;
2924 curwin->w_foldinvalid = TRUE;
2925 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2926#endif
2927 }
2928 else
2929 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2930
2931#ifdef FEAT_FOLDING
2932 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2933 if (p_fdls >= 0)
2934 curwin->w_p_fdl = p_fdls;
2935#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002936#ifdef FEAT_SYN_HL
2937 check_colorcolumn(curwin);
2938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939}
2940
2941/*
2942 * Find the position (lnum and col) for the buffer 'buf' for the current
2943 * window.
2944 * Returns a pointer to no_position if no position is found.
2945 */
2946 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002947buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002950 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002952 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 if (wip != NULL)
2954 return &(wip->wi_fpos);
2955 else
2956 return &no_position;
2957}
2958
2959/*
2960 * Find the lnum for the buffer 'buf' for the current window.
2961 */
2962 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002963buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964{
2965 return buflist_findfpos(buf)->lnum;
2966}
2967
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002969 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002972buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 buf_T *buf;
2975 int len;
2976 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002977 int ro_char;
2978 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02002979#ifdef FEAT_TERMINAL
2980 int job_running;
2981 int job_none_open;
2982#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983
2984 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2985 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02002986#ifdef FEAT_TERMINAL
2987 job_running = term_job_running(buf->b_term);
2988 job_none_open = job_running && term_none_open(buf->b_term);
2989#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002991 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2992 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2993 || (vim_strchr(eap->arg, '+')
2994 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2995 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02002996 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02002997 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02002998 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2999#ifdef FEAT_TERMINAL
3000 || (vim_strchr(eap->arg, 'R')
3001 && (!job_running || (job_running && job_none_open)))
3002 || (vim_strchr(eap->arg, '?')
3003 && (!job_running || (job_running && !job_none_open)))
3004 || (vim_strchr(eap->arg, 'F')
3005 && (job_running || buf->b_term == NULL))
3006#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003007 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3008 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3009 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3010 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3011 || (vim_strchr(eap->arg, '#')
3012 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003015 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 else
3017 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003018 if (message_filtered(NameBuff))
3019 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003021 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3022 : (bufIsChanged(buf) ? '+' : ' ');
3023#ifdef FEAT_TERMINAL
3024 if (term_job_running(buf->b_term))
3025 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003026 if (term_none_open(buf->b_term))
3027 ro_char = '?';
3028 else
3029 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003030 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3031 * closing, but it's not actually changed. */
3032 }
3033 else if (buf->b_term != NULL)
3034 ro_char = 'F';
3035 else
3036#endif
3037 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3038
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003039 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003040 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 buf->b_fnum,
3042 buf->b_p_bl ? ' ' : 'u',
3043 buf == curbuf ? '%' :
3044 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3045 buf->b_ml.ml_mfp == NULL ? ' ' :
3046 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003047 ro_char,
3048 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003049 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003050 if (len > IOSIZE - 20)
3051 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052
3053 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 i = 40 - vim_strsize(IObuff);
3055 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003057 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003058 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3059 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003060 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 msg_outtrans(IObuff);
3062 out_flush(); /* output one line at a time */
3063 ui_breakcheck();
3064 }
3065}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066
3067/*
3068 * Get file name and line number for file 'fnum'.
3069 * Used by DoOneCmd() for translating '%' and '#'.
3070 * Used by insert_reg() and cmdline_paste() for '#' register.
3071 * Return FAIL if not found, OK for success.
3072 */
3073 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003074buflist_name_nr(
3075 int fnum,
3076 char_u **fname,
3077 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078{
3079 buf_T *buf;
3080
3081 buf = buflist_findnr(fnum);
3082 if (buf == NULL || buf->b_fname == NULL)
3083 return FAIL;
3084
3085 *fname = buf->b_fname;
3086 *lnum = buflist_findlnum(buf);
3087
3088 return OK;
3089}
3090
3091/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003092 * Set the file name for "buf"' to "ffname_arg", short file name to
3093 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 * The file name with the full path is also remembered, for when :cd is used.
3095 * Returns FAIL for failure (file name already in use by other buffer)
3096 * OK otherwise.
3097 */
3098 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003099setfname(
3100 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003101 char_u *ffname_arg,
3102 char_u *sfname_arg,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003103 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003105 char_u *ffname = ffname_arg;
3106 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003107 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003109 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110#endif
3111
3112 if (ffname == NULL || *ffname == NUL)
3113 {
3114 /* Removing the name. */
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003115 if (buf->b_sfname != buf->b_ffname)
3116 VIM_CLEAR(buf->b_sfname);
3117 else
3118 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003119 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120#ifdef UNIX
3121 st.st_dev = (dev_T)-1;
3122#endif
3123 }
3124 else
3125 {
3126 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3127 if (ffname == NULL) /* out of memory */
3128 return FAIL;
3129
3130 /*
3131 * if the file name is already used in another buffer:
3132 * - if the buffer is loaded, fail
3133 * - if the buffer is not loaded, delete it from the list
3134 */
3135#ifdef UNIX
3136 if (mch_stat((char *)ffname, &st) < 0)
3137 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003138#endif
3139 if (!(buf->b_flags & BF_DUMMY))
3140#ifdef UNIX
3141 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003143 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144#endif
3145 if (obuf != NULL && obuf != buf)
3146 {
3147 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3148 {
3149 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003150 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 vim_free(ffname);
3152 return FAIL;
3153 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003154 /* delete from the list */
3155 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 }
3157 sfname = vim_strsave(sfname);
3158 if (ffname == NULL || sfname == NULL)
3159 {
3160 vim_free(sfname);
3161 vim_free(ffname);
3162 return FAIL;
3163 }
3164#ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01003165 fname_case(sfname, 0); /* set correct case for short file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003167 if (buf->b_sfname != buf->b_ffname)
3168 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 buf->b_ffname = ffname;
3171 buf->b_sfname = sfname;
3172 }
3173 buf->b_fname = buf->b_sfname;
3174#ifdef UNIX
3175 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003176 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 else
3178 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003179 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 buf->b_dev = st.st_dev;
3181 buf->b_ino = st.st_ino;
3182 }
3183#endif
3184
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186
3187 buf_name_changed(buf);
3188 return OK;
3189}
3190
3191/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003192 * Crude way of changing the name of a buffer. Use with care!
3193 * The name should be relative to the current directory.
3194 */
3195 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003196buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003197{
3198 buf_T *buf;
3199
3200 buf = buflist_findnr(fnum);
3201 if (buf != NULL)
3202 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003203 if (buf->b_sfname != buf->b_ffname)
3204 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003205 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003206 buf->b_ffname = vim_strsave(name);
3207 buf->b_sfname = NULL;
3208 /* Allocate ffname and expand into full path. Also resolves .lnk
3209 * files on Win32. */
3210 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003211 buf->b_fname = buf->b_sfname;
3212 }
3213}
3214
3215/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 * Take care of what needs to be done when the name of buffer "buf" has
3217 * changed.
3218 */
3219 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003220buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221{
3222 /*
3223 * If the file name changed, also change the name of the swapfile
3224 */
3225 if (buf->b_ml.ml_mfp != NULL)
3226 ml_setname(buf);
3227
3228 if (curwin->w_buffer == buf)
3229 check_arg_idx(curwin); /* check file name for arg list */
3230#ifdef FEAT_TITLE
3231 maketitle(); /* set window title */
3232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 fmarks_check_names(buf); /* check named file marks */
3235 ml_timestamp(buf); /* reset timestamp */
3236}
3237
3238/*
3239 * set alternate file name for current window
3240 *
3241 * Used by do_one_cmd(), do_write() and do_ecmd().
3242 * Return the buffer.
3243 */
3244 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003245setaltfname(
3246 char_u *ffname,
3247 char_u *sfname,
3248 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249{
3250 buf_T *buf;
3251
3252 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3253 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003254 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 curwin->w_alt_fnum = buf->b_fnum;
3256 return buf;
3257}
3258
3259/*
3260 * Get alternate file name for current window.
3261 * Return NULL if there isn't any, and give error message if requested.
3262 */
3263 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003264getaltfname(
3265 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266{
3267 char_u *fname;
3268 linenr_T dummy;
3269
3270 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3271 {
3272 if (errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003273 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 return NULL;
3275 }
3276 return fname;
3277}
3278
3279/*
3280 * Add a file name to the buflist and return its number.
3281 * Uses same flags as buflist_new(), except BLN_DUMMY.
3282 *
3283 * used by qf_init(), main() and doarglist()
3284 */
3285 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003286buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287{
3288 buf_T *buf;
3289
3290 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3291 if (buf != NULL)
3292 return buf->b_fnum;
3293 return 0;
3294}
3295
3296#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3297/*
3298 * Adjust slashes in file names. Called after 'shellslash' was set.
3299 */
3300 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003301buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302{
3303 buf_T *bp;
3304
Bram Moolenaar29323592016-07-24 22:04:11 +02003305 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 {
3307 if (bp->b_ffname != NULL)
3308 slash_adjust(bp->b_ffname);
3309 if (bp->b_sfname != NULL)
3310 slash_adjust(bp->b_sfname);
3311 }
3312}
3313#endif
3314
3315/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003316 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 * Also save the local window option values.
3318 */
3319 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003320buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003322 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323}
3324
3325/*
3326 * Return TRUE if 'ffname' is not the same file as current file.
3327 * Fname must have a full path (expanded by mch_FullName()).
3328 */
3329 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003330otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
3332 return otherfile_buf(curbuf, ffname
3333#ifdef UNIX
3334 , NULL
3335#endif
3336 );
3337}
3338
3339 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003340otherfile_buf(
3341 buf_T *buf,
3342 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003344 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003346 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347{
3348 /* no name is different */
3349 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3350 return TRUE;
3351 if (fnamecmp(ffname, buf->b_ffname) == 0)
3352 return FALSE;
3353#ifdef UNIX
3354 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003355 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356
Bram Moolenaar8767f522016-07-01 17:17:39 +02003357 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 if (stp == NULL)
3359 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003360 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 st.st_dev = (dev_T)-1;
3362 stp = &st;
3363 }
3364 /* Use dev/ino to check if the files are the same, even when the names
3365 * are different (possible with links). Still need to compare the
3366 * name above, for when the file doesn't exist yet.
3367 * Problem: The dev/ino changes when a file is deleted (and created
3368 * again) and remains the same when renamed/moved. We don't want to
3369 * mch_stat() each buffer each time, that would be too slow. Get the
3370 * dev/ino again when they appear to match, but not when they appear
3371 * to be different: Could skip a buffer when it's actually the same
3372 * file. */
3373 if (buf_same_ino(buf, stp))
3374 {
3375 buf_setino(buf);
3376 if (buf_same_ino(buf, stp))
3377 return FALSE;
3378 }
3379 }
3380#endif
3381 return TRUE;
3382}
3383
3384#if defined(UNIX) || defined(PROTO)
3385/*
3386 * Set inode and device number for a buffer.
3387 * Must always be called when b_fname is changed!.
3388 */
3389 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003390buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003392 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393
3394 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3395 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003396 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 buf->b_dev = st.st_dev;
3398 buf->b_ino = st.st_ino;
3399 }
3400 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003401 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402}
3403
3404/*
3405 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3406 */
3407 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003408buf_same_ino(
3409 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003410 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003412 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 && stp->st_dev == buf->b_dev
3414 && stp->st_ino == buf->b_ino);
3415}
3416#endif
3417
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003418/*
3419 * Print info about the current buffer.
3420 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003422fileinfo(
3423 int fullname, /* when non-zero print full path */
3424 int shorthelp,
3425 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426{
3427 char_u *name;
3428 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003429 char *p;
3430 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003431 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003433 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 if (buffer == NULL)
3435 return;
3436
3437 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3438 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003439 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 p = buffer + STRLEN(buffer);
3441 }
3442 else
3443 p = buffer;
3444
3445 *p++ = '"';
3446 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003447 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 else
3449 {
3450 if (!fullname && curbuf->b_fname != NULL)
3451 name = curbuf->b_fname;
3452 else
3453 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003454 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 (int)(IOSIZE - (p - buffer)), TRUE);
3456 }
3457
Bram Moolenaar32526b32019-01-19 17:43:09 +01003458 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 curbufIsChanged() ? (shortmess(SHM_MOD)
3460 ? " [+]" : _(" [Modified]")) : " ",
3461 (curbuf->b_flags & BF_NOTEDITED)
3462#ifdef FEAT_QUICKFIX
3463 && !bt_dontwrite(curbuf)
3464#endif
3465 ? _("[Not edited]") : "",
3466 (curbuf->b_flags & BF_NEW)
3467#ifdef FEAT_QUICKFIX
3468 && !bt_dontwrite(curbuf)
3469#endif
3470 ? _("[New file]") : "",
3471 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003472 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 : _("[readonly]")) : "",
3474 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3475 || curbuf->b_p_ro) ?
3476 " " : "");
3477 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3478 * causes an overflow, thus for large numbers divide instead. */
3479 if (curwin->w_cursor.lnum > 1000000L)
3480 n = (int)(((long)curwin->w_cursor.lnum) /
3481 ((long)curbuf->b_ml.ml_line_count / 100L));
3482 else
3483 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3484 (long)curbuf->b_ml.ml_line_count);
3485 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003486 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487#ifdef FEAT_CMDL_INFO
3488 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 /* Current line and column are already on the screen -- webb */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003490 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003491 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3492 curbuf->b_ml.ml_line_count),
3493 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494#endif
3495 else
3496 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003497 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 _("line %ld of %ld --%d%%-- col "),
3499 (long)curwin->w_cursor.lnum,
3500 (long)curbuf->b_ml.ml_line_count,
3501 n);
3502 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003503 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003504 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3506 }
3507
Bram Moolenaar32526b32019-01-19 17:43:09 +01003508 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3509 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510
3511 if (dont_truncate)
3512 {
3513 /* Temporarily set msg_scroll to avoid the message being truncated.
3514 * First call msg_start() to get the message in the right place. */
3515 msg_start();
3516 n = msg_scroll;
3517 msg_scroll = TRUE;
3518 msg(buffer);
3519 msg_scroll = n;
3520 }
3521 else
3522 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003523 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 /* Need to repeat the message after redrawing when:
3526 * - When restart_edit is set (otherwise there will be a delay
3527 * before redrawing).
3528 * - When the screen was scrolled but there is no wait-return
3529 * prompt. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003530 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 }
3532
3533 vim_free(buffer);
3534}
3535
3536 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003537col_print(
3538 char_u *buf,
3539 size_t buflen,
3540 int col,
3541 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542{
3543 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003544 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003546 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547}
3548
3549#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550static char_u *lasttitle = NULL;
3551static char_u *lasticon = NULL;
3552
Bram Moolenaar84a93082018-06-16 22:58:15 +02003553/*
3554 * Put the file name in the title bar and icon of the window.
3555 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003557maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558{
3559 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003560 char_u *title_str = NULL;
3561 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 int maxlen = 0;
3563 int len;
3564 int mustset;
3565 char_u buf[IOSIZE];
3566 int off;
3567
3568 if (!redrawing())
3569 {
3570 /* Postpone updating the title when 'lazyredraw' is set. */
3571 need_maketitle = TRUE;
3572 return;
3573 }
3574
3575 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003576 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003577 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578
3579 if (p_title)
3580 {
3581 if (p_titlelen > 0)
3582 {
3583 maxlen = p_titlelen * Columns / 100;
3584 if (maxlen < 10)
3585 maxlen = 10;
3586 }
3587
Bram Moolenaar84a93082018-06-16 22:58:15 +02003588 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 if (*p_titlestring != NUL)
3590 {
3591#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003592 if (stl_syntax & STL_IN_TITLE)
3593 {
3594 int use_sandbox = FALSE;
3595 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003596
3597# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003598 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003599# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003600 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003601 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003602 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003603 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003604 if (called_emsg)
3605 set_string_option_direct((char_u *)"titlestring", -1,
3606 (char_u *)"", OPT_FREE, SID_ERROR);
3607 called_emsg |= save_called_emsg;
3608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 else
3610#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003611 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 }
3613 else
3614 {
3615 /* format: "fname + (path) (1 of 2) - VIM" */
3616
Bram Moolenaar2c666692012-09-05 13:30:40 +02003617#define SPACE_FOR_FNAME (IOSIZE - 100)
3618#define SPACE_FOR_DIR (IOSIZE - 20)
3619#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003621 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003622#ifdef FEAT_TERMINAL
3623 else if (curbuf->b_term != NULL)
3624 {
3625 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3626 SPACE_FOR_FNAME);
3627 }
3628#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 else
3630 {
3631 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003632 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 }
3635
Bram Moolenaar21554412017-07-24 21:44:43 +02003636#ifdef FEAT_TERMINAL
3637 if (curbuf->b_term == NULL)
3638#endif
3639 switch (bufIsChanged(curbuf)
3640 + (curbuf->b_p_ro * 2)
3641 + (!curbuf->b_p_ma * 4))
3642 {
3643 case 1: STRCAT(buf, " +"); break;
3644 case 2: STRCAT(buf, " ="); break;
3645 case 3: STRCAT(buf, " =+"); break;
3646 case 4:
3647 case 6: STRCAT(buf, " -"); break;
3648 case 5:
3649 case 7: STRCAT(buf, " -+"); break;
3650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651
Bram Moolenaar21554412017-07-24 21:44:43 +02003652 if (curbuf->b_fname != NULL
3653#ifdef FEAT_TERMINAL
3654 && curbuf->b_term == NULL
3655#endif
3656 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 {
3658 /* Get path of file, replace home dir with ~ */
3659 off = (int)STRLEN(buf);
3660 buf[off++] = ' ';
3661 buf[off++] = '(';
3662 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003663 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664#ifdef BACKSLASH_IN_FILENAME
3665 /* avoid "c:/name" to be reduced to "c" */
3666 if (isalpha(buf[off]) && buf[off + 1] == ':')
3667 off += 2;
3668#endif
3669 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003670 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003672 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003673 /* must be a help buffer */
3674 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003675 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003679
Bram Moolenaar2c666692012-09-05 13:30:40 +02003680 /* Translate unprintable chars and concatenate. Keep some
3681 * room for the server name. When there is no room (very long
3682 * file name) use (...). */
3683 if (off < SPACE_FOR_DIR)
3684 {
3685 p = transstr(buf + off);
3686 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3687 vim_free(p);
3688 }
3689 else
3690 {
3691 vim_strncpy(buf + off, (char_u *)"...",
3692 (size_t)(SPACE_FOR_ARGNR - off));
3693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 STRCAT(buf, ")");
3695 }
3696
Bram Moolenaar2c666692012-09-05 13:30:40 +02003697 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698
3699#if defined(FEAT_CLIENTSERVER)
3700 if (serverName != NULL)
3701 {
3702 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003703 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 }
3705 else
3706#endif
3707 STRCAT(buf, " - VIM");
3708
3709 if (maxlen > 0)
3710 {
3711 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003712 if (vim_strsize(buf) > maxlen)
3713 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 }
3715 }
3716 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003717 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718
3719 if (p_icon)
3720 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003721 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 if (*p_iconstring != NUL)
3723 {
3724#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003725 if (stl_syntax & STL_IN_ICON)
3726 {
3727 int use_sandbox = FALSE;
3728 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003729
3730# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003731 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003732# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003733 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003734 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003735 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003736 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003737 if (called_emsg)
3738 set_string_option_direct((char_u *)"iconstring", -1,
3739 (char_u *)"", OPT_FREE, SID_ERROR);
3740 called_emsg |= save_called_emsg;
3741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 else
3743#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003744 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 }
3746 else
3747 {
3748 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003749 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003751 p = gettail(curbuf->b_ffname);
3752 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003754 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 if (len > 100)
3756 {
3757 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003759 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003760 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003762 STRCPY(icon_str, p);
3763 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 }
3765 }
3766
Bram Moolenaar84a93082018-06-16 22:58:15 +02003767 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768
3769 if (mustset)
3770 resettitle();
3771}
3772
3773/*
3774 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3775 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003776 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 */
3778 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003779value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780{
3781 if ((str == NULL) != (*last == NULL)
3782 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3783 {
3784 vim_free(*last);
3785 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003786 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003788 mch_restore_title(
3789 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003792 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003794 return TRUE;
3795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 }
3797 return FALSE;
3798}
3799
3800/*
3801 * Put current window title back (used after calling a shell)
3802 */
3803 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003804resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805{
3806 mch_settitle(lasttitle, lasticon);
3807}
Bram Moolenaarea408852005-06-25 22:49:46 +00003808
3809# if defined(EXITFREE) || defined(PROTO)
3810 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003811free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003812{
3813 vim_free(lasttitle);
3814 vim_free(lasticon);
3815}
3816# endif
3817
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818#endif /* FEAT_TITLE */
3819
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003820#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003822 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 * Return length of string in screen cells.
3824 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003825 * Normally works for window "wp", except when working for 'tabline' then it
3826 * is "curwin".
3827 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 * Items are drawn interspersed with the text that surrounds it
3829 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3830 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3831 *
3832 * If maxwidth is not zero, the string will be filled at any middle marker
3833 * or truncated if too long, fillchar is used for all whitespace.
3834 */
3835 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003836build_stl_str_hl(
3837 win_T *wp,
3838 char_u *out, /* buffer to write into != NameBuff */
3839 size_t outlen, /* length of out[] */
3840 char_u *fmt,
3841 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3842 int fillchar,
3843 int maxwidth,
3844 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3845 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846{
Bram Moolenaar10772302019-01-20 18:25:54 +01003847 linenr_T lnum;
3848 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 char_u *p;
3850 char_u *s;
3851 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003852 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003854 win_T *save_curwin;
3855 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856#endif
3857 int empty_line;
3858 colnr_T virtcol;
3859 long l;
3860 long n;
3861 int prevchar_isflag;
3862 int prevchar_isitem;
3863 int itemisflag;
3864 int fillable;
3865 char_u *str;
3866 long num;
3867 int width;
3868 int itemcnt;
3869 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003870 int group_end_userhl;
3871 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 int groupitem[STL_MAX_ITEM];
3873 int groupdepth;
3874 struct stl_item
3875 {
3876 char_u *start;
3877 int minwid;
3878 int maxwid;
3879 enum
3880 {
3881 Normal,
3882 Empty,
3883 Group,
3884 Middle,
3885 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003886 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 Trunc
3888 } type;
3889 } item[STL_MAX_ITEM];
3890 int minwid;
3891 int maxwid;
3892 int zeropad;
3893 char_u base;
3894 char_u opt;
3895#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003896 char_u buf_tmp[TMPLEN];
3897 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003898 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003899 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003900 int save_must_redraw = must_redraw;
3901 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003902
3903#ifdef FEAT_EVAL
3904 /*
3905 * When the format starts with "%!" then evaluate it as an expression and
3906 * use the result as the actual format string.
3907 */
3908 if (fmt[0] == '%' && fmt[1] == '!')
3909 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003910 typval_T tv;
3911
3912 tv.v_type = VAR_NUMBER;
3913 tv.vval.v_number = wp->w_id;
3914 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
3915
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003916 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3917 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003918 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003919
3920 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003921 }
3922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923
3924 if (fillchar == 0)
3925 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003926 /* Can't handle a multi-byte fill character yet. */
3927 else if (mb_char2len(fillchar) > 1)
3928 fillchar = '-';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003929
Bram Moolenaar10772302019-01-20 18:25:54 +01003930 // The cursor in windows other than the current one isn't always
3931 // up-to-date, esp. because of autocommands and timers.
3932 lnum = wp->w_cursor.lnum;
3933 if (lnum > wp->w_buffer->b_ml.ml_line_count)
3934 {
3935 lnum = wp->w_buffer->b_ml.ml_line_count;
3936 wp->w_cursor.lnum = lnum;
3937 }
3938
3939 // Get line & check if empty (cursorpos will show "0-1"). Note that
3940 // p will become invalid when getting another buffer line.
3941 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02003942 empty_line = (*p == NUL);
3943
Bram Moolenaar10772302019-01-20 18:25:54 +01003944 // Get the byte value now, in case we need it below. This is more efficient
3945 // than making a copy of the line.
3946 len = STRLEN(p);
3947 if (wp->w_cursor.col > (colnr_T)len)
3948 {
3949 // Line may have changed since checking the cursor column, or the lnum
3950 // was adjusted above.
3951 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01003952 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003953 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01003954 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02003955 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02003956 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
3958 groupdepth = 0;
3959 p = out;
3960 curitem = 0;
3961 prevchar_isflag = TRUE;
3962 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003963 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003965 if (curitem == STL_MAX_ITEM)
3966 {
3967 /* There are too many items. Add the error code to the statusline
3968 * to give the user a hint about what went wrong. */
3969 if (p + 6 < out + outlen)
3970 {
3971 mch_memmove(p, " E541", (size_t)5);
3972 p += 5;
3973 }
3974 break;
3975 }
3976
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 if (*s != NUL && *s != '%')
3978 prevchar_isflag = prevchar_isitem = FALSE;
3979
3980 /*
3981 * Handle up to the next '%' or the end.
3982 */
3983 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3984 *p++ = *s++;
3985 if (*s == NUL || p + 1 >= out + outlen)
3986 break;
3987
3988 /*
3989 * Handle one '%' item.
3990 */
3991 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003992 if (*s == NUL) /* ignore trailing % */
3993 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 if (*s == '%')
3995 {
3996 if (p + 1 >= out + outlen)
3997 break;
3998 *p++ = *s++;
3999 prevchar_isflag = prevchar_isitem = FALSE;
4000 continue;
4001 }
4002 if (*s == STL_MIDDLEMARK)
4003 {
4004 s++;
4005 if (groupdepth > 0)
4006 continue;
4007 item[curitem].type = Middle;
4008 item[curitem++].start = p;
4009 continue;
4010 }
4011 if (*s == STL_TRUNCMARK)
4012 {
4013 s++;
4014 item[curitem].type = Trunc;
4015 item[curitem++].start = p;
4016 continue;
4017 }
4018 if (*s == ')')
4019 {
4020 s++;
4021 if (groupdepth < 1)
4022 continue;
4023 groupdepth--;
4024
4025 t = item[groupitem[groupdepth]].start;
4026 *p = NUL;
4027 l = vim_strsize(t);
4028 if (curitem > groupitem[groupdepth] + 1
4029 && item[groupitem[groupdepth]].minwid == 0)
4030 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004031 /* remove group if all items are empty and highlight group
4032 * doesn't change */
4033 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004034 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4035 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004036 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004037 {
4038 group_start_userhl = group_end_userhl = item[n].minwid;
4039 break;
4040 }
4041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004043 {
4044 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004046 if (item[n].type == Highlight)
4047 group_end_userhl = item[n].minwid;
4048 }
4049 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 {
4051 p = t;
4052 l = 0;
4053 }
4054 }
4055 if (l > item[groupitem[groupdepth]].maxwid)
4056 {
4057 /* truncate, remove n bytes of text at the start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 if (has_mbyte)
4059 {
4060 /* Find the first character that should be included. */
4061 n = 0;
4062 while (l >= item[groupitem[groupdepth]].maxwid)
4063 {
4064 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004065 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 }
4067 }
4068 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004069 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070
4071 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004072 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004074
4075 // Fill up space left over by half a double-wide char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 while (++l < item[groupitem[groupdepth]].minwid)
4077 *p++ = fillchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
4079 /* correct the start of the items for the truncation */
4080 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4081 {
4082 item[l].start -= n;
4083 if (item[l].start < t)
4084 item[l].start = t;
4085 }
4086 }
4087 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4088 {
4089 /* fill */
4090 n = item[groupitem[groupdepth]].minwid;
4091 if (n < 0)
4092 {
4093 /* fill by appending characters */
4094 n = 0 - n;
4095 while (l++ < n && p + 1 < out + outlen)
4096 *p++ = fillchar;
4097 }
4098 else
4099 {
4100 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004101 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 l = n - l;
4103 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004104 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 p += l;
4106 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4107 item[n].start += l;
4108 for ( ; l > 0; l--)
4109 *t++ = fillchar;
4110 }
4111 }
4112 continue;
4113 }
4114 minwid = 0;
4115 maxwid = 9999;
4116 zeropad = FALSE;
4117 l = 1;
4118 if (*s == '0')
4119 {
4120 s++;
4121 zeropad = TRUE;
4122 }
4123 if (*s == '-')
4124 {
4125 s++;
4126 l = -1;
4127 }
4128 if (VIM_ISDIGIT(*s))
4129 {
4130 minwid = (int)getdigits(&s);
4131 if (minwid < 0) /* overflow */
4132 minwid = 0;
4133 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004134 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 {
4136 item[curitem].type = Highlight;
4137 item[curitem].start = p;
4138 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4139 s++;
4140 curitem++;
4141 continue;
4142 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004143 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4144 {
4145 if (*s == STL_TABCLOSENR)
4146 {
4147 if (minwid == 0)
4148 {
4149 /* %X ends the close label, go back to the previously
4150 * define tab label nr. */
4151 for (n = curitem - 1; n >= 0; --n)
4152 if (item[n].type == TabPage && item[n].minwid >= 0)
4153 {
4154 minwid = item[n].minwid;
4155 break;
4156 }
4157 }
4158 else
4159 /* close nrs are stored as negative values */
4160 minwid = - minwid;
4161 }
4162 item[curitem].type = TabPage;
4163 item[curitem].start = p;
4164 item[curitem].minwid = minwid;
4165 s++;
4166 curitem++;
4167 continue;
4168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 if (*s == '.')
4170 {
4171 s++;
4172 if (VIM_ISDIGIT(*s))
4173 {
4174 maxwid = (int)getdigits(&s);
4175 if (maxwid <= 0) /* overflow */
4176 maxwid = 50;
4177 }
4178 }
4179 minwid = (minwid > 50 ? 50 : minwid) * l;
4180 if (*s == '(')
4181 {
4182 groupitem[groupdepth++] = curitem;
4183 item[curitem].type = Group;
4184 item[curitem].start = p;
4185 item[curitem].minwid = minwid;
4186 item[curitem].maxwid = maxwid;
4187 s++;
4188 curitem++;
4189 continue;
4190 }
4191 if (vim_strchr(STL_ALL, *s) == NULL)
4192 {
4193 s++;
4194 continue;
4195 }
4196 opt = *s++;
4197
4198 /* OK - now for the real work */
4199 base = 'D';
4200 itemisflag = FALSE;
4201 fillable = TRUE;
4202 num = -1;
4203 str = NULL;
4204 switch (opt)
4205 {
4206 case STL_FILEPATH:
4207 case STL_FULLPATH:
4208 case STL_FILENAME:
4209 fillable = FALSE; /* don't change ' ' to fillchar */
4210 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004211 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 else
4213 {
4214 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004215 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4217 }
4218 trans_characters(NameBuff, MAXPATHL);
4219 if (opt != STL_FILENAME)
4220 str = NameBuff;
4221 else
4222 str = gettail(NameBuff);
4223 break;
4224
4225 case STL_VIM_EXPR: /* '{' */
4226 itemisflag = TRUE;
4227 t = p;
4228 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4229 *p++ = *s++;
4230 if (*s != '}') /* missing '}' or out of space */
4231 break;
4232 s++;
4233 *p = 0;
4234 p = t;
4235
4236#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004237 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4238 "%d", curbuf->b_fnum);
4239 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4240 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4241 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004243 save_curbuf = curbuf;
4244 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 curwin = wp;
4246 curbuf = wp->w_buffer;
4247
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004248 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004250 curwin = save_curwin;
4251 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004252 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004253 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254
4255 if (str != NULL && *str != 0)
4256 {
4257 if (*skipdigits(str) == NUL)
4258 {
4259 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004260 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 itemisflag = FALSE;
4262 }
4263 }
4264#endif
4265 break;
4266
4267 case STL_LINE:
4268 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4269 ? 0L : (long)(wp->w_cursor.lnum);
4270 break;
4271
4272 case STL_NUMLINES:
4273 num = wp->w_buffer->b_ml.ml_line_count;
4274 break;
4275
4276 case STL_COLUMN:
4277 num = !(State & INSERT) && empty_line
4278 ? 0 : (int)wp->w_cursor.col + 1;
4279 break;
4280
4281 case STL_VIRTCOL:
4282 case STL_VIRTCOL_ALT:
4283 /* In list mode virtcol needs to be recomputed */
4284 virtcol = wp->w_virtcol;
4285 if (wp->w_p_list && lcs_tab1 == NUL)
4286 {
4287 wp->w_p_list = FALSE;
4288 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4289 wp->w_p_list = TRUE;
4290 }
4291 ++virtcol;
4292 /* Don't display %V if it's the same as %c. */
4293 if (opt == STL_VIRTCOL_ALT
4294 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4295 ? 0 : (int)wp->w_cursor.col + 1)))
4296 break;
4297 num = (long)virtcol;
4298 break;
4299
4300 case STL_PERCENTAGE:
4301 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4302 (long)wp->w_buffer->b_ml.ml_line_count);
4303 break;
4304
4305 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004306 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004307 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 break;
4309
4310 case STL_ARGLISTSTAT:
4311 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004312 buf_tmp[0] = 0;
4313 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4314 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 break;
4316
4317 case STL_KEYMAP:
4318 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004319 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4320 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 break;
4322 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004323#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004324 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325#else
4326 num = 0;
4327#endif
4328 break;
4329
4330 case STL_BUFNO:
4331 num = wp->w_buffer->b_fnum;
4332 break;
4333
4334 case STL_OFFSET_X:
4335 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004336 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 case STL_OFFSET:
4338#ifdef FEAT_BYTEOFF
4339 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4340 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4341 0L : l + 1 + (!(State & INSERT) && empty_line ?
4342 0 : (int)wp->w_cursor.col);
4343#endif
4344 break;
4345
4346 case STL_BYTEVAL_X:
4347 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004348 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004350 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 if (num == NL)
4352 num = 0;
4353 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4354 num = NL;
4355 break;
4356
4357 case STL_ROFLAG:
4358 case STL_ROFLAG_ALT:
4359 itemisflag = TRUE;
4360 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004361 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 break;
4363
4364 case STL_HELPFLAG:
4365 case STL_HELPFLAG_ALT:
4366 itemisflag = TRUE;
4367 if (wp->w_buffer->b_help)
4368 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004369 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 break;
4371
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 case STL_FILETYPE:
4373 if (*wp->w_buffer->b_p_ft != NUL
4374 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4375 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004376 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004377 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004378 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 }
4380 break;
4381
4382 case STL_FILETYPE_ALT:
4383 itemisflag = TRUE;
4384 if (*wp->w_buffer->b_p_ft != NUL
4385 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4386 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004387 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004388 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004389 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004391 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 }
4393 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394
Bram Moolenaar4033c552017-09-16 20:54:51 +02004395#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 case STL_PREVIEWFLAG:
4397 case STL_PREVIEWFLAG_ALT:
4398 itemisflag = TRUE;
4399 if (wp->w_p_pvw)
4400 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4401 : _("[Preview]"));
4402 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004403
4404 case STL_QUICKFIX:
4405 if (bt_quickfix(wp->w_buffer))
4406 str = (char_u *)(wp->w_llist_ref
4407 ? _(msg_loclist)
4408 : _(msg_qflist));
4409 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410#endif
4411
4412 case STL_MODIFIED:
4413 case STL_MODIFIED_ALT:
4414 itemisflag = TRUE;
4415 switch ((opt == STL_MODIFIED_ALT)
4416 + bufIsChanged(wp->w_buffer) * 2
4417 + (!wp->w_buffer->b_p_ma) * 4)
4418 {
4419 case 2: str = (char_u *)"[+]"; break;
4420 case 3: str = (char_u *)",+"; break;
4421 case 4: str = (char_u *)"[-]"; break;
4422 case 5: str = (char_u *)",-"; break;
4423 case 6: str = (char_u *)"[+-]"; break;
4424 case 7: str = (char_u *)",+-"; break;
4425 }
4426 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004427
4428 case STL_HIGHLIGHT:
4429 t = s;
4430 while (*s != '#' && *s != NUL)
4431 ++s;
4432 if (*s == '#')
4433 {
4434 item[curitem].type = Highlight;
4435 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004436 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004437 curitem++;
4438 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004439 if (*s != NUL)
4440 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004441 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 }
4443
4444 item[curitem].start = p;
4445 item[curitem].type = Normal;
4446 if (str != NULL && *str)
4447 {
4448 t = str;
4449 if (itemisflag)
4450 {
4451 if ((t[0] && t[1])
4452 && ((!prevchar_isitem && *t == ',')
4453 || (prevchar_isflag && *t == ' ')))
4454 t++;
4455 prevchar_isflag = TRUE;
4456 }
4457 l = vim_strsize(t);
4458 if (l > 0)
4459 prevchar_isitem = TRUE;
4460 if (l > maxwid)
4461 {
4462 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 if (has_mbyte)
4464 {
4465 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004466 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 l -= byte2cells(*t++);
4470 if (p + 1 >= out + outlen)
4471 break;
4472 *p++ = '<';
4473 }
4474 if (minwid > 0)
4475 {
4476 for (; l < minwid && p + 1 < out + outlen; l++)
4477 {
4478 /* Don't put a "-" in front of a digit. */
4479 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4480 *p++ = ' ';
4481 else
4482 *p++ = fillchar;
4483 }
4484 minwid = 0;
4485 }
4486 else
4487 minwid *= -1;
4488 while (*t && p + 1 < out + outlen)
4489 {
4490 *p++ = *t++;
4491 /* Change a space by fillchar, unless fillchar is '-' and a
4492 * digit follows. */
4493 if (fillable && p[-1] == ' '
4494 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4495 p[-1] = fillchar;
4496 }
4497 for (; l < minwid && p + 1 < out + outlen; l++)
4498 *p++ = fillchar;
4499 }
4500 else if (num >= 0)
4501 {
4502 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4503 char_u nstr[20];
4504
4505 if (p + 20 >= out + outlen)
4506 break; /* not sufficient space */
4507 prevchar_isitem = TRUE;
4508 t = nstr;
4509 if (opt == STL_VIRTCOL_ALT)
4510 {
4511 *t++ = '-';
4512 minwid--;
4513 }
4514 *t++ = '%';
4515 if (zeropad)
4516 *t++ = '0';
4517 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004518 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 *t = 0;
4520
4521 for (n = num, l = 1; n >= nbase; n /= nbase)
4522 l++;
4523 if (opt == STL_VIRTCOL_ALT)
4524 l++;
4525 if (l > maxwid)
4526 {
4527 l += 2;
4528 n = l - maxwid;
4529 while (l-- > maxwid)
4530 num /= nbase;
4531 *t++ = '>';
4532 *t++ = '%';
4533 *t = t[-3];
4534 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004535 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4536 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537 }
4538 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004539 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4540 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 p += STRLEN(p);
4542 }
4543 else
4544 item[curitem].type = Empty;
4545
4546 if (opt == STL_VIM_EXPR)
4547 vim_free(str);
4548
4549 if (num >= 0 || (!itemisflag && str && *str))
4550 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4551 curitem++;
4552 }
4553 *p = NUL;
4554 itemcnt = curitem;
4555
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004556#ifdef FEAT_EVAL
4557 if (usefmt != fmt)
4558 vim_free(usefmt);
4559#endif
4560
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 width = vim_strsize(out);
4562 if (maxwidth > 0 && width > maxwidth)
4563 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004564 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 l = 0;
4566 if (itemcnt == 0)
4567 s = out;
4568 else
4569 {
4570 for ( ; l < itemcnt; l++)
4571 if (item[l].type == Trunc)
4572 {
4573 /* Truncate at %< item. */
4574 s = item[l].start;
4575 break;
4576 }
4577 if (l == itemcnt)
4578 {
4579 /* No %< item, truncate first item. */
4580 s = item[0].start;
4581 l = 0;
4582 }
4583 }
4584
4585 if (width - vim_strsize(s) >= maxwidth)
4586 {
4587 /* Truncation mark is beyond max length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 if (has_mbyte)
4589 {
4590 s = out;
4591 width = 0;
4592 for (;;)
4593 {
4594 width += ptr2cells(s);
4595 if (width >= maxwidth)
4596 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004597 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 }
4599 /* Fill up for half a double-wide character. */
4600 while (++width < maxwidth)
4601 *s++ = fillchar;
4602 }
4603 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 s = out + maxwidth - 1;
4605 for (l = 0; l < itemcnt; l++)
4606 if (item[l].start > s)
4607 break;
4608 itemcnt = l;
4609 *s++ = '>';
4610 *s = 0;
4611 }
4612 else
4613 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 if (has_mbyte)
4615 {
4616 n = 0;
4617 while (width >= maxwidth)
4618 {
4619 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004620 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 }
4622 }
4623 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 n = width - maxwidth + 1;
4625 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004626 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 *s = '<';
4628
4629 /* Fill up for half a double-wide character. */
4630 while (++width < maxwidth)
4631 {
4632 s = s + STRLEN(s);
4633 *s++ = fillchar;
4634 *s = NUL;
4635 }
4636
4637 --n; /* count the '<' */
4638 for (; l < itemcnt; l++)
4639 {
4640 if (item[l].start - n >= s)
4641 item[l].start -= n;
4642 else
4643 item[l].start = s;
4644 }
4645 }
4646 width = maxwidth;
4647 }
4648 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4649 {
4650 /* Apply STL_MIDDLE if any */
4651 for (l = 0; l < itemcnt; l++)
4652 if (item[l].type == Middle)
4653 break;
4654 if (l < itemcnt)
4655 {
4656 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004657 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 for (s = item[l].start; s < p; s++)
4659 *s = fillchar;
4660 for (l++; l < itemcnt; l++)
4661 item[l].start += maxwidth - width;
4662 width = maxwidth;
4663 }
4664 }
4665
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004666 /* Store the info about highlighting. */
4667 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004669 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 for (l = 0; l < itemcnt; l++)
4671 {
4672 if (item[l].type == Highlight)
4673 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004674 sp->start = item[l].start;
4675 sp->userhl = item[l].minwid;
4676 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 }
4678 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004679 sp->start = NULL;
4680 sp->userhl = 0;
4681 }
4682
4683 /* Store the info about tab pages labels. */
4684 if (tabtab != NULL)
4685 {
4686 sp = tabtab;
4687 for (l = 0; l < itemcnt; l++)
4688 {
4689 if (item[l].type == TabPage)
4690 {
4691 sp->start = item[l].start;
4692 sp->userhl = item[l].minwid;
4693 sp++;
4694 }
4695 }
4696 sp->start = NULL;
4697 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 }
4699
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004700 /* When inside update_screen we do not want redrawing a stausline, ruler,
4701 * title, etc. to trigger another redraw, it may cause an endless loop. */
4702 if (updating_screen)
4703 {
4704 must_redraw = save_must_redraw;
4705 curwin->w_redr_type = save_redr_type;
4706 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004707
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 return width;
4709}
4710#endif /* FEAT_STL_OPT */
4711
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004712#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4713 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004715 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4716 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 */
4718 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004719get_rel_pos(
4720 win_T *wp,
4721 char_u *buf,
4722 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723{
4724 long above; /* number of lines above window */
4725 long below; /* number of lines below window */
4726
Bram Moolenaar0027c212015-01-07 13:31:52 +01004727 if (buflen < 3) /* need at least 3 chars for writing */
4728 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 above = wp->w_topline - 1;
4730#ifdef FEAT_DIFF
4731 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004732 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4733 above = 0; /* All buffer lines are displayed and there is an
4734 * indication of filler lines, that can be considered
4735 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736#endif
4737 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4738 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004739 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4740 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004742 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004744 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 ? (int)(above / ((above + below) / 100L))
4746 : (int)(above * 100L / (above + below)));
4747}
4748#endif
4749
4750/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004751 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 * Return TRUE if it was appended.
4753 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004754 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004755append_arg_number(
4756 win_T *wp,
4757 char_u *buf,
4758 int buflen,
4759 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760{
4761 char_u *p;
4762
4763 if (ARGCOUNT <= 1) /* nothing to do */
4764 return FALSE;
4765
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004766 p = buf + STRLEN(buf); /* go to the end of the buffer */
4767 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 return FALSE;
4769 *p++ = ' ';
4770 *p++ = '(';
4771 if (add_file)
4772 {
4773 STRCPY(p, "file ");
4774 p += 5;
4775 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004776 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4777 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4779 return TRUE;
4780}
4781
4782/*
4783 * If fname is not a full path, make it a full path.
4784 * Returns pointer to allocated memory (NULL for failure).
4785 */
4786 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004787fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788{
4789 /*
4790 * Force expanding the path always for Unix, because symbolic links may
4791 * mess up the full path name, even though it starts with a '/'.
4792 * Also expand when there is ".." in the file name, try to remove it,
4793 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004794 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 * For MS-Windows also expand names like "longna~1" to "longname".
4796 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004797#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 return FullName_save(fname, TRUE);
4799#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004800 if (!vim_isAbsName(fname)
4801 || strstr((char *)fname, "..") != NULL
4802 || strstr((char *)fname, "//") != NULL
4803# ifdef BACKSLASH_IN_FILENAME
4804 || strstr((char *)fname, "\\\\") != NULL
4805# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004806# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004808# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 )
4810 return FullName_save(fname, FALSE);
4811
4812 fname = vim_strsave(fname);
4813
Bram Moolenaar9b942202007-10-03 12:31:33 +00004814# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01004815 if (fname != NULL)
4816 fname_case(fname, 0); /* set correct case for file name */
Bram Moolenaar9b942202007-10-03 12:31:33 +00004817# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818
4819 return fname;
4820#endif
4821}
4822
4823/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004824 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
4825 * "*ffname" becomes a pointer to allocated memory (or NULL).
4826 * When resolving a link both "*sfname" and "*ffname" will point to the same
4827 * allocated memory.
4828 * The "*ffname" and "*sfname" pointer values on call will not be freed.
4829 * Note that the resulting "*ffname" pointer should be considered not allocaed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004832fname_expand(
4833 buf_T *buf UNUSED,
4834 char_u **ffname,
4835 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004837 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004839 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004841 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842
4843#ifdef FEAT_SHORTCUT
4844 if (!buf->b_p_bin)
4845 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004846 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004848 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01004849 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004850 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 {
4852 vim_free(*ffname);
4853 *ffname = rfname;
4854 *sfname = rfname;
4855 }
4856 }
4857#endif
4858}
4859
4860/*
4861 * Get the file name for an argument list entry.
4862 */
4863 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004864alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865{
4866 buf_T *bp;
4867
4868 /* Use the name from the associated buffer if it exists. */
4869 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004870 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 return aep->ae_fname;
4872 return bp->b_fname;
4873}
4874
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875/*
4876 * do_arg_all(): Open up to 'count' windows, one for each argument.
4877 */
4878 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004879do_arg_all(
4880 int count,
4881 int forceit, /* hide buffers in current windows */
4882 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883{
4884 int i;
4885 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004886 char_u *opened; /* Array of weight for which args are open:
4887 * 0: not opened
4888 * 1: opened in other tab
4889 * 2: opened in curtab
4890 * 3: opened in curtab and curwin
4891 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004892 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 int use_firstwin = FALSE; /* use first window for arglist */
4894 int split_ret = OK;
4895 int p_ea_save;
4896 alist_T *alist; /* argument list to be used */
4897 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004898 tabpage_T *tpnext;
4899 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004900 win_T *old_curwin, *last_curwin;
4901 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004902 win_T *new_curwin = NULL;
4903 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904
4905 if (ARGCOUNT <= 0)
4906 {
4907 /* Don't give an error message. We don't want it when the ":all"
4908 * command is in the .vimrc. */
4909 return;
4910 }
4911 setpcmark();
4912
4913 opened_len = ARGCOUNT;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004914 opened = alloc_clear(opened_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 if (opened == NULL)
4916 return;
4917
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004918 /* Autocommands may do anything to the argument list. Make sure it's not
4919 * freed while we are working here by "locking" it. We still have to
4920 * watch out for its size to be changed. */
4921 alist = curwin->w_alist;
4922 ++alist->al_refcount;
4923
4924 old_curwin = curwin;
4925 old_curtab = curtab;
4926
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004927# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004929# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930
4931 /*
4932 * Try closing all windows that are not in the argument list.
4933 * Also close windows that are not full width;
4934 * When 'hidden' or "forceit" set the buffer becomes hidden.
4935 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004936 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004938 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004939 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004940 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004942 tpnext = curtab->tp_next;
4943 for (wp = firstwin; wp != NULL; wp = wpnext)
4944 {
4945 wpnext = wp->w_next;
4946 buf = wp->w_buffer;
4947 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004948 || (!keep_tabs && (buf->b_nwindows > 1
4949 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004950 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004951 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004953 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004954 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004956 if (i < alist->al_ga.ga_len
4957 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4958 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
Bram Moolenaar99499b12019-05-23 21:35:48 +02004959 buf->b_ffname, TRUE, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004961 int weight = 1;
4962
4963 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004964 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004965 ++weight;
4966 if (old_curwin == wp)
4967 ++weight;
4968 }
4969
4970 if (weight > (int)opened[i])
4971 {
4972 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004973 if (i == 0)
4974 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004975 if (new_curwin != NULL)
4976 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004977 new_curwin = wp;
4978 new_curtab = curtab;
4979 }
4980 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004981 else if (keep_tabs)
4982 i = opened_len;
4983
4984 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004985 {
4986 /* Use the current argument list for all windows
4987 * containing a file from it. */
4988 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004989 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004990 ++wp->w_alist->al_refcount;
4991 }
4992 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 }
4995 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004996 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004998 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005000 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005001 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005003 /* If the buffer was changed, and we would like to hide it,
5004 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005005 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005006 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005008 bufref_T bufref;
5009
5010 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005011
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005012 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005013
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005014 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005015 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005016 {
5017 wpnext = firstwin; /* start all over... */
5018 continue;
5019 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005020 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005021 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005022 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005023 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005024 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005025 else
5026 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005027 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005028
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005029 /* check if autocommands removed the next window */
5030 if (!win_valid(wpnext))
5031 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005032 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 }
5035 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005036
5037 /* Without the ":tab" modifier only do the current tab page. */
5038 if (had_tab == 0 || tpnext == NULL)
5039 break;
5040
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005041 /* check if autocommands removed the next tab page */
5042 if (!valid_tabpage(tpnext))
5043 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005044
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005045 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 }
5047
5048 /*
5049 * Open a window for files in the argument list that don't have one.
5050 * ARGCOUNT may change while doing this, because of autocommands.
5051 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005052 if (count > opened_len || count <= 0)
5053 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5056 ++autocmd_no_enter;
5057 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005058 last_curwin = curwin;
5059 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005061 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5062 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005063 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005064 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5065 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005066
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005067 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 {
5069 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5070 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005071 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 {
5073 /* Move the already present window to below the current window */
5074 if (curwin->w_arg_idx != i)
5075 {
5076 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5077 {
5078 if (wpnext->w_arg_idx == i)
5079 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005080 if (keep_tabs)
5081 {
5082 new_curwin = wpnext;
5083 new_curtab = curtab;
5084 }
5085 else
5086 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 break;
5088 }
5089 }
5090 }
5091 }
5092 else if (split_ret == OK)
5093 {
5094 if (!use_firstwin) /* split current window */
5095 {
5096 p_ea_save = p_ea;
5097 p_ea = TRUE; /* use space from all windows */
5098 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5099 p_ea = p_ea_save;
5100 if (split_ret == FAIL)
5101 continue;
5102 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 else /* first window: do autocmd for leaving this buffer */
5104 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105
5106 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005107 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 */
5109 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005110 if (i == 0)
5111 {
5112 new_curwin = curwin;
5113 new_curtab = curtab;
5114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5116 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005117 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005119 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 if (use_firstwin)
5121 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 use_firstwin = FALSE;
5123 }
5124 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005125
5126 /* When ":tab" was used open a new tab for a new window repeatedly. */
5127 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5128 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 }
5130
5131 /* Remove the "lock" on the argument list. */
5132 alist_unlink(alist);
5133
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005135
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005136 /* restore last referenced tabpage's curwin */
5137 if (last_curtab != new_curtab)
5138 {
5139 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005140 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005141 if (win_valid(last_curwin))
5142 win_enter(last_curwin, FALSE);
5143 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005144 /* to window with first arg */
5145 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005146 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005147 if (win_valid(new_curwin))
5148 win_enter(new_curwin, FALSE);
5149
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 vim_free(opened);
5152}
5153
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154/*
5155 * Open a window for a number of buffers.
5156 */
5157 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005158ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159{
5160 buf_T *buf;
5161 win_T *wp, *wpnext;
5162 int split_ret = OK;
5163 int p_ea_save;
5164 int open_wins = 0;
5165 int r;
5166 int count; /* Maximum number of windows to open. */
5167 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005168 int had_tab = cmdmod.tab;
5169 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170
5171 if (eap->addr_count == 0) /* make as many windows as possible */
5172 count = 9999;
5173 else
5174 count = eap->line2; /* make as many windows as specified */
5175 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5176 all = FALSE;
5177 else
5178 all = TRUE;
5179
5180 setpcmark();
5181
5182#ifdef FEAT_GUI
5183 need_mouse_correct = TRUE;
5184#endif
5185
5186 /*
5187 * Close superfluous windows (two windows for the same buffer).
5188 * Also close windows that are not full-width.
5189 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005190 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005191 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005192 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005194 tpnext = curtab->tp_next;
5195 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005197 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005198 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005199 || ((cmdmod.split & WSP_VERT)
5200 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005201 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005202 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005203 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005204 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005205 {
5206 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005207 wpnext = firstwin; /* just in case an autocommand does
5208 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005209 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005210 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005211 }
5212 else
5213 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005215
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005216 /* Without the ":tab" modifier only do the current tab page. */
5217 if (had_tab == 0 || tpnext == NULL)
5218 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005219 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 }
5221
5222 /*
5223 * Go through the buffer list. When a buffer doesn't have a window yet,
5224 * open one. Otherwise move the window to the right position.
5225 * Watch out for autocommands that delete buffers or windows!
5226 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5228 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5232 {
5233 /* Check if this buffer needs a window */
5234 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5235 continue;
5236
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005237 if (had_tab != 0)
5238 {
5239 /* With the ":tab" modifier don't move the window. */
5240 if (buf->b_nwindows > 0)
5241 wp = lastwin; /* buffer has a window, skip it */
5242 else
5243 wp = NULL;
5244 }
5245 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005246 {
5247 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005248 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005249 if (wp->w_buffer == buf)
5250 break;
5251 /* If the buffer already has a window, move it */
5252 if (wp != NULL)
5253 win_move_after(wp, curwin);
5254 }
5255
5256 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005258 bufref_T bufref;
5259
5260 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005261
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 /* Split the window and put the buffer in it */
5263 p_ea_save = p_ea;
5264 p_ea = TRUE; /* use space from all windows */
5265 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5266 ++open_wins;
5267 p_ea = p_ea_save;
5268 if (split_ret == FAIL)
5269 continue;
5270
5271 /* Open the buffer in this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005274 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005276 /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 break;
5279 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 if (swap_exists_action == SEA_QUIT)
5281 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005282#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005283 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005284
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005285 /* Reset the error/interrupt/exception state here so that
5286 * aborting() returns FALSE when closing a window. */
5287 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005288#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005289
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005290 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 win_close(curwin, TRUE);
5292 --open_wins;
5293 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005294 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005295
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005296#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005297 /* Restore the error/interrupt/exception state if not
5298 * discarded by a new aborting error, interrupt, or uncaught
5299 * exception. */
5300 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005301#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 }
5303 else
5304 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 }
5306
5307 ui_breakcheck();
5308 if (got_int)
5309 {
5310 (void)vgetc(); /* only break the file loading, not the rest */
5311 break;
5312 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005313#ifdef FEAT_EVAL
5314 /* Autocommands deleted the buffer or aborted script processing!!! */
5315 if (aborting())
5316 break;
5317#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005318 /* When ":tab" was used open a new tab for a new window repeatedly. */
5319 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5320 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325
5326 /*
5327 * Close superfluous windows.
5328 */
5329 for (wp = lastwin; open_wins > count; )
5330 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005331 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 if (!win_valid(wp))
5334 {
5335 /* BufWrite Autocommands made the window invalid, start over */
5336 wp = lastwin;
5337 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005338 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005340 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 --open_wins;
5342 wp = lastwin;
5343 }
5344 else
5345 {
5346 wp = wp->w_prev;
5347 if (wp == NULL)
5348 break;
5349 }
5350 }
5351}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005354static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005355
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356/*
5357 * do_modelines() - process mode lines for the current file
5358 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005359 * "flags" can be:
5360 * OPT_WINONLY only set options local to window
5361 * OPT_NOWIN don't set options local to window
5362 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 * Returns immediately if the "ml" option isn't set.
5364 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005366do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005368 linenr_T lnum;
5369 int nmlines;
5370 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371
5372 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5373 return;
5374
5375 /* Disallow recursive entry here. Can happen when executing a modeline
5376 * triggers an autocommand, which reloads modelines with a ":do". */
5377 if (entered)
5378 return;
5379
5380 ++entered;
5381 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5382 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005383 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 nmlines = 0;
5385
5386 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5387 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005388 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 nmlines = 0;
5390 --entered;
5391}
5392
5393#include "version.h" /* for version number */
5394
5395/*
5396 * chk_modeline() - check a single line for a mode string
5397 * Return FAIL if an error encountered.
5398 */
5399 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005400chk_modeline(
5401 linenr_T lnum,
5402 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403{
5404 char_u *s;
5405 char_u *e;
5406 char_u *linecopy; /* local copy of any modeline found */
5407 int prev;
5408 int vers;
5409 int end;
5410 int retval = OK;
5411 char_u *save_sourcing_name;
5412 linenr_T save_sourcing_lnum;
5413#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005414 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415#endif
5416
5417 prev = -1;
5418 for (s = ml_get(lnum); *s != NUL; ++s)
5419 {
5420 if (prev == -1 || vim_isspace(prev))
5421 {
5422 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5423 || STRNCMP(s, "vi:", (size_t)3) == 0)
5424 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005425 /* Accept both "vim" and "Vim". */
5426 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 {
5428 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5429 e = s + 4;
5430 else
5431 e = s + 3;
5432 vers = getdigits(&e);
5433 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005434 && (s[0] != 'V'
5435 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 && (s[3] == ':'
5437 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5438 || (VIM_VERSION_100 < vers && s[3] == '<')
5439 || (VIM_VERSION_100 > vers && s[3] == '>')
5440 || (VIM_VERSION_100 == vers && s[3] == '=')))
5441 break;
5442 }
5443 }
5444 prev = *s;
5445 }
5446
5447 if (*s)
5448 {
5449 do /* skip over "ex:", "vi:" or "vim:" */
5450 ++s;
5451 while (s[-1] != ':');
5452
5453 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5454 if (linecopy == NULL)
5455 return FAIL;
5456
5457 save_sourcing_lnum = sourcing_lnum;
5458 save_sourcing_name = sourcing_name;
5459 sourcing_lnum = lnum; /* prepare for emsg() */
5460 sourcing_name = (char_u *)"modelines";
5461
5462 end = FALSE;
5463 while (end == FALSE)
5464 {
5465 s = skipwhite(s);
5466 if (*s == NUL)
5467 break;
5468
5469 /*
5470 * Find end of set command: ':' or end of line.
5471 * Skip over "\:", replacing it with ":".
5472 */
5473 for (e = s; *e != ':' && *e != NUL; ++e)
5474 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005475 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 if (*e == NUL)
5477 end = TRUE;
5478
5479 /*
5480 * If there is a "set" command, require a terminating ':' and
5481 * ignore the stuff after the ':'.
5482 * "vi:set opt opt opt: foo" -- foo not interpreted
5483 * "vi:opt opt opt: foo" -- foo interpreted
5484 * Accept "se" for compatibility with Elvis.
5485 */
5486 if (STRNCMP(s, "set ", (size_t)4) == 0
5487 || STRNCMP(s, "se ", (size_t)3) == 0)
5488 {
5489 if (*e != ':') /* no terminating ':'? */
5490 break;
5491 end = TRUE;
5492 s = vim_strchr(s, ' ') + 1;
5493 }
5494 *e = NUL; /* truncate the set command */
5495
5496 if (*s != NUL) /* skip over an empty "::" */
5497 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005498 int secure_save = secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005500 save_current_sctx = current_sctx;
5501 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005502 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005503 current_sctx.sc_lnum = 0;
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02005504 current_sctx.sc_version = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505#endif
Bram Moolenaar5958f952018-11-20 04:25:21 +01005506 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005507 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005508
Bram Moolenaara3227e22006-03-08 21:32:40 +00005509 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005510
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005511 secure = secure_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005513 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514#endif
5515 if (retval == FAIL) /* stop if error found */
5516 break;
5517 }
5518 s = e + 1; /* advance to next part */
5519 }
5520
5521 sourcing_lnum = save_sourcing_lnum;
5522 sourcing_name = save_sourcing_name;
5523
5524 vim_free(linecopy);
5525 }
5526 return retval;
5527}
5528
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005529#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005531read_viminfo_bufferlist(
5532 vir_T *virp,
5533 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534{
5535 char_u *tab;
5536 linenr_T lnum;
5537 colnr_T col;
5538 buf_T *buf;
5539 char_u *sfname;
5540 char_u *xline;
5541
5542 /* Handle long line and escaped characters. */
5543 xline = viminfo_readstring(virp, 1, FALSE);
5544
5545 /* don't read in if there are files on the command-line or if writing: */
5546 if (xline != NULL && !writing && ARGCOUNT == 0
5547 && find_viminfo_parameter('%') != NULL)
5548 {
5549 /* Format is: <fname> Tab <lnum> Tab <col>.
5550 * Watch out for a Tab in the file name, work from the end. */
5551 lnum = 0;
5552 col = 0;
5553 tab = vim_strrchr(xline, '\t');
5554 if (tab != NULL)
5555 {
5556 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005557 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 tab = vim_strrchr(xline, '\t');
5559 if (tab != NULL)
5560 {
5561 *tab++ = '\0';
5562 lnum = atol((char *)tab);
5563 }
5564 }
5565
5566 /* Expand "~/" in the file name at "line + 1" to a full path.
5567 * Then try shortening it by comparing with the current directory */
5568 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005569 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570
5571 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5572 if (buf != NULL) /* just in case... */
5573 {
5574 buf->b_last_cursor.lnum = lnum;
5575 buf->b_last_cursor.col = col;
5576 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5577 }
5578 }
5579 vim_free(xline);
5580
5581 return viminfo_readline(virp);
5582}
5583
5584 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005585write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586{
5587 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005589 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005591 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592
5593 if (find_viminfo_parameter('%') == NULL)
5594 return;
5595
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005596 /* Without a number -1 is returned: do all buffers. */
5597 max_buffers = get_viminfo_parameter('%');
5598
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005600#define LINE_BUF_LEN (MAXPATHL + 40)
5601 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 if (line == NULL)
5603 return;
5604
Bram Moolenaarf740b292006-02-16 22:11:02 +00005605 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005608 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005609 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 {
5611 if (buf->b_fname == NULL
5612 || !buf->b_p_bl
5613#ifdef FEAT_QUICKFIX
5614 || bt_quickfix(buf)
5615#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005616#ifdef FEAT_TERMINAL
5617 || bt_terminal(buf)
5618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 || removable(buf->b_ffname))
5620 continue;
5621
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005622 if (max_buffers-- == 0)
5623 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 putc('%', fp);
5625 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005626 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 (long)buf->b_last_cursor.lnum,
5628 buf->b_last_cursor.col);
5629 viminfo_writestring(fp, line);
5630 }
5631 vim_free(line);
5632}
5633#endif
5634
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005635/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005636 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5637 */
5638 int
5639bt_normal(buf_T *buf)
5640{
5641 return buf != NULL && buf->b_p_bt[0] == NUL;
5642}
5643
Bram Moolenaar113e1072019-01-20 15:30:40 +01005644#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005645/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005646 * Return TRUE if "buf" is the quickfix buffer.
5647 */
5648 int
5649bt_quickfix(buf_T *buf)
5650{
5651 return buf != NULL && buf->b_p_bt[0] == 'q';
5652}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005653#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005654
Bram Moolenaar113e1072019-01-20 15:30:40 +01005655#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005656/*
5657 * Return TRUE if "buf" is a terminal buffer.
5658 */
5659 int
5660bt_terminal(buf_T *buf)
5661{
5662 return buf != NULL && buf->b_p_bt[0] == 't';
5663}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005664#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005665
5666/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005667 * Return TRUE if "buf" is a help buffer.
5668 */
5669 int
5670bt_help(buf_T *buf)
5671{
5672 return buf != NULL && buf->b_help;
5673}
5674
5675/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005676 * Return TRUE if "buf" is a prompt buffer.
5677 */
5678 int
5679bt_prompt(buf_T *buf)
5680{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005681 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5682}
5683
5684/*
5685 * Return TRUE if "buf" is a buffer for a popup window.
5686 */
5687 int
5688bt_popup(buf_T *buf)
5689{
5690 return buf != NULL && buf->b_p_bt != NULL
5691 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005692}
5693
5694/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005695 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5696 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005697 */
5698 int
5699bt_nofile(buf_T *buf)
5700{
5701 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5702 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005703 || buf->b_p_bt[0] == 't'
5704 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005705}
5706
5707/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005708 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5709 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005710 */
5711 int
5712bt_dontwrite(buf_T *buf)
5713{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005714 return buf != NULL && (buf->b_p_bt[0] == 'n'
5715 || buf->b_p_bt[0] == 't'
5716 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005717}
5718
Bram Moolenaar113e1072019-01-20 15:30:40 +01005719#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005720 int
5721bt_dontwrite_msg(buf_T *buf)
5722{
5723 if (bt_dontwrite(buf))
5724 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005725 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005726 return TRUE;
5727 }
5728 return FALSE;
5729}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005730#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005731
5732/*
5733 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5734 * and 'bufhidden'.
5735 */
5736 int
5737buf_hide(buf_T *buf)
5738{
5739 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5740 switch (buf->b_p_bh[0])
5741 {
5742 case 'u': /* "unload" */
5743 case 'w': /* "wipe" */
5744 case 'd': return FALSE; /* "delete" */
5745 case 'h': return TRUE; /* "hide" */
5746 }
5747 return (p_hid || cmdmod.hide);
5748}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749
5750/*
5751 * Return special buffer name.
5752 * Returns NULL when the buffer has a normal file name.
5753 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005754 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005755buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005757#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005759 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005760 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005761 * Differentiate between the quickfix and location list buffers using
5762 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005763 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005764 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005765 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005766 else
5767 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005770
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005772 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 if (bt_nofile(buf))
5774 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005775#ifdef FEAT_TERMINAL
5776 if (buf->b_term != NULL)
5777 return term_get_status_text(buf->b_term);
5778#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005779 if (buf->b_fname != NULL)
5780 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005781#ifdef FEAT_JOB_CHANNEL
5782 if (bt_prompt(buf))
5783 return (char_u *)_("[Prompt]");
5784#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005785 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005787
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005789 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 return NULL;
5791}
5792
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005793#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005794 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5795 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005796# define SWITCH_TO_WIN
5797
5798/*
5799 * Find a window that contains "buf" and switch to it.
5800 * If there is no such window, use the current window and change "curbuf".
5801 * Caller must initialize save_curbuf to NULL.
5802 * restore_win_for_buf() MUST be called later!
5803 */
5804 void
5805switch_to_win_for_buf(
5806 buf_T *buf,
5807 win_T **save_curwinp,
5808 tabpage_T **save_curtabp,
5809 bufref_T *save_curbuf)
5810{
5811 win_T *wp;
5812 tabpage_T *tp;
5813
5814 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5815 switch_buffer(save_curbuf, buf);
5816 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5817 {
5818 restore_win(*save_curwinp, *save_curtabp, TRUE);
5819 switch_buffer(save_curbuf, buf);
5820 }
5821}
5822
5823 void
5824restore_win_for_buf(
5825 win_T *save_curwin,
5826 tabpage_T *save_curtab,
5827 bufref_T *save_curbuf)
5828{
5829 if (save_curbuf->br_buf == NULL)
5830 restore_win(save_curwin, save_curtab, TRUE);
5831 else
5832 restore_buffer(save_curbuf);
5833}
5834#endif
5835
Bram Moolenaar4033c552017-09-16 20:54:51 +02005836#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005837/*
5838 * Find a window for buffer "buf".
5839 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5840 * If not found FAIL is returned.
5841 */
5842 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005843find_win_for_buf(
5844 buf_T *buf,
5845 win_T **wp,
5846 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005847{
5848 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5849 if ((*wp)->w_buffer == buf)
5850 goto win_found;
5851 return FAIL;
5852win_found:
5853 return OK;
5854}
5855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857/*
5858 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5859 */
5860 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005861set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862{
5863 if (on != curbuf->b_p_bl)
5864 {
5865 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 if (on)
5867 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5868 else
5869 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 }
5871}
5872
5873/*
5874 * Read the file for "buf" again and check if the contents changed.
5875 * Return TRUE if it changed or this could not be checked.
5876 */
5877 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005878buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879{
5880 buf_T *newbuf;
5881 int differ = TRUE;
5882 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 exarg_T ea;
5885
5886 /* Allocate a buffer without putting it in the buffer list. */
5887 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5888 if (newbuf == NULL)
5889 return TRUE;
5890
5891 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5892 if (prep_exarg(&ea, buf) == FAIL)
5893 {
5894 wipe_buffer(newbuf, FALSE);
5895 return TRUE;
5896 }
5897
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 /* set curwin/curbuf to buf and save a few things */
5899 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900
Bram Moolenaar4770d092006-01-12 23:22:24 +00005901 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 && readfile(buf->b_ffname, buf->b_fname,
5903 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5904 &ea, READ_NEW | READ_DUMMY) == OK)
5905 {
5906 /* compare the two files line by line */
5907 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5908 {
5909 differ = FALSE;
5910 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5911 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5912 {
5913 differ = TRUE;
5914 break;
5915 }
5916 }
5917 }
5918 vim_free(ea.cmd);
5919
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 /* restore curwin/curbuf and a few other things */
5921 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922
5923 if (curbuf != newbuf) /* safety check */
5924 wipe_buffer(newbuf, FALSE);
5925
5926 return differ;
5927}
5928
5929/*
5930 * Wipe out a buffer and decrement the last buffer number if it was used for
5931 * this buffer. Call this to wipe out a temp buffer that does not contain any
5932 * marks.
5933 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005935wipe_buffer(
5936 buf_T *buf,
5937 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938{
5939 if (buf->b_fnum == top_file_num - 1)
5940 --top_file_num;
5941
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005943 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005944
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005945 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005946
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005948 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949}