blob: 284addfce23e457925687dc47278e0b5e831913b [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,
459 int abort_if_last UNUSED)
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 Moolenaar0c72fe42018-03-29 16:04:08 +0200975#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200976 bufref_T old_curbuf;
977
978 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
980 swap_exists_action = SEA_DIALOG;
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200981#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
983 start, dir, count, eap->forceit);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200984#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
986 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200987# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000988 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000989
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000990 /* Reset the error/interrupt/exception state here so that
991 * aborting() returns FALSE when closing a window. */
992 enter_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200993# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000994
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000995 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 win_close(curwin, TRUE);
997 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000998 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000999
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001000# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001001 /* Restore the error/interrupt/exception state if not discarded by a
1002 * new aborting error, interrupt, or uncaught exception. */
1003 leave_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001004# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 }
1006 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001007 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008#endif
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001009}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010
Bram Moolenaare64ac772005-12-07 20:54:59 +00001011#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012/*
1013 * Handle the situation of swap_exists_action being set.
1014 * It is allowed for "old_curbuf" to be NULL or invalid.
1015 */
1016 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001017handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001019# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001020 cleanup_T cs;
1021# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001022# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001023 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001024# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001025 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 if (swap_exists_action == SEA_QUIT)
1028 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001029# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001030 /* Reset the error/interrupt/exception state here so that
1031 * aborting() returns FALSE when closing a buffer. */
1032 enter_cleanup(&cs);
1033# endif
1034
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 /* User selected Quit at ATTENTION prompt. Go back to previous
1036 * buffer. If that buffer is gone or the same as the current one,
1037 * open a new, empty buffer. */
1038 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001039 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001040 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001041 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1042 || old_curbuf->br_buf == curbuf)
1043 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1044 else
1045 buf = old_curbuf->br_buf;
1046 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001047 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001048 int old_msg_silent = msg_silent;
1049
1050 if (shortmess(SHM_FILEINFO))
1051 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001052 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001053 // restore msg_silent, so that the command line will be shown
1054 msg_silent = old_msg_silent;
1055
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001056# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001057 if (old_tw != curbuf->b_p_tw)
1058 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001059# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001060 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001062
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001063# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001064 /* Restore the error/interrupt/exception state if not discarded by a
1065 * new aborting error, interrupt, or uncaught exception. */
1066 leave_cleanup(&cs);
1067# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 }
1069 else if (swap_exists_action == SEA_RECOVER)
1070 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001071# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072 /* Reset the error/interrupt/exception state here so that
1073 * aborting() returns FALSE when closing a buffer. */
1074 enter_cleanup(&cs);
1075# endif
1076
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 /* User selected Recover at ATTENTION prompt. */
1078 msg_scroll = TRUE;
1079 ml_recover();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001080 msg_puts("\n"); /* don't overwrite the last message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001082 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001083
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001084# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001085 /* Restore the error/interrupt/exception state if not discarded by a
1086 * new aborting error, interrupt, or uncaught exception. */
1087 leave_cleanup(&cs);
1088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 }
1090 swap_exists_action = SEA_NONE;
1091}
1092#endif
1093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094/*
1095 * do_bufdel() - delete or unload buffer(s)
1096 *
1097 * addr_count == 0: ":bdel" - delete current buffer
1098 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1099 * buffer "end_bnr", then any other arguments.
1100 * addr_count == 2: ":N,N bdel" - delete buffers in range
1101 *
1102 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1103 * DOBUF_DEL (":bdel")
1104 *
1105 * Returns error message or NULL
1106 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001107 char *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001108do_bufdel(
1109 int command,
1110 char_u *arg, /* pointer to extra arguments */
1111 int addr_count,
1112 int start_bnr, /* first buffer number in a range */
1113 int end_bnr, /* buffer nr or last buffer nr in a range */
1114 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115{
1116 int do_current = 0; /* delete current buffer? */
1117 int deleted = 0; /* number of buffers deleted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001118 char *errormsg = NULL; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 int bnr; /* buffer number */
1120 char_u *p;
1121
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 if (addr_count == 0)
1123 {
1124 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1125 }
1126 else
1127 {
1128 if (addr_count == 2)
1129 {
1130 if (*arg) /* both range and argument is not allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001131 return _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 bnr = start_bnr;
1133 }
1134 else /* addr_count == 1 */
1135 bnr = end_bnr;
1136
1137 for ( ;!got_int; ui_breakcheck())
1138 {
1139 /*
1140 * delete the current buffer last, otherwise when the
1141 * current buffer is deleted, the next buffer becomes
1142 * the current one and will be loaded, which may then
1143 * also be deleted, etc.
1144 */
1145 if (bnr == curbuf->b_fnum)
1146 do_current = bnr;
1147 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1148 forceit) == OK)
1149 ++deleted;
1150
1151 /*
1152 * find next buffer number to delete/unload
1153 */
1154 if (addr_count == 2)
1155 {
1156 if (++bnr > end_bnr)
1157 break;
1158 }
1159 else /* addr_count == 1 */
1160 {
1161 arg = skipwhite(arg);
1162 if (*arg == NUL)
1163 break;
1164 if (!VIM_ISDIGIT(*arg))
1165 {
1166 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001167 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1168 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 if (bnr < 0) /* failed */
1170 break;
1171 arg = p;
1172 }
1173 else
1174 bnr = getdigits(&arg);
1175 }
1176 }
1177 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1178 FORWARD, do_current, forceit) == OK)
1179 ++deleted;
1180
1181 if (deleted == 0)
1182 {
1183 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001184 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001186 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001188 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001189 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 }
1191 else if (deleted >= p_report)
1192 {
1193 if (command == DOBUF_UNLOAD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001194 smsg(NGETTEXT("%d buffer unloaded",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001195 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 else if (command == DOBUF_DEL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001197 smsg(NGETTEXT("%d buffer deleted",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001198 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001200 smsg(NGETTEXT("%d buffer wiped out",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001201 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 }
1203 }
1204
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205
1206 return errormsg;
1207}
1208
Bram Moolenaara02471e2014-01-10 16:43:14 +01001209/*
1210 * Make the current buffer empty.
1211 * Used when it is wiped out and it's the last buffer.
1212 */
1213 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001214empty_curbuf(
1215 int close_others,
1216 int forceit,
1217 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001218{
1219 int retval;
1220 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001221 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001222
1223 if (action == DOBUF_UNLOAD)
1224 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001225 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001226 return FAIL;
1227 }
1228
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001229 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001230 if (close_others)
1231 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001232 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001233
1234 setpcmark();
1235 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1236 forceit ? ECMD_FORCEIT : 0, curwin);
1237
1238 /*
1239 * do_ecmd() may create a new buffer, then we have to delete
1240 * the old one. But do_ecmd() may have done that already, check
1241 * if the buffer still exists.
1242 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001243 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001244 close_buffer(NULL, buf, action, FALSE);
1245 if (!close_others)
1246 need_fileinfo = FALSE;
1247 return retval;
1248}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001249
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250/*
1251 * Implementation of the commands for the buffer list.
1252 *
1253 * action == DOBUF_GOTO go to specified buffer
1254 * action == DOBUF_SPLIT split window and go to specified buffer
1255 * action == DOBUF_UNLOAD unload specified buffer(s)
1256 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1257 * action == DOBUF_WIPE delete specified buffer(s) really
1258 *
1259 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1260 * start == DOBUF_FIRST go to "count" buffer from first buffer
1261 * start == DOBUF_LAST go to "count" buffer from last buffer
1262 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1263 *
1264 * Return FAIL or OK.
1265 */
1266 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001267do_buffer(
1268 int action,
1269 int start,
1270 int dir, /* FORWARD or BACKWARD */
1271 int count, /* buffer number or number of buffers */
1272 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273{
1274 buf_T *buf;
1275 buf_T *bp;
1276 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1277 || action == DOBUF_WIPE);
1278
1279 switch (start)
1280 {
1281 case DOBUF_FIRST: buf = firstbuf; break;
1282 case DOBUF_LAST: buf = lastbuf; break;
1283 default: buf = curbuf; break;
1284 }
1285 if (start == DOBUF_MOD) /* find next modified buffer */
1286 {
1287 while (count-- > 0)
1288 {
1289 do
1290 {
1291 buf = buf->b_next;
1292 if (buf == NULL)
1293 buf = firstbuf;
1294 }
1295 while (buf != curbuf && !bufIsChanged(buf));
1296 }
1297 if (!bufIsChanged(buf))
1298 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001299 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 return FAIL;
1301 }
1302 }
1303 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1304 {
1305 while (buf != NULL && buf->b_fnum != count)
1306 buf = buf->b_next;
1307 }
1308 else
1309 {
1310 bp = NULL;
1311 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1312 {
1313 /* remember the buffer where we start, we come back there when all
1314 * buffers are unlisted. */
1315 if (bp == NULL)
1316 bp = buf;
1317 if (dir == FORWARD)
1318 {
1319 buf = buf->b_next;
1320 if (buf == NULL)
1321 buf = firstbuf;
1322 }
1323 else
1324 {
1325 buf = buf->b_prev;
1326 if (buf == NULL)
1327 buf = lastbuf;
1328 }
1329 /* don't count unlisted buffers */
1330 if (unload || buf->b_p_bl)
1331 {
1332 --count;
1333 bp = NULL; /* use this buffer as new starting point */
1334 }
1335 if (bp == buf)
1336 {
1337 /* back where we started, didn't find anything. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001338 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 return FAIL;
1340 }
1341 }
1342 }
1343
1344 if (buf == NULL) /* could not find it */
1345 {
1346 if (start == DOBUF_FIRST)
1347 {
1348 /* don't warn when deleting */
1349 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001350 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 }
1352 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001353 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001355 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 return FAIL;
1357 }
1358
1359#ifdef FEAT_GUI
1360 need_mouse_correct = TRUE;
1361#endif
1362
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 /*
1364 * delete buffer buf from memory and/or the list
1365 */
1366 if (unload)
1367 {
1368 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001369 bufref_T bufref;
1370
Bram Moolenaar94f01952018-09-01 15:30:03 +02001371 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001372 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001373
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001374 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
1376 /* When unloading or deleting a buffer that's already unloaded and
1377 * unlisted: fail silently. */
1378 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1379 return FAIL;
1380
1381 if (!forceit && bufIsChanged(buf))
1382 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001383#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 if ((p_confirm || cmdmod.confirm) && p_write)
1385 {
1386 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001387 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 /* Autocommand deleted buffer, oops! It's not changed
1389 * now. */
1390 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001391 /* If it's still changed fail silently, the dialog already
1392 * mentioned why it fails. */
1393 if (bufIsChanged(buf))
1394 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001396 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001397#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001399 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 buf->b_fnum);
1401 return FAIL;
1402 }
1403 }
1404
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001405 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001406 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001407 end_visual_mode();
1408
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 /*
1410 * If deleting the last (listed) buffer, make it empty.
1411 * The last (listed) buffer cannot be unloaded.
1412 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001413 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 if (bp->b_p_bl && bp != buf)
1415 break;
1416 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001417 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 /*
1420 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001421 * (unless it's the only window). Repeat this so long as we end up in
1422 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001424 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001425 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001426 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001427 {
1428 if (win_close(curwin, FALSE) == FAIL)
1429 break;
1430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431
1432 /*
1433 * If the buffer to be deleted is not the current one, delete it here.
1434 */
1435 if (buf != curbuf)
1436 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001437 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001438 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001439 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 return OK;
1441 }
1442
1443 /*
1444 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001445 * There should be another, otherwise it would have been handled
1446 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001447 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 * Then prefer the buffer we most recently visited.
1449 * Else try to find one that is loaded, after the current buffer,
1450 * then before the current buffer.
1451 * Finally use any buffer.
1452 */
1453 buf = NULL; /* selected buffer */
1454 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001455 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1456 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001458 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 {
1460 int jumpidx;
1461
1462 jumpidx = curwin->w_jumplistidx - 1;
1463 if (jumpidx < 0)
1464 jumpidx = curwin->w_jumplistlen - 1;
1465
1466 forward = jumpidx;
1467 while (jumpidx != curwin->w_jumplistidx)
1468 {
1469 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1470 if (buf != NULL)
1471 {
1472 if (buf == curbuf || !buf->b_p_bl)
1473 buf = NULL; /* skip current and unlisted bufs */
1474 else if (buf->b_ml.ml_mfp == NULL)
1475 {
1476 /* skip unloaded buf, but may keep it for later */
1477 if (bp == NULL)
1478 bp = buf;
1479 buf = NULL;
1480 }
1481 }
1482 if (buf != NULL) /* found a valid buffer: stop searching */
1483 break;
1484 /* advance to older entry in jump list */
1485 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1486 break;
1487 if (--jumpidx < 0)
1488 jumpidx = curwin->w_jumplistlen - 1;
1489 if (jumpidx == forward) /* List exhausted for sure */
1490 break;
1491 }
1492 }
1493#endif
1494
1495 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1496 {
1497 forward = TRUE;
1498 buf = curbuf->b_next;
1499 for (;;)
1500 {
1501 if (buf == NULL)
1502 {
1503 if (!forward) /* tried both directions */
1504 break;
1505 buf = curbuf->b_prev;
1506 forward = FALSE;
1507 continue;
1508 }
1509 /* in non-help buffer, try to skip help buffers, and vv */
1510 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1511 {
1512 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1513 break;
1514 if (bp == NULL) /* remember unloaded buf for later */
1515 bp = buf;
1516 }
1517 if (forward)
1518 buf = buf->b_next;
1519 else
1520 buf = buf->b_prev;
1521 }
1522 }
1523 if (buf == NULL) /* No loaded buffer, use unloaded one */
1524 buf = bp;
1525 if (buf == NULL) /* No loaded buffer, find listed one */
1526 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001527 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 if (buf->b_p_bl && buf != curbuf)
1529 break;
1530 }
1531 if (buf == NULL) /* Still no buffer, just take one */
1532 {
1533 if (curbuf->b_next != NULL)
1534 buf = curbuf->b_next;
1535 else
1536 buf = curbuf->b_prev;
1537 }
1538 }
1539
Bram Moolenaara02471e2014-01-10 16:43:14 +01001540 if (buf == NULL)
1541 {
1542 /* Autocommands must have wiped out all other buffers. Only option
1543 * now is to make the current buffer empty. */
1544 return empty_curbuf(FALSE, forceit, action);
1545 }
1546
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 /*
1548 * make buf current buffer
1549 */
1550 if (action == DOBUF_SPLIT) /* split window first */
1551 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001552 /* If 'switchbuf' contains "useopen": jump to first window containing
1553 * "buf" if one exists */
1554 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001555 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001556 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001557 * page containing "buf" if one exists */
1558 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 return OK;
1560 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 return FAIL;
1562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563
1564 /* go to current buffer - nothing to do */
1565 if (buf == curbuf)
1566 return OK;
1567
1568 /*
1569 * Check if the current buffer may be abandoned.
1570 */
1571 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1572 {
1573#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1574 if ((p_confirm || cmdmod.confirm) && p_write)
1575 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001576 bufref_T bufref;
1577
1578 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001580 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 /* Autocommand deleted buffer, oops! */
1582 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 }
1584 if (bufIsChanged(curbuf))
1585#endif
1586 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001587 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 return FAIL;
1589 }
1590 }
1591
1592 /* Go to the other buffer. */
1593 set_curbuf(buf, action);
1594
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001596 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001598#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 if (aborting()) /* autocmds may abort script processing */
1600 return FAIL;
1601#endif
1602
1603 return OK;
1604}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605
1606/*
1607 * Set current buffer to "buf". Executes autocommands and closes current
1608 * buffer. "action" tells how to close the current buffer:
1609 * DOBUF_GOTO free or hide it
1610 * DOBUF_SPLIT nothing
1611 * DOBUF_UNLOAD unload it
1612 * DOBUF_DEL delete it
1613 * DOBUF_WIPE wipe it out
1614 */
1615 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001616set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617{
1618 buf_T *prevbuf;
1619 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1620 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001621#ifdef FEAT_SYN_HL
1622 long old_tw = curbuf->b_p_tw;
1623#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001624 bufref_T newbufref;
1625 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626
1627 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001628 if (!cmdmod.keepalt)
1629 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001630 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 /* Don't restart Select mode after switching to another buffer. */
1633 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001635 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1636 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001638 set_bufref(&prevbufref, prevbuf);
1639 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001641 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1642 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001643 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001644 || (bufref_valid(&prevbufref)
1645 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001646#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001647 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001649 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001651#ifdef FEAT_SYN_HL
1652 if (prevbuf == curwin->w_buffer)
1653 reset_synblock(curwin);
1654#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001656 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001657#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001658 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001660 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001662 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001663 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001664 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001665 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1667 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001668 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001669 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001670 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001671 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001672 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001675 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001676 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001677 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1678 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001679#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001680 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001682 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001683 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001685#ifdef FEAT_SYN_HL
1686 if (old_tw != curbuf->b_p_tw)
1687 check_colorcolumn(curwin);
1688#endif
1689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690}
1691
1692/*
1693 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001694 * Old curbuf must have been abandoned already! This also means "curbuf" may
1695 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 */
1697 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001698enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699{
1700 /* Copy buffer and window local option values. Not for a help buffer. */
1701 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1702 if (!buf->b_help)
1703 get_winopts(buf);
1704#ifdef FEAT_FOLDING
1705 else
1706 /* Remove all folds in the window. */
1707 clearFolding(curwin);
1708 foldUpdateAll(curwin); /* update folds (later). */
1709#endif
1710
1711 /* Get the buffer in the current window. */
1712 curwin->w_buffer = buf;
1713 curbuf = buf;
1714 ++curbuf->b_nwindows;
1715
1716#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001717 if (curwin->w_p_diff)
1718 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719#endif
1720
Bram Moolenaara971b822011-09-14 14:43:25 +02001721#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001722 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001723#endif
1724
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 /* Cursor on first line by default. */
1726 curwin->w_cursor.lnum = 1;
1727 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001730 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001732 /* mark cursor position as being invalid */
1733 curwin->w_valid = 0;
1734
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001735 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1736 curbuf->b_last_cursor.col, TRUE);
1737
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 /* Make sure the buffer is loaded. */
1739 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001740 {
1741 /* If there is no filetype, allow for detecting one. Esp. useful for
1742 * ":ball" used in a autocommand. If there already is a filetype we
1743 * might prefer to keep it. */
1744 if (*curbuf->b_p_ft == NUL)
1745 did_filetype = FALSE;
1746
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001747 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 else
1750 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001751 if (!msg_silent)
1752 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001755#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001757#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1759 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 }
1761
1762 /* If autocommands did not change the cursor position, restore cursor lnum
1763 * and possibly cursor col. */
1764 if (curwin->w_cursor.lnum == 1 && inindent(0))
1765 buflist_getfpos();
1766
1767 check_arg_idx(curwin); /* check for valid arg_idx */
1768#ifdef FEAT_TITLE
1769 maketitle();
1770#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001771 /* when autocmds didn't change it */
1772 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1774
Bram Moolenaar009b2592004-10-24 19:18:58 +00001775#ifdef FEAT_NETBEANS_INTG
1776 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001777 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001778#endif
1779
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001780 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001781 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782
1783#ifdef FEAT_KEYMAP
1784 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001785 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001787#ifdef FEAT_SPELL
1788 /* May need to set the spell language. Can only do this after the buffer
1789 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001790 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1791 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001792#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001793#ifdef FEAT_VIMINFO
1794 curbuf->b_last_used = vim_time();
1795#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001796
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 redraw_later(NOT_VALID);
1798}
1799
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001800#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1801/*
1802 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001803 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001804 */
1805 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001806do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001807{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001808 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001809 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001810 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001811 shorten_fnames(TRUE);
1812}
1813#endif
1814
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001815 void
1816no_write_message(void)
1817{
1818#ifdef FEAT_TERMINAL
1819 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001820 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001821 else
1822#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001823 emsg(_("E37: No write since last change (add ! to override)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001824}
1825
1826 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001827no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001828{
1829#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001830 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001831 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001832 else
1833#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001834 emsg(_("E37: No write since last change"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001835}
1836
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837/*
1838 * functions for dealing with the buffer list
1839 */
1840
Bram Moolenaar480778b2016-07-14 22:09:39 +02001841static int top_file_num = 1; /* highest file number */
1842
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001844 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1845 * only one window. That means it can be re-used.
1846 */
1847 int
1848curbuf_reusable(void)
1849{
1850 return (curbuf != NULL
1851 && curbuf->b_ffname == NULL
1852 && curbuf->b_nwindows <= 1
1853 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001854#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001855 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001856#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001857 && !curbufIsChanged());
1858}
1859
1860/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 * Add a file name to the buffer list. Return a pointer to the buffer.
1862 * If the same file name already exists return a pointer to that buffer.
1863 * If it does not exist, or if fname == NULL, a new entry is created.
1864 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1865 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1866 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001867 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001868 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1869 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 * This is the ONLY way to create a new buffer.
1871 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001873buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001874 char_u *ffname_arg, // full path of fname or relative
1875 char_u *sfname_arg, // short fname or NULL
1876 linenr_T lnum, // preferred cursor line
1877 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001879 char_u *ffname = ffname_arg;
1880 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 buf_T *buf;
1882#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001883 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884#endif
1885
Bram Moolenaar480778b2016-07-14 22:09:39 +02001886 if (top_file_num == 1)
1887 hash_init(&buf_hashtab);
1888
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001889 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890
1891 /*
1892 * If file name already exists in the list, update the entry.
1893 */
1894#ifdef UNIX
1895 /* On Unix we can use inode numbers when the file exists. Works better
1896 * for hard links. */
1897 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1898 st.st_dev = (dev_T)-1;
1899#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001900 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901#ifdef UNIX
1902 buflist_findname_stat(ffname, &st)
1903#else
1904 buflist_findname(ffname)
1905#endif
1906 ) != NULL)
1907 {
1908 vim_free(ffname);
1909 if (lnum != 0)
1910 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001911
1912 if ((flags & BLN_NOOPT) == 0)
1913 /* copy the options now, if 'cpo' doesn't have 's' and not done
1914 * already */
1915 buf_copy_options(buf, 0);
1916
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1918 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001919 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001920
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001922 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001924 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001925 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001926 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001927 return NULL;
1928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 }
1930 return buf;
1931 }
1932
1933 /*
1934 * If the current buffer has no name and no contents, use the current
1935 * buffer. Otherwise: Need to allocate a new buffer structure.
1936 *
1937 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001938 * (A spell file buffer is allocated in spell.c, but that's not a normal
1939 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 */
1941 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001942 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 {
1944 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 /* It's like this buffer is deleted. Watch out for autocommands that
1946 * change curbuf! If that happens, allocate a new buffer anyway. */
1947 if (curbuf->b_p_bl)
1948 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1949 if (buf == curbuf)
1950 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001951#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001952 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 {
1957 /* Make sure 'bufhidden' and 'buftype' are empty */
1958 clear_string_option(&buf->b_p_bh);
1959 clear_string_option(&buf->b_p_bt);
1960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 }
1962 if (buf != curbuf || curbuf == NULL)
1963 {
1964 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1965 if (buf == NULL)
1966 {
1967 vim_free(ffname);
1968 return NULL;
1969 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001970#ifdef FEAT_EVAL
1971 /* init b: variables */
1972 buf->b_vars = dict_alloc();
1973 if (buf->b_vars == NULL)
1974 {
1975 vim_free(ffname);
1976 vim_free(buf);
1977 return NULL;
1978 }
1979 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1980#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001981 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983
1984 if (ffname != NULL)
1985 {
1986 buf->b_ffname = ffname;
1987 buf->b_sfname = vim_strsave(sfname);
1988 }
1989
1990 clear_wininfo(buf);
1991 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1992
1993 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1994 || buf->b_wininfo == NULL)
1995 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001996 if (buf->b_sfname != buf->b_ffname)
1997 VIM_CLEAR(buf->b_sfname);
1998 else
1999 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002000 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 if (buf != curbuf)
2002 free_buffer(buf);
2003 return NULL;
2004 }
2005
2006 if (buf == curbuf)
2007 {
2008 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002009 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 if (buf != curbuf) /* autocommands deleted the buffer! */
2011 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002012#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002013 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 return NULL;
2015#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002017
2018 /* Init the options. */
2019 buf->b_p_initialized = FALSE;
2020 buf_copy_options(buf, BCO_ENTER);
2021
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022#ifdef FEAT_KEYMAP
2023 /* need to reload lmaps and set b:keymap_name */
2024 curbuf->b_kmap_state |= KEYMAP_INIT;
2025#endif
2026 }
2027 else
2028 {
2029 /*
2030 * put new buffer at the end of the buffer list
2031 */
2032 buf->b_next = NULL;
2033 if (firstbuf == NULL) /* buffer list is empty */
2034 {
2035 buf->b_prev = NULL;
2036 firstbuf = buf;
2037 }
2038 else /* append new buffer at end of list */
2039 {
2040 lastbuf->b_next = buf;
2041 buf->b_prev = lastbuf;
2042 }
2043 lastbuf = buf;
2044
2045 buf->b_fnum = top_file_num++;
2046 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2047 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002048 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 if (emsg_silent == 0)
2050 {
2051 out_flush();
2052 ui_delay(3000L, TRUE); /* make sure it is noticed */
2053 }
2054 top_file_num = 1;
2055 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002056 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057
2058 /*
2059 * Always copy the options from the current buffer.
2060 */
2061 buf_copy_options(buf, BCO_ALWAYS);
2062 }
2063
2064 buf->b_wininfo->wi_fpos.lnum = lnum;
2065 buf->b_wininfo->wi_win = curwin;
2066
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002067#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002068 hash_init(&buf->b_s.b_keywtab);
2069 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070#endif
2071
2072 buf->b_fname = buf->b_sfname;
2073#ifdef UNIX
2074 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002075 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 else
2077 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002078 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 buf->b_dev = st.st_dev;
2080 buf->b_ino = st.st_ino;
2081 }
2082#endif
2083 buf->b_u_synced = TRUE;
2084 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002085 if (flags & BLN_DUMMY)
2086 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 buf_clear_file(buf);
2088 clrallmarks(buf); /* clear marks */
2089 fmarks_check_names(buf); /* check file marks for this file */
2090 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 if (!(flags & BLN_DUMMY))
2092 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002093 bufref_T bufref;
2094
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002095 /* Tricky: these autocommands may change the buffer list. They could
2096 * also split the window with re-using the one empty buffer. This may
2097 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002098 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002099 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002100 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002101 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002103 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002104 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002105 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002106 return NULL;
2107 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002108#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002109 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113
2114 return buf;
2115}
2116
2117/*
2118 * Free the memory for the options of a buffer.
2119 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2120 * 'fileencoding'.
2121 */
2122 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002123free_buf_options(
2124 buf_T *buf,
2125 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126{
2127 if (free_p_ff)
2128 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 clear_string_option(&buf->b_p_bh);
2132 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 }
2134#ifdef FEAT_FIND_ID
2135 clear_string_option(&buf->b_p_def);
2136 clear_string_option(&buf->b_p_inc);
2137# ifdef FEAT_EVAL
2138 clear_string_option(&buf->b_p_inex);
2139# endif
2140#endif
2141#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2142 clear_string_option(&buf->b_p_inde);
2143 clear_string_option(&buf->b_p_indk);
2144#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002145#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2146 clear_string_option(&buf->b_p_bexpr);
2147#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002148#if defined(FEAT_CRYPT)
2149 clear_string_option(&buf->b_p_cm);
2150#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002151 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002152#if defined(FEAT_EVAL)
2153 clear_string_option(&buf->b_p_fex);
2154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155#ifdef FEAT_CRYPT
2156 clear_string_option(&buf->b_p_key);
2157#endif
2158 clear_string_option(&buf->b_p_kp);
2159 clear_string_option(&buf->b_p_mps);
2160 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002161 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002163#ifdef FEAT_VARTABS
2164 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002165 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002166 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002167 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002168 buf->b_p_vsts_array = NULL;
2169 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002170 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172#ifdef FEAT_KEYMAP
2173 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002174 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 ga_clear(&buf->b_kmap_ga);
2176#endif
2177#ifdef FEAT_COMMENTS
2178 clear_string_option(&buf->b_p_com);
2179#endif
2180#ifdef FEAT_FOLDING
2181 clear_string_option(&buf->b_p_cms);
2182#endif
2183 clear_string_option(&buf->b_p_nf);
2184#ifdef FEAT_SYN_HL
2185 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002186 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002187#endif
2188#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002189 clear_string_option(&buf->b_s.b_p_spc);
2190 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002191 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002192 buf->b_s.b_cap_prog = NULL;
2193 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194#endif
2195#ifdef FEAT_SEARCHPATH
2196 clear_string_option(&buf->b_p_sua);
2197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#ifdef FEAT_CINDENT
2200 clear_string_option(&buf->b_p_cink);
2201 clear_string_option(&buf->b_p_cino);
2202#endif
2203#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2204 clear_string_option(&buf->b_p_cinw);
2205#endif
2206#ifdef FEAT_INS_EXPAND
2207 clear_string_option(&buf->b_p_cpt);
2208#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002209#ifdef FEAT_COMPL_FUNC
2210 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002211 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002212#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213#ifdef FEAT_QUICKFIX
2214 clear_string_option(&buf->b_p_gp);
2215 clear_string_option(&buf->b_p_mp);
2216 clear_string_option(&buf->b_p_efm);
2217#endif
2218 clear_string_option(&buf->b_p_ep);
2219 clear_string_option(&buf->b_p_path);
2220 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002221 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002222#ifdef FEAT_EVAL
2223 clear_string_option(&buf->b_p_tfu);
2224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225#ifdef FEAT_INS_EXPAND
2226 clear_string_option(&buf->b_p_dict);
2227 clear_string_option(&buf->b_p_tsr);
2228#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002229#ifdef FEAT_TEXTOBJ
2230 clear_string_option(&buf->b_p_qe);
2231#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002233 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002234#ifdef FEAT_LISP
2235 clear_string_option(&buf->b_p_lw);
2236#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002237 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002238 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239}
2240
2241/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002242 * Get alternate file "n".
2243 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2244 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 * if (options & GETF_SETMARK) call setpcmark()
2246 * if (options & GETF_ALT) we are jumping to an alternate file.
2247 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2248 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002249 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 */
2251 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002252buflist_getfile(
2253 int n,
2254 linenr_T lnum,
2255 int options,
2256 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257{
2258 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 pos_T *fpos;
2261 colnr_T col;
2262
2263 buf = buflist_findnr(n);
2264 if (buf == NULL)
2265 {
2266 if ((options & GETF_ALT) && n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002267 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002269 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 return FAIL;
2271 }
2272
2273 /* if alternate file is the current buffer, nothing to do */
2274 if (buf == curbuf)
2275 return OK;
2276
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002277 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002278 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002279 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002281 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002282 if (curbuf_locked())
2283 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284
2285 /* altfpos may be changed by getfile(), get it now */
2286 if (lnum == 0)
2287 {
2288 fpos = buflist_findfpos(buf);
2289 lnum = fpos->lnum;
2290 col = fpos->col;
2291 }
2292 else
2293 col = 0;
2294
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 if (options & GETF_SWITCH)
2296 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002297 /* If 'switchbuf' contains "useopen": jump to first window containing
2298 * "buf" if one exists */
2299 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002301
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002302 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002303 * page containing "buf" if one exists */
2304 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002305 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002306
2307 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2308 * current buffer isn't empty: open new tab or window */
2309 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002310 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002312 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002313 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002314 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2315 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002317 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 }
2319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320
2321 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002322 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2323 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 {
2325 --RedrawingDisabled;
2326
2327 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2328 if (!p_sol && col != 0)
2329 {
2330 curwin->w_cursor.col = col;
2331 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 curwin->w_set_curswant = TRUE;
2334 }
2335 return OK;
2336 }
2337 --RedrawingDisabled;
2338 return FAIL;
2339}
2340
2341/*
2342 * go to the last know line number for the current buffer
2343 */
2344 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002345buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346{
2347 pos_T *fpos;
2348
2349 fpos = buflist_findfpos(curbuf);
2350
2351 curwin->w_cursor.lnum = fpos->lnum;
2352 check_cursor_lnum();
2353
2354 if (p_sol)
2355 curwin->w_cursor.col = 0;
2356 else
2357 {
2358 curwin->w_cursor.col = fpos->col;
2359 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 curwin->w_set_curswant = TRUE;
2362 }
2363}
2364
Bram Moolenaar81695252004-12-29 20:58:21 +00002365#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2366/*
2367 * Find file in buffer list by name (it has to be for the current window).
2368 * Returns NULL if not found.
2369 */
2370 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002371buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002372{
2373 char_u *ffname;
2374 buf_T *buf = NULL;
2375
2376 /* First make the name into a full path name */
2377 ffname = FullName_save(fname,
2378#ifdef UNIX
2379 TRUE /* force expansion, get rid of symbolic links */
2380#else
2381 FALSE
2382#endif
2383 );
2384 if (ffname != NULL)
2385 {
2386 buf = buflist_findname(ffname);
2387 vim_free(ffname);
2388 }
2389 return buf;
2390}
2391#endif
2392
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393/*
2394 * Find file in buffer list by name (it has to be for the current window).
2395 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002396 * Skips dummy buffers.
2397 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 */
2399 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002400buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401{
2402#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002403 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404
2405 if (mch_stat((char *)ffname, &st) < 0)
2406 st.st_dev = (dev_T)-1;
2407 return buflist_findname_stat(ffname, &st);
2408}
2409
2410/*
2411 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2412 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002413 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 */
2415 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002416buflist_findname_stat(
2417 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002418 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419{
2420#endif
2421 buf_T *buf;
2422
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002423 /* Start at the last buffer, expect to find a match sooner. */
2424 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002425 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426#ifdef UNIX
2427 , stp
2428#endif
2429 ))
2430 return buf;
2431 return NULL;
2432}
2433
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434/*
2435 * Find file in buffer list by a regexp pattern.
2436 * Return fnum of the found buffer.
2437 * Return < 0 for error.
2438 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002440buflist_findpat(
2441 char_u *pattern,
2442 char_u *pattern_end, /* pointer to first char after pattern */
2443 int unlisted, /* find unlisted buffers */
2444 int diffmode UNUSED, /* find diff-mode buffers only */
2445 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446{
2447 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 int match = -1;
2449 int find_listed;
2450 char_u *pat;
2451 char_u *patend;
2452 int attempt;
2453 char_u *p;
2454 int toggledollar;
2455
2456 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2457 {
2458 if (*pattern == '%')
2459 match = curbuf->b_fnum;
2460 else
2461 match = curwin->w_alt_fnum;
2462#ifdef FEAT_DIFF
2463 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2464 match = -1;
2465#endif
2466 }
2467
2468 /*
2469 * Try four ways of matching a listed buffer:
2470 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002471 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 * attempt == 2: with '$' at end (only match at end)
2473 * attempt == 3: with '^' at start and '$' at end (only full match)
2474 * Repeat this for finding an unlisted buffer if there was no matching
2475 * listed buffer.
2476 */
2477 else
2478 {
2479 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2480 if (pat == NULL)
2481 return -1;
2482 patend = pat + STRLEN(pat) - 1;
2483 toggledollar = (patend > pat && *patend == '$');
2484
2485 /* First try finding a listed buffer. If not found and "unlisted"
2486 * is TRUE, try finding an unlisted buffer. */
2487 find_listed = TRUE;
2488 for (;;)
2489 {
2490 for (attempt = 0; attempt <= 3; ++attempt)
2491 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002492 regmatch_T regmatch;
2493
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 /* may add '^' and '$' */
2495 if (toggledollar)
2496 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2497 p = pat;
2498 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2499 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002500 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2501 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
2503 vim_free(pat);
2504 return -1;
2505 }
2506
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002507 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 if (buf->b_p_bl == find_listed
2509#ifdef FEAT_DIFF
2510 && (!diffmode || diff_mode_buf(buf))
2511#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002512 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002514 if (curtab_only)
2515 {
2516 /* Ignore the match if the buffer is not open in
2517 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002518 win_T *wp;
2519
Bram Moolenaar29323592016-07-24 22:04:11 +02002520 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002521 if (wp->w_buffer == buf)
2522 break;
2523 if (wp == NULL)
2524 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 if (match >= 0) /* already found a match */
2527 {
2528 match = -2;
2529 break;
2530 }
2531 match = buf->b_fnum; /* remember first match */
2532 }
2533
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002534 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 if (match >= 0) /* found one match */
2536 break;
2537 }
2538
2539 /* Only search for unlisted buffers if there was no match with
2540 * a listed buffer. */
2541 if (!unlisted || !find_listed || match != -1)
2542 break;
2543 find_listed = FALSE;
2544 }
2545
2546 vim_free(pat);
2547 }
2548
2549 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002550 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002552 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 return match;
2554}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555
2556#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2557
2558/*
2559 * Find all buffer names that match.
2560 * For command line expansion of ":buf" and ":sbuf".
2561 * Return OK if matches found, FAIL otherwise.
2562 */
2563 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002564ExpandBufnames(
2565 char_u *pat,
2566 int *num_file,
2567 char_u ***file,
2568 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569{
2570 int count = 0;
2571 buf_T *buf;
2572 int round;
2573 char_u *p;
2574 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002575 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576
2577 *num_file = 0; /* return values in case of FAIL */
2578 *file = NULL;
2579
Bram Moolenaar05159a02005-02-26 23:04:13 +00002580 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2581 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002583 patc = alloc((unsigned)STRLEN(pat) + 11);
2584 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002586 STRCPY(patc, "\\(^\\|[\\/]\\)");
2587 STRCPY(patc + 11, pat + 1);
2588 }
2589 else
2590 patc = pat;
2591
2592 /*
2593 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002594 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002595 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002596 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002597 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002598 regmatch_T regmatch;
2599
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002600 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002601 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002602 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2603 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002604 {
2605 if (patc != pat)
2606 vim_free(patc);
2607 return FAIL;
2608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609
2610 /*
2611 * round == 1: Count the matches.
2612 * round == 2: Build the array to keep the matches.
2613 */
2614 for (round = 1; round <= 2; ++round)
2615 {
2616 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002617 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 {
2619 if (!buf->b_p_bl) /* skip unlisted buffers */
2620 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002621 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 if (p != NULL)
2623 {
2624 if (round == 1)
2625 ++count;
2626 else
2627 {
2628 if (options & WILD_HOME_REPLACE)
2629 p = home_replace_save(buf, p);
2630 else
2631 p = vim_strsave(p);
2632 (*file)[count++] = p;
2633 }
2634 }
2635 }
2636 if (count == 0) /* no match found, break here */
2637 break;
2638 if (round == 1)
2639 {
2640 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2641 if (*file == NULL)
2642 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002643 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002644 if (patc != pat)
2645 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 return FAIL;
2647 }
2648 }
2649 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002650 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 if (count) /* match(es) found, break here */
2652 break;
2653 }
2654
Bram Moolenaar05159a02005-02-26 23:04:13 +00002655 if (patc != pat)
2656 vim_free(patc);
2657
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 *num_file = count;
2659 return (count == 0 ? FAIL : OK);
2660}
2661
2662#endif /* FEAT_CMDL_COMPL */
2663
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664/*
2665 * Check for a match on the file name for buffer "buf" with regprog "prog".
2666 */
2667 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002668buflist_match(
2669 regmatch_T *rmp,
2670 buf_T *buf,
2671 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672{
2673 char_u *match;
2674
2675 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002676 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002678 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
2680 return match;
2681}
2682
2683/*
2684 * Try matching the regexp in "prog" with file name "name".
2685 * Return "name" when there is a match, NULL when not.
2686 */
2687 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002688fname_match(
2689 regmatch_T *rmp,
2690 char_u *name,
2691 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692{
2693 char_u *match = NULL;
2694 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695
2696 if (name != NULL)
2697 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002698 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002699 rmp->rm_ic = p_fic || ignore_case;
2700 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 match = name;
2702 else
2703 {
2704 /* Replace $(HOME) with '~' and try matching again. */
2705 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002706 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 match = name;
2708 vim_free(p);
2709 }
2710 }
2711
2712 return match;
2713}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714
2715/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002716 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 */
2718 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002719buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002721 char_u key[VIM_SIZEOF_INT * 2 + 1];
2722 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723
2724 if (nr == 0)
2725 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002726 sprintf((char *)key, "%x", nr);
2727 hi = hash_find(&buf_hashtab, key);
2728
2729 if (!HASHITEM_EMPTY(hi))
2730 return (buf_T *)(hi->hi_key
2731 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 return NULL;
2733}
2734
2735/*
2736 * Get name of file 'n' in the buffer list.
2737 * When the file has no name an empty string is returned.
2738 * home_replace() is used to shorten the file name (used for marks).
2739 * Returns a pointer to allocated memory, of NULL when failed.
2740 */
2741 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002742buflist_nr2name(
2743 int n,
2744 int fullname,
2745 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746{
2747 buf_T *buf;
2748
2749 buf = buflist_findnr(n);
2750 if (buf == NULL)
2751 return NULL;
2752 return home_replace_save(helptail ? buf : NULL,
2753 fullname ? buf->b_ffname : buf->b_fname);
2754}
2755
2756/*
2757 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2758 * When "copy_options" is TRUE save the local window option values.
2759 * When "lnum" is 0 only do the options.
2760 */
2761 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002762buflist_setfpos(
2763 buf_T *buf,
2764 win_T *win,
2765 linenr_T lnum,
2766 colnr_T col,
2767 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768{
2769 wininfo_T *wip;
2770
2771 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2772 if (wip->wi_win == win)
2773 break;
2774 if (wip == NULL)
2775 {
2776 /* allocate a new entry */
2777 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2778 if (wip == NULL)
2779 return;
2780 wip->wi_win = win;
2781 if (lnum == 0) /* set lnum even when it's 0 */
2782 lnum = 1;
2783 }
2784 else
2785 {
2786 /* remove the entry from the list */
2787 if (wip->wi_prev)
2788 wip->wi_prev->wi_next = wip->wi_next;
2789 else
2790 buf->b_wininfo = wip->wi_next;
2791 if (wip->wi_next)
2792 wip->wi_next->wi_prev = wip->wi_prev;
2793 if (copy_options && wip->wi_optset)
2794 {
2795 clear_winopt(&wip->wi_opt);
2796#ifdef FEAT_FOLDING
2797 deleteFoldRecurse(&wip->wi_folds);
2798#endif
2799 }
2800 }
2801 if (lnum != 0)
2802 {
2803 wip->wi_fpos.lnum = lnum;
2804 wip->wi_fpos.col = col;
2805 }
2806 if (copy_options)
2807 {
2808 /* Save the window-specific option values. */
2809 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2810#ifdef FEAT_FOLDING
2811 wip->wi_fold_manual = win->w_fold_manual;
2812 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2813#endif
2814 wip->wi_optset = TRUE;
2815 }
2816
2817 /* insert the entry in front of the list */
2818 wip->wi_next = buf->b_wininfo;
2819 buf->b_wininfo = wip;
2820 wip->wi_prev = NULL;
2821 if (wip->wi_next)
2822 wip->wi_next->wi_prev = wip;
2823
2824 return;
2825}
2826
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002827#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002828/*
2829 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2830 * page. That's because a diff is local to a tab page.
2831 */
2832 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002833wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002834{
2835 win_T *wp;
2836
2837 if (wip->wi_opt.wo_diff)
2838 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002839 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002840 /* return FALSE when it's a window in the current tab page, thus
2841 * the buffer was in diff mode here */
2842 if (wip->wi_win == wp)
2843 return FALSE;
2844 return TRUE;
2845 }
2846 return FALSE;
2847}
2848#endif
2849
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850/*
2851 * Find info for the current window in buffer "buf".
2852 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002853 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2854 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 * Returns NULL when there isn't any info.
2856 */
2857 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002858find_wininfo(
2859 buf_T *buf,
2860 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861{
2862 wininfo_T *wip;
2863
2864 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002865 if (wip->wi_win == curwin
2866#ifdef FEAT_DIFF
2867 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2868#endif
2869 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002871
2872 /* If no wininfo for curwin, use the first in the list (that doesn't have
2873 * 'diff' set and is in another tab page). */
2874 if (wip == NULL)
2875 {
2876#ifdef FEAT_DIFF
2877 if (skip_diff_buffer)
2878 {
2879 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2880 if (!wininfo_other_tab_diff(wip))
2881 break;
2882 }
2883 else
2884#endif
2885 wip = buf->b_wininfo;
2886 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 return wip;
2888}
2889
2890/*
2891 * Reset the local window options to the values last used in this window.
2892 * If the buffer wasn't used in this window before, use the values from
2893 * the most recently used window. If the values were never set, use the
2894 * global values for the window.
2895 */
2896 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002897get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898{
2899 wininfo_T *wip;
2900
2901 clear_winopt(&curwin->w_onebuf_opt);
2902#ifdef FEAT_FOLDING
2903 clearFolding(curwin);
2904#endif
2905
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002906 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002907 if (wip != NULL && wip->wi_win != NULL
2908 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002910 /* The buffer is currently displayed in the window: use the actual
2911 * option values instead of the saved (possibly outdated) values. */
2912 win_T *wp = wip->wi_win;
2913
2914 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2915#ifdef FEAT_FOLDING
2916 curwin->w_fold_manual = wp->w_fold_manual;
2917 curwin->w_foldinvalid = TRUE;
2918 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2919#endif
2920 }
2921 else if (wip != NULL && wip->wi_optset)
2922 {
2923 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2925#ifdef FEAT_FOLDING
2926 curwin->w_fold_manual = wip->wi_fold_manual;
2927 curwin->w_foldinvalid = TRUE;
2928 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2929#endif
2930 }
2931 else
2932 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2933
2934#ifdef FEAT_FOLDING
2935 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2936 if (p_fdls >= 0)
2937 curwin->w_p_fdl = p_fdls;
2938#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002939#ifdef FEAT_SYN_HL
2940 check_colorcolumn(curwin);
2941#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942}
2943
2944/*
2945 * Find the position (lnum and col) for the buffer 'buf' for the current
2946 * window.
2947 * Returns a pointer to no_position if no position is found.
2948 */
2949 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002950buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951{
2952 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002953 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002955 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 if (wip != NULL)
2957 return &(wip->wi_fpos);
2958 else
2959 return &no_position;
2960}
2961
2962/*
2963 * Find the lnum for the buffer 'buf' for the current window.
2964 */
2965 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002966buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967{
2968 return buflist_findfpos(buf)->lnum;
2969}
2970
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002972 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002975buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976{
2977 buf_T *buf;
2978 int len;
2979 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002980 int ro_char;
2981 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02002982#ifdef FEAT_TERMINAL
2983 int job_running;
2984 int job_none_open;
2985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986
2987 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2988 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02002989#ifdef FEAT_TERMINAL
2990 job_running = term_job_running(buf->b_term);
2991 job_none_open = job_running && term_none_open(buf->b_term);
2992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002994 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2995 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2996 || (vim_strchr(eap->arg, '+')
2997 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2998 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02002999 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003000 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003001 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3002#ifdef FEAT_TERMINAL
3003 || (vim_strchr(eap->arg, 'R')
3004 && (!job_running || (job_running && job_none_open)))
3005 || (vim_strchr(eap->arg, '?')
3006 && (!job_running || (job_running && !job_none_open)))
3007 || (vim_strchr(eap->arg, 'F')
3008 && (job_running || buf->b_term == NULL))
3009#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003010 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3011 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3012 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3013 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3014 || (vim_strchr(eap->arg, '#')
3015 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003018 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 else
3020 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003021 if (message_filtered(NameBuff))
3022 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003024 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3025 : (bufIsChanged(buf) ? '+' : ' ');
3026#ifdef FEAT_TERMINAL
3027 if (term_job_running(buf->b_term))
3028 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003029 if (term_none_open(buf->b_term))
3030 ro_char = '?';
3031 else
3032 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003033 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3034 * closing, but it's not actually changed. */
3035 }
3036 else if (buf->b_term != NULL)
3037 ro_char = 'F';
3038 else
3039#endif
3040 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3041
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003042 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003043 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 buf->b_fnum,
3045 buf->b_p_bl ? ' ' : 'u',
3046 buf == curbuf ? '%' :
3047 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3048 buf->b_ml.ml_mfp == NULL ? ' ' :
3049 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003050 ro_char,
3051 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003052 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003053 if (len > IOSIZE - 20)
3054 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055
3056 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 i = 40 - vim_strsize(IObuff);
3058 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003060 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003061 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3062 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003063 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 msg_outtrans(IObuff);
3065 out_flush(); /* output one line at a time */
3066 ui_breakcheck();
3067 }
3068}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
3070/*
3071 * Get file name and line number for file 'fnum'.
3072 * Used by DoOneCmd() for translating '%' and '#'.
3073 * Used by insert_reg() and cmdline_paste() for '#' register.
3074 * Return FAIL if not found, OK for success.
3075 */
3076 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003077buflist_name_nr(
3078 int fnum,
3079 char_u **fname,
3080 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081{
3082 buf_T *buf;
3083
3084 buf = buflist_findnr(fnum);
3085 if (buf == NULL || buf->b_fname == NULL)
3086 return FAIL;
3087
3088 *fname = buf->b_fname;
3089 *lnum = buflist_findlnum(buf);
3090
3091 return OK;
3092}
3093
3094/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003095 * Set the file name for "buf"' to "ffname_arg", short file name to
3096 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 * The file name with the full path is also remembered, for when :cd is used.
3098 * Returns FAIL for failure (file name already in use by other buffer)
3099 * OK otherwise.
3100 */
3101 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003102setfname(
3103 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003104 char_u *ffname_arg,
3105 char_u *sfname_arg,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003106 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003108 char_u *ffname = ffname_arg;
3109 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003110 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003112 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113#endif
3114
3115 if (ffname == NULL || *ffname == NUL)
3116 {
3117 /* Removing the name. */
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003118 if (buf->b_sfname != buf->b_ffname)
3119 VIM_CLEAR(buf->b_sfname);
3120 else
3121 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003122 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123#ifdef UNIX
3124 st.st_dev = (dev_T)-1;
3125#endif
3126 }
3127 else
3128 {
3129 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3130 if (ffname == NULL) /* out of memory */
3131 return FAIL;
3132
3133 /*
3134 * if the file name is already used in another buffer:
3135 * - if the buffer is loaded, fail
3136 * - if the buffer is not loaded, delete it from the list
3137 */
3138#ifdef UNIX
3139 if (mch_stat((char *)ffname, &st) < 0)
3140 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003141#endif
3142 if (!(buf->b_flags & BF_DUMMY))
3143#ifdef UNIX
3144 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003146 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147#endif
3148 if (obuf != NULL && obuf != buf)
3149 {
3150 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3151 {
3152 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003153 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 vim_free(ffname);
3155 return FAIL;
3156 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003157 /* delete from the list */
3158 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 }
3160 sfname = vim_strsave(sfname);
3161 if (ffname == NULL || sfname == NULL)
3162 {
3163 vim_free(sfname);
3164 vim_free(ffname);
3165 return FAIL;
3166 }
3167#ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01003168 fname_case(sfname, 0); /* set correct case for short file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003170 if (buf->b_sfname != buf->b_ffname)
3171 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 buf->b_ffname = ffname;
3174 buf->b_sfname = sfname;
3175 }
3176 buf->b_fname = buf->b_sfname;
3177#ifdef UNIX
3178 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003179 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 else
3181 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003182 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 buf->b_dev = st.st_dev;
3184 buf->b_ino = st.st_ino;
3185 }
3186#endif
3187
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189
3190 buf_name_changed(buf);
3191 return OK;
3192}
3193
3194/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003195 * Crude way of changing the name of a buffer. Use with care!
3196 * The name should be relative to the current directory.
3197 */
3198 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003199buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003200{
3201 buf_T *buf;
3202
3203 buf = buflist_findnr(fnum);
3204 if (buf != NULL)
3205 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003206 if (buf->b_sfname != buf->b_ffname)
3207 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003208 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003209 buf->b_ffname = vim_strsave(name);
3210 buf->b_sfname = NULL;
3211 /* Allocate ffname and expand into full path. Also resolves .lnk
3212 * files on Win32. */
3213 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003214 buf->b_fname = buf->b_sfname;
3215 }
3216}
3217
3218/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 * Take care of what needs to be done when the name of buffer "buf" has
3220 * changed.
3221 */
3222 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003223buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224{
3225 /*
3226 * If the file name changed, also change the name of the swapfile
3227 */
3228 if (buf->b_ml.ml_mfp != NULL)
3229 ml_setname(buf);
3230
3231 if (curwin->w_buffer == buf)
3232 check_arg_idx(curwin); /* check file name for arg list */
3233#ifdef FEAT_TITLE
3234 maketitle(); /* set window title */
3235#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 fmarks_check_names(buf); /* check named file marks */
3238 ml_timestamp(buf); /* reset timestamp */
3239}
3240
3241/*
3242 * set alternate file name for current window
3243 *
3244 * Used by do_one_cmd(), do_write() and do_ecmd().
3245 * Return the buffer.
3246 */
3247 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003248setaltfname(
3249 char_u *ffname,
3250 char_u *sfname,
3251 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252{
3253 buf_T *buf;
3254
3255 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3256 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003257 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 curwin->w_alt_fnum = buf->b_fnum;
3259 return buf;
3260}
3261
3262/*
3263 * Get alternate file name for current window.
3264 * Return NULL if there isn't any, and give error message if requested.
3265 */
3266 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003267getaltfname(
3268 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269{
3270 char_u *fname;
3271 linenr_T dummy;
3272
3273 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3274 {
3275 if (errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003276 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 return NULL;
3278 }
3279 return fname;
3280}
3281
3282/*
3283 * Add a file name to the buflist and return its number.
3284 * Uses same flags as buflist_new(), except BLN_DUMMY.
3285 *
3286 * used by qf_init(), main() and doarglist()
3287 */
3288 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003289buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
3291 buf_T *buf;
3292
3293 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3294 if (buf != NULL)
3295 return buf->b_fnum;
3296 return 0;
3297}
3298
3299#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3300/*
3301 * Adjust slashes in file names. Called after 'shellslash' was set.
3302 */
3303 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003304buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305{
3306 buf_T *bp;
3307
Bram Moolenaar29323592016-07-24 22:04:11 +02003308 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 {
3310 if (bp->b_ffname != NULL)
3311 slash_adjust(bp->b_ffname);
3312 if (bp->b_sfname != NULL)
3313 slash_adjust(bp->b_sfname);
3314 }
3315}
3316#endif
3317
3318/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003319 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 * Also save the local window option values.
3321 */
3322 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003323buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003325 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326}
3327
3328/*
3329 * Return TRUE if 'ffname' is not the same file as current file.
3330 * Fname must have a full path (expanded by mch_FullName()).
3331 */
3332 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003333otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334{
3335 return otherfile_buf(curbuf, ffname
3336#ifdef UNIX
3337 , NULL
3338#endif
3339 );
3340}
3341
3342 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003343otherfile_buf(
3344 buf_T *buf,
3345 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003347 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003349 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
3351 /* no name is different */
3352 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3353 return TRUE;
3354 if (fnamecmp(ffname, buf->b_ffname) == 0)
3355 return FALSE;
3356#ifdef UNIX
3357 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003358 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359
Bram Moolenaar8767f522016-07-01 17:17:39 +02003360 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 if (stp == NULL)
3362 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003363 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 st.st_dev = (dev_T)-1;
3365 stp = &st;
3366 }
3367 /* Use dev/ino to check if the files are the same, even when the names
3368 * are different (possible with links). Still need to compare the
3369 * name above, for when the file doesn't exist yet.
3370 * Problem: The dev/ino changes when a file is deleted (and created
3371 * again) and remains the same when renamed/moved. We don't want to
3372 * mch_stat() each buffer each time, that would be too slow. Get the
3373 * dev/ino again when they appear to match, but not when they appear
3374 * to be different: Could skip a buffer when it's actually the same
3375 * file. */
3376 if (buf_same_ino(buf, stp))
3377 {
3378 buf_setino(buf);
3379 if (buf_same_ino(buf, stp))
3380 return FALSE;
3381 }
3382 }
3383#endif
3384 return TRUE;
3385}
3386
3387#if defined(UNIX) || defined(PROTO)
3388/*
3389 * Set inode and device number for a buffer.
3390 * Must always be called when b_fname is changed!.
3391 */
3392 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003393buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003395 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396
3397 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3398 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003399 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 buf->b_dev = st.st_dev;
3401 buf->b_ino = st.st_ino;
3402 }
3403 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003404 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405}
3406
3407/*
3408 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3409 */
3410 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003411buf_same_ino(
3412 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003413 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003415 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 && stp->st_dev == buf->b_dev
3417 && stp->st_ino == buf->b_ino);
3418}
3419#endif
3420
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003421/*
3422 * Print info about the current buffer.
3423 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003425fileinfo(
3426 int fullname, /* when non-zero print full path */
3427 int shorthelp,
3428 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429{
3430 char_u *name;
3431 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003432 char *p;
3433 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003434 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
Bram Moolenaar32526b32019-01-19 17:43:09 +01003436 buffer = (char *)alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 if (buffer == NULL)
3438 return;
3439
3440 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3441 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003442 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 p = buffer + STRLEN(buffer);
3444 }
3445 else
3446 p = buffer;
3447
3448 *p++ = '"';
3449 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003450 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 else
3452 {
3453 if (!fullname && curbuf->b_fname != NULL)
3454 name = curbuf->b_fname;
3455 else
3456 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003457 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 (int)(IOSIZE - (p - buffer)), TRUE);
3459 }
3460
Bram Moolenaar32526b32019-01-19 17:43:09 +01003461 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 curbufIsChanged() ? (shortmess(SHM_MOD)
3463 ? " [+]" : _(" [Modified]")) : " ",
3464 (curbuf->b_flags & BF_NOTEDITED)
3465#ifdef FEAT_QUICKFIX
3466 && !bt_dontwrite(curbuf)
3467#endif
3468 ? _("[Not edited]") : "",
3469 (curbuf->b_flags & BF_NEW)
3470#ifdef FEAT_QUICKFIX
3471 && !bt_dontwrite(curbuf)
3472#endif
3473 ? _("[New file]") : "",
3474 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003475 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 : _("[readonly]")) : "",
3477 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3478 || curbuf->b_p_ro) ?
3479 " " : "");
3480 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3481 * causes an overflow, thus for large numbers divide instead. */
3482 if (curwin->w_cursor.lnum > 1000000L)
3483 n = (int)(((long)curwin->w_cursor.lnum) /
3484 ((long)curbuf->b_ml.ml_line_count / 100L));
3485 else
3486 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3487 (long)curbuf->b_ml.ml_line_count);
3488 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003489 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490#ifdef FEAT_CMDL_INFO
3491 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 /* Current line and column are already on the screen -- webb */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003493 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003494 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3495 curbuf->b_ml.ml_line_count),
3496 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497#endif
3498 else
3499 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003500 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 _("line %ld of %ld --%d%%-- col "),
3502 (long)curwin->w_cursor.lnum,
3503 (long)curbuf->b_ml.ml_line_count,
3504 n);
3505 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003506 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003507 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3509 }
3510
Bram Moolenaar32526b32019-01-19 17:43:09 +01003511 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3512 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513
3514 if (dont_truncate)
3515 {
3516 /* Temporarily set msg_scroll to avoid the message being truncated.
3517 * First call msg_start() to get the message in the right place. */
3518 msg_start();
3519 n = msg_scroll;
3520 msg_scroll = TRUE;
3521 msg(buffer);
3522 msg_scroll = n;
3523 }
3524 else
3525 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003526 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 /* Need to repeat the message after redrawing when:
3529 * - When restart_edit is set (otherwise there will be a delay
3530 * before redrawing).
3531 * - When the screen was scrolled but there is no wait-return
3532 * prompt. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003533 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 }
3535
3536 vim_free(buffer);
3537}
3538
3539 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003540col_print(
3541 char_u *buf,
3542 size_t buflen,
3543 int col,
3544 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545{
3546 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003547 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003549 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550}
3551
3552#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553static char_u *lasttitle = NULL;
3554static char_u *lasticon = NULL;
3555
Bram Moolenaar84a93082018-06-16 22:58:15 +02003556/*
3557 * Put the file name in the title bar and icon of the window.
3558 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003560maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561{
3562 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003563 char_u *title_str = NULL;
3564 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 int maxlen = 0;
3566 int len;
3567 int mustset;
3568 char_u buf[IOSIZE];
3569 int off;
3570
3571 if (!redrawing())
3572 {
3573 /* Postpone updating the title when 'lazyredraw' is set. */
3574 need_maketitle = TRUE;
3575 return;
3576 }
3577
3578 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003579 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003580 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581
3582 if (p_title)
3583 {
3584 if (p_titlelen > 0)
3585 {
3586 maxlen = p_titlelen * Columns / 100;
3587 if (maxlen < 10)
3588 maxlen = 10;
3589 }
3590
Bram Moolenaar84a93082018-06-16 22:58:15 +02003591 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 if (*p_titlestring != NUL)
3593 {
3594#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003595 if (stl_syntax & STL_IN_TITLE)
3596 {
3597 int use_sandbox = FALSE;
3598 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003599
3600# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003601 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003602# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003603 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003604 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003605 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003606 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003607 if (called_emsg)
3608 set_string_option_direct((char_u *)"titlestring", -1,
3609 (char_u *)"", OPT_FREE, SID_ERROR);
3610 called_emsg |= save_called_emsg;
3611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 else
3613#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003614 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 }
3616 else
3617 {
3618 /* format: "fname + (path) (1 of 2) - VIM" */
3619
Bram Moolenaar2c666692012-09-05 13:30:40 +02003620#define SPACE_FOR_FNAME (IOSIZE - 100)
3621#define SPACE_FOR_DIR (IOSIZE - 20)
3622#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003624 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003625#ifdef FEAT_TERMINAL
3626 else if (curbuf->b_term != NULL)
3627 {
3628 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3629 SPACE_FOR_FNAME);
3630 }
3631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 else
3633 {
3634 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003635 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 }
3638
Bram Moolenaar21554412017-07-24 21:44:43 +02003639#ifdef FEAT_TERMINAL
3640 if (curbuf->b_term == NULL)
3641#endif
3642 switch (bufIsChanged(curbuf)
3643 + (curbuf->b_p_ro * 2)
3644 + (!curbuf->b_p_ma * 4))
3645 {
3646 case 1: STRCAT(buf, " +"); break;
3647 case 2: STRCAT(buf, " ="); break;
3648 case 3: STRCAT(buf, " =+"); break;
3649 case 4:
3650 case 6: STRCAT(buf, " -"); break;
3651 case 5:
3652 case 7: STRCAT(buf, " -+"); break;
3653 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654
Bram Moolenaar21554412017-07-24 21:44:43 +02003655 if (curbuf->b_fname != NULL
3656#ifdef FEAT_TERMINAL
3657 && curbuf->b_term == NULL
3658#endif
3659 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 {
3661 /* Get path of file, replace home dir with ~ */
3662 off = (int)STRLEN(buf);
3663 buf[off++] = ' ';
3664 buf[off++] = '(';
3665 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003666 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667#ifdef BACKSLASH_IN_FILENAME
3668 /* avoid "c:/name" to be reduced to "c" */
3669 if (isalpha(buf[off]) && buf[off + 1] == ':')
3670 off += 2;
3671#endif
3672 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003673 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003675 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003676 /* must be a help buffer */
3677 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003678 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003679 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003682
Bram Moolenaar2c666692012-09-05 13:30:40 +02003683 /* Translate unprintable chars and concatenate. Keep some
3684 * room for the server name. When there is no room (very long
3685 * file name) use (...). */
3686 if (off < SPACE_FOR_DIR)
3687 {
3688 p = transstr(buf + off);
3689 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3690 vim_free(p);
3691 }
3692 else
3693 {
3694 vim_strncpy(buf + off, (char_u *)"...",
3695 (size_t)(SPACE_FOR_ARGNR - off));
3696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 STRCAT(buf, ")");
3698 }
3699
Bram Moolenaar2c666692012-09-05 13:30:40 +02003700 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701
3702#if defined(FEAT_CLIENTSERVER)
3703 if (serverName != NULL)
3704 {
3705 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003706 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 }
3708 else
3709#endif
3710 STRCAT(buf, " - VIM");
3711
3712 if (maxlen > 0)
3713 {
3714 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003715 if (vim_strsize(buf) > maxlen)
3716 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 }
3718 }
3719 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003720 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721
3722 if (p_icon)
3723 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003724 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 if (*p_iconstring != NUL)
3726 {
3727#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003728 if (stl_syntax & STL_IN_ICON)
3729 {
3730 int use_sandbox = FALSE;
3731 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003732
3733# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003734 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003735# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003736 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003737 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003738 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003739 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003740 if (called_emsg)
3741 set_string_option_direct((char_u *)"iconstring", -1,
3742 (char_u *)"", OPT_FREE, SID_ERROR);
3743 called_emsg |= save_called_emsg;
3744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 else
3746#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003747 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 }
3749 else
3750 {
3751 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003752 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003754 p = gettail(curbuf->b_ffname);
3755 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003757 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 if (len > 100)
3759 {
3760 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003762 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003763 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003765 STRCPY(icon_str, p);
3766 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 }
3768 }
3769
Bram Moolenaar84a93082018-06-16 22:58:15 +02003770 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771
3772 if (mustset)
3773 resettitle();
3774}
3775
3776/*
3777 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3778 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003779 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 */
3781 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003782value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783{
3784 if ((str == NULL) != (*last == NULL)
3785 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3786 {
3787 vim_free(*last);
3788 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003789 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003791 mch_restore_title(
3792 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003795 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003797 return TRUE;
3798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 }
3800 return FALSE;
3801}
3802
3803/*
3804 * Put current window title back (used after calling a shell)
3805 */
3806 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003807resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808{
3809 mch_settitle(lasttitle, lasticon);
3810}
Bram Moolenaarea408852005-06-25 22:49:46 +00003811
3812# if defined(EXITFREE) || defined(PROTO)
3813 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003814free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003815{
3816 vim_free(lasttitle);
3817 vim_free(lasticon);
3818}
3819# endif
3820
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821#endif /* FEAT_TITLE */
3822
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003823#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003825 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 * Return length of string in screen cells.
3827 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003828 * Normally works for window "wp", except when working for 'tabline' then it
3829 * is "curwin".
3830 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 * Items are drawn interspersed with the text that surrounds it
3832 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3833 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3834 *
3835 * If maxwidth is not zero, the string will be filled at any middle marker
3836 * or truncated if too long, fillchar is used for all whitespace.
3837 */
3838 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003839build_stl_str_hl(
3840 win_T *wp,
3841 char_u *out, /* buffer to write into != NameBuff */
3842 size_t outlen, /* length of out[] */
3843 char_u *fmt,
3844 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3845 int fillchar,
3846 int maxwidth,
3847 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3848 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849{
Bram Moolenaar10772302019-01-20 18:25:54 +01003850 linenr_T lnum;
3851 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 char_u *p;
3853 char_u *s;
3854 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003855 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003857 win_T *save_curwin;
3858 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859#endif
3860 int empty_line;
3861 colnr_T virtcol;
3862 long l;
3863 long n;
3864 int prevchar_isflag;
3865 int prevchar_isitem;
3866 int itemisflag;
3867 int fillable;
3868 char_u *str;
3869 long num;
3870 int width;
3871 int itemcnt;
3872 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003873 int group_end_userhl;
3874 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 int groupitem[STL_MAX_ITEM];
3876 int groupdepth;
3877 struct stl_item
3878 {
3879 char_u *start;
3880 int minwid;
3881 int maxwid;
3882 enum
3883 {
3884 Normal,
3885 Empty,
3886 Group,
3887 Middle,
3888 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003889 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 Trunc
3891 } type;
3892 } item[STL_MAX_ITEM];
3893 int minwid;
3894 int maxwid;
3895 int zeropad;
3896 char_u base;
3897 char_u opt;
3898#define TMPLEN 70
3899 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003900 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003901 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003902 int save_must_redraw = must_redraw;
3903 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003904
3905#ifdef FEAT_EVAL
3906 /*
3907 * When the format starts with "%!" then evaluate it as an expression and
3908 * use the result as the actual format string.
3909 */
3910 if (fmt[0] == '%' && fmt[1] == '!')
3911 {
3912 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3913 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003914 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003915 }
3916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917
3918 if (fillchar == 0)
3919 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003920 /* Can't handle a multi-byte fill character yet. */
3921 else if (mb_char2len(fillchar) > 1)
3922 fillchar = '-';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003923
Bram Moolenaar10772302019-01-20 18:25:54 +01003924 // The cursor in windows other than the current one isn't always
3925 // up-to-date, esp. because of autocommands and timers.
3926 lnum = wp->w_cursor.lnum;
3927 if (lnum > wp->w_buffer->b_ml.ml_line_count)
3928 {
3929 lnum = wp->w_buffer->b_ml.ml_line_count;
3930 wp->w_cursor.lnum = lnum;
3931 }
3932
3933 // Get line & check if empty (cursorpos will show "0-1"). Note that
3934 // p will become invalid when getting another buffer line.
3935 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02003936 empty_line = (*p == NUL);
3937
Bram Moolenaar10772302019-01-20 18:25:54 +01003938 // Get the byte value now, in case we need it below. This is more efficient
3939 // than making a copy of the line.
3940 len = STRLEN(p);
3941 if (wp->w_cursor.col > (colnr_T)len)
3942 {
3943 // Line may have changed since checking the cursor column, or the lnum
3944 // was adjusted above.
3945 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01003946 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003947 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01003948 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02003949 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02003950 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951
3952 groupdepth = 0;
3953 p = out;
3954 curitem = 0;
3955 prevchar_isflag = TRUE;
3956 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003957 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003959 if (curitem == STL_MAX_ITEM)
3960 {
3961 /* There are too many items. Add the error code to the statusline
3962 * to give the user a hint about what went wrong. */
3963 if (p + 6 < out + outlen)
3964 {
3965 mch_memmove(p, " E541", (size_t)5);
3966 p += 5;
3967 }
3968 break;
3969 }
3970
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 if (*s != NUL && *s != '%')
3972 prevchar_isflag = prevchar_isitem = FALSE;
3973
3974 /*
3975 * Handle up to the next '%' or the end.
3976 */
3977 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3978 *p++ = *s++;
3979 if (*s == NUL || p + 1 >= out + outlen)
3980 break;
3981
3982 /*
3983 * Handle one '%' item.
3984 */
3985 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003986 if (*s == NUL) /* ignore trailing % */
3987 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 if (*s == '%')
3989 {
3990 if (p + 1 >= out + outlen)
3991 break;
3992 *p++ = *s++;
3993 prevchar_isflag = prevchar_isitem = FALSE;
3994 continue;
3995 }
3996 if (*s == STL_MIDDLEMARK)
3997 {
3998 s++;
3999 if (groupdepth > 0)
4000 continue;
4001 item[curitem].type = Middle;
4002 item[curitem++].start = p;
4003 continue;
4004 }
4005 if (*s == STL_TRUNCMARK)
4006 {
4007 s++;
4008 item[curitem].type = Trunc;
4009 item[curitem++].start = p;
4010 continue;
4011 }
4012 if (*s == ')')
4013 {
4014 s++;
4015 if (groupdepth < 1)
4016 continue;
4017 groupdepth--;
4018
4019 t = item[groupitem[groupdepth]].start;
4020 *p = NUL;
4021 l = vim_strsize(t);
4022 if (curitem > groupitem[groupdepth] + 1
4023 && item[groupitem[groupdepth]].minwid == 0)
4024 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004025 /* remove group if all items are empty and highlight group
4026 * doesn't change */
4027 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004028 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4029 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004030 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004031 {
4032 group_start_userhl = group_end_userhl = item[n].minwid;
4033 break;
4034 }
4035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004037 {
4038 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004040 if (item[n].type == Highlight)
4041 group_end_userhl = item[n].minwid;
4042 }
4043 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 {
4045 p = t;
4046 l = 0;
4047 }
4048 }
4049 if (l > item[groupitem[groupdepth]].maxwid)
4050 {
4051 /* truncate, remove n bytes of text at the start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 if (has_mbyte)
4053 {
4054 /* Find the first character that should be included. */
4055 n = 0;
4056 while (l >= item[groupitem[groupdepth]].maxwid)
4057 {
4058 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004059 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 }
4062 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004063 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064
4065 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004066 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004068
4069 // Fill up space left over by half a double-wide char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 while (++l < item[groupitem[groupdepth]].minwid)
4071 *p++ = fillchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072
4073 /* correct the start of the items for the truncation */
4074 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4075 {
4076 item[l].start -= n;
4077 if (item[l].start < t)
4078 item[l].start = t;
4079 }
4080 }
4081 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4082 {
4083 /* fill */
4084 n = item[groupitem[groupdepth]].minwid;
4085 if (n < 0)
4086 {
4087 /* fill by appending characters */
4088 n = 0 - n;
4089 while (l++ < n && p + 1 < out + outlen)
4090 *p++ = fillchar;
4091 }
4092 else
4093 {
4094 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004095 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 l = n - l;
4097 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004098 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 p += l;
4100 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4101 item[n].start += l;
4102 for ( ; l > 0; l--)
4103 *t++ = fillchar;
4104 }
4105 }
4106 continue;
4107 }
4108 minwid = 0;
4109 maxwid = 9999;
4110 zeropad = FALSE;
4111 l = 1;
4112 if (*s == '0')
4113 {
4114 s++;
4115 zeropad = TRUE;
4116 }
4117 if (*s == '-')
4118 {
4119 s++;
4120 l = -1;
4121 }
4122 if (VIM_ISDIGIT(*s))
4123 {
4124 minwid = (int)getdigits(&s);
4125 if (minwid < 0) /* overflow */
4126 minwid = 0;
4127 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004128 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 {
4130 item[curitem].type = Highlight;
4131 item[curitem].start = p;
4132 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4133 s++;
4134 curitem++;
4135 continue;
4136 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004137 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4138 {
4139 if (*s == STL_TABCLOSENR)
4140 {
4141 if (minwid == 0)
4142 {
4143 /* %X ends the close label, go back to the previously
4144 * define tab label nr. */
4145 for (n = curitem - 1; n >= 0; --n)
4146 if (item[n].type == TabPage && item[n].minwid >= 0)
4147 {
4148 minwid = item[n].minwid;
4149 break;
4150 }
4151 }
4152 else
4153 /* close nrs are stored as negative values */
4154 minwid = - minwid;
4155 }
4156 item[curitem].type = TabPage;
4157 item[curitem].start = p;
4158 item[curitem].minwid = minwid;
4159 s++;
4160 curitem++;
4161 continue;
4162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 if (*s == '.')
4164 {
4165 s++;
4166 if (VIM_ISDIGIT(*s))
4167 {
4168 maxwid = (int)getdigits(&s);
4169 if (maxwid <= 0) /* overflow */
4170 maxwid = 50;
4171 }
4172 }
4173 minwid = (minwid > 50 ? 50 : minwid) * l;
4174 if (*s == '(')
4175 {
4176 groupitem[groupdepth++] = curitem;
4177 item[curitem].type = Group;
4178 item[curitem].start = p;
4179 item[curitem].minwid = minwid;
4180 item[curitem].maxwid = maxwid;
4181 s++;
4182 curitem++;
4183 continue;
4184 }
4185 if (vim_strchr(STL_ALL, *s) == NULL)
4186 {
4187 s++;
4188 continue;
4189 }
4190 opt = *s++;
4191
4192 /* OK - now for the real work */
4193 base = 'D';
4194 itemisflag = FALSE;
4195 fillable = TRUE;
4196 num = -1;
4197 str = NULL;
4198 switch (opt)
4199 {
4200 case STL_FILEPATH:
4201 case STL_FULLPATH:
4202 case STL_FILENAME:
4203 fillable = FALSE; /* don't change ' ' to fillchar */
4204 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004205 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 else
4207 {
4208 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004209 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4211 }
4212 trans_characters(NameBuff, MAXPATHL);
4213 if (opt != STL_FILENAME)
4214 str = NameBuff;
4215 else
4216 str = gettail(NameBuff);
4217 break;
4218
4219 case STL_VIM_EXPR: /* '{' */
4220 itemisflag = TRUE;
4221 t = p;
4222 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4223 *p++ = *s++;
4224 if (*s != '}') /* missing '}' or out of space */
4225 break;
4226 s++;
4227 *p = 0;
4228 p = t;
4229
4230#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004231 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar3cb44482018-08-05 13:22:26 +02004232 set_internal_string_var((char_u *)"g:actual_curbuf", tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004234 save_curbuf = curbuf;
4235 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 curwin = wp;
4237 curbuf = wp->w_buffer;
4238
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004239 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004241 curwin = save_curwin;
4242 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004243 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244
4245 if (str != NULL && *str != 0)
4246 {
4247 if (*skipdigits(str) == NUL)
4248 {
4249 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004250 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 itemisflag = FALSE;
4252 }
4253 }
4254#endif
4255 break;
4256
4257 case STL_LINE:
4258 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4259 ? 0L : (long)(wp->w_cursor.lnum);
4260 break;
4261
4262 case STL_NUMLINES:
4263 num = wp->w_buffer->b_ml.ml_line_count;
4264 break;
4265
4266 case STL_COLUMN:
4267 num = !(State & INSERT) && empty_line
4268 ? 0 : (int)wp->w_cursor.col + 1;
4269 break;
4270
4271 case STL_VIRTCOL:
4272 case STL_VIRTCOL_ALT:
4273 /* In list mode virtcol needs to be recomputed */
4274 virtcol = wp->w_virtcol;
4275 if (wp->w_p_list && lcs_tab1 == NUL)
4276 {
4277 wp->w_p_list = FALSE;
4278 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4279 wp->w_p_list = TRUE;
4280 }
4281 ++virtcol;
4282 /* Don't display %V if it's the same as %c. */
4283 if (opt == STL_VIRTCOL_ALT
4284 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4285 ? 0 : (int)wp->w_cursor.col + 1)))
4286 break;
4287 num = (long)virtcol;
4288 break;
4289
4290 case STL_PERCENTAGE:
4291 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4292 (long)wp->w_buffer->b_ml.ml_line_count);
4293 break;
4294
4295 case STL_ALTPERCENT:
4296 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004297 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 break;
4299
4300 case STL_ARGLISTSTAT:
4301 fillable = FALSE;
4302 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004303 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 str = tmp;
4305 break;
4306
4307 case STL_KEYMAP:
4308 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004309 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 str = tmp;
4311 break;
4312 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004313#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004314 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315#else
4316 num = 0;
4317#endif
4318 break;
4319
4320 case STL_BUFNO:
4321 num = wp->w_buffer->b_fnum;
4322 break;
4323
4324 case STL_OFFSET_X:
4325 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004326 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 case STL_OFFSET:
4328#ifdef FEAT_BYTEOFF
4329 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4330 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4331 0L : l + 1 + (!(State & INSERT) && empty_line ?
4332 0 : (int)wp->w_cursor.col);
4333#endif
4334 break;
4335
4336 case STL_BYTEVAL_X:
4337 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004338 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004340 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 if (num == NL)
4342 num = 0;
4343 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4344 num = NL;
4345 break;
4346
4347 case STL_ROFLAG:
4348 case STL_ROFLAG_ALT:
4349 itemisflag = TRUE;
4350 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004351 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 break;
4353
4354 case STL_HELPFLAG:
4355 case STL_HELPFLAG_ALT:
4356 itemisflag = TRUE;
4357 if (wp->w_buffer->b_help)
4358 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004359 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 break;
4361
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 case STL_FILETYPE:
4363 if (*wp->w_buffer->b_p_ft != NUL
4364 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4365 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004366 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4367 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 str = tmp;
4369 }
4370 break;
4371
4372 case STL_FILETYPE_ALT:
4373 itemisflag = TRUE;
4374 if (*wp->w_buffer->b_p_ft != NUL
4375 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4376 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004377 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4378 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 for (t = tmp; *t != 0; t++)
4380 *t = TOUPPER_LOC(*t);
4381 str = tmp;
4382 }
4383 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384
Bram Moolenaar4033c552017-09-16 20:54:51 +02004385#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 case STL_PREVIEWFLAG:
4387 case STL_PREVIEWFLAG_ALT:
4388 itemisflag = TRUE;
4389 if (wp->w_p_pvw)
4390 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4391 : _("[Preview]"));
4392 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004393
4394 case STL_QUICKFIX:
4395 if (bt_quickfix(wp->w_buffer))
4396 str = (char_u *)(wp->w_llist_ref
4397 ? _(msg_loclist)
4398 : _(msg_qflist));
4399 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400#endif
4401
4402 case STL_MODIFIED:
4403 case STL_MODIFIED_ALT:
4404 itemisflag = TRUE;
4405 switch ((opt == STL_MODIFIED_ALT)
4406 + bufIsChanged(wp->w_buffer) * 2
4407 + (!wp->w_buffer->b_p_ma) * 4)
4408 {
4409 case 2: str = (char_u *)"[+]"; break;
4410 case 3: str = (char_u *)",+"; break;
4411 case 4: str = (char_u *)"[-]"; break;
4412 case 5: str = (char_u *)",-"; break;
4413 case 6: str = (char_u *)"[+-]"; break;
4414 case 7: str = (char_u *)",+-"; break;
4415 }
4416 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004417
4418 case STL_HIGHLIGHT:
4419 t = s;
4420 while (*s != '#' && *s != NUL)
4421 ++s;
4422 if (*s == '#')
4423 {
4424 item[curitem].type = Highlight;
4425 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004426 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004427 curitem++;
4428 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004429 if (*s != NUL)
4430 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004431 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 }
4433
4434 item[curitem].start = p;
4435 item[curitem].type = Normal;
4436 if (str != NULL && *str)
4437 {
4438 t = str;
4439 if (itemisflag)
4440 {
4441 if ((t[0] && t[1])
4442 && ((!prevchar_isitem && *t == ',')
4443 || (prevchar_isflag && *t == ' ')))
4444 t++;
4445 prevchar_isflag = TRUE;
4446 }
4447 l = vim_strsize(t);
4448 if (l > 0)
4449 prevchar_isitem = TRUE;
4450 if (l > maxwid)
4451 {
4452 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 if (has_mbyte)
4454 {
4455 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004456 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 }
4458 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 l -= byte2cells(*t++);
4460 if (p + 1 >= out + outlen)
4461 break;
4462 *p++ = '<';
4463 }
4464 if (minwid > 0)
4465 {
4466 for (; l < minwid && p + 1 < out + outlen; l++)
4467 {
4468 /* Don't put a "-" in front of a digit. */
4469 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4470 *p++ = ' ';
4471 else
4472 *p++ = fillchar;
4473 }
4474 minwid = 0;
4475 }
4476 else
4477 minwid *= -1;
4478 while (*t && p + 1 < out + outlen)
4479 {
4480 *p++ = *t++;
4481 /* Change a space by fillchar, unless fillchar is '-' and a
4482 * digit follows. */
4483 if (fillable && p[-1] == ' '
4484 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4485 p[-1] = fillchar;
4486 }
4487 for (; l < minwid && p + 1 < out + outlen; l++)
4488 *p++ = fillchar;
4489 }
4490 else if (num >= 0)
4491 {
4492 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4493 char_u nstr[20];
4494
4495 if (p + 20 >= out + outlen)
4496 break; /* not sufficient space */
4497 prevchar_isitem = TRUE;
4498 t = nstr;
4499 if (opt == STL_VIRTCOL_ALT)
4500 {
4501 *t++ = '-';
4502 minwid--;
4503 }
4504 *t++ = '%';
4505 if (zeropad)
4506 *t++ = '0';
4507 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004508 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 *t = 0;
4510
4511 for (n = num, l = 1; n >= nbase; n /= nbase)
4512 l++;
4513 if (opt == STL_VIRTCOL_ALT)
4514 l++;
4515 if (l > maxwid)
4516 {
4517 l += 2;
4518 n = l - maxwid;
4519 while (l-- > maxwid)
4520 num /= nbase;
4521 *t++ = '>';
4522 *t++ = '%';
4523 *t = t[-3];
4524 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004525 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4526 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 }
4528 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004529 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4530 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 p += STRLEN(p);
4532 }
4533 else
4534 item[curitem].type = Empty;
4535
4536 if (opt == STL_VIM_EXPR)
4537 vim_free(str);
4538
4539 if (num >= 0 || (!itemisflag && str && *str))
4540 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4541 curitem++;
4542 }
4543 *p = NUL;
4544 itemcnt = curitem;
4545
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004546#ifdef FEAT_EVAL
4547 if (usefmt != fmt)
4548 vim_free(usefmt);
4549#endif
4550
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 width = vim_strsize(out);
4552 if (maxwidth > 0 && width > maxwidth)
4553 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004554 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 l = 0;
4556 if (itemcnt == 0)
4557 s = out;
4558 else
4559 {
4560 for ( ; l < itemcnt; l++)
4561 if (item[l].type == Trunc)
4562 {
4563 /* Truncate at %< item. */
4564 s = item[l].start;
4565 break;
4566 }
4567 if (l == itemcnt)
4568 {
4569 /* No %< item, truncate first item. */
4570 s = item[0].start;
4571 l = 0;
4572 }
4573 }
4574
4575 if (width - vim_strsize(s) >= maxwidth)
4576 {
4577 /* Truncation mark is beyond max length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 if (has_mbyte)
4579 {
4580 s = out;
4581 width = 0;
4582 for (;;)
4583 {
4584 width += ptr2cells(s);
4585 if (width >= maxwidth)
4586 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004587 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 }
4589 /* Fill up for half a double-wide character. */
4590 while (++width < maxwidth)
4591 *s++ = fillchar;
4592 }
4593 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 s = out + maxwidth - 1;
4595 for (l = 0; l < itemcnt; l++)
4596 if (item[l].start > s)
4597 break;
4598 itemcnt = l;
4599 *s++ = '>';
4600 *s = 0;
4601 }
4602 else
4603 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 if (has_mbyte)
4605 {
4606 n = 0;
4607 while (width >= maxwidth)
4608 {
4609 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004610 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 }
4612 }
4613 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 n = width - maxwidth + 1;
4615 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004616 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 *s = '<';
4618
4619 /* Fill up for half a double-wide character. */
4620 while (++width < maxwidth)
4621 {
4622 s = s + STRLEN(s);
4623 *s++ = fillchar;
4624 *s = NUL;
4625 }
4626
4627 --n; /* count the '<' */
4628 for (; l < itemcnt; l++)
4629 {
4630 if (item[l].start - n >= s)
4631 item[l].start -= n;
4632 else
4633 item[l].start = s;
4634 }
4635 }
4636 width = maxwidth;
4637 }
4638 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4639 {
4640 /* Apply STL_MIDDLE if any */
4641 for (l = 0; l < itemcnt; l++)
4642 if (item[l].type == Middle)
4643 break;
4644 if (l < itemcnt)
4645 {
4646 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004647 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 for (s = item[l].start; s < p; s++)
4649 *s = fillchar;
4650 for (l++; l < itemcnt; l++)
4651 item[l].start += maxwidth - width;
4652 width = maxwidth;
4653 }
4654 }
4655
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004656 /* Store the info about highlighting. */
4657 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004659 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 for (l = 0; l < itemcnt; l++)
4661 {
4662 if (item[l].type == Highlight)
4663 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004664 sp->start = item[l].start;
4665 sp->userhl = item[l].minwid;
4666 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 }
4668 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004669 sp->start = NULL;
4670 sp->userhl = 0;
4671 }
4672
4673 /* Store the info about tab pages labels. */
4674 if (tabtab != NULL)
4675 {
4676 sp = tabtab;
4677 for (l = 0; l < itemcnt; l++)
4678 {
4679 if (item[l].type == TabPage)
4680 {
4681 sp->start = item[l].start;
4682 sp->userhl = item[l].minwid;
4683 sp++;
4684 }
4685 }
4686 sp->start = NULL;
4687 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 }
4689
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004690 /* When inside update_screen we do not want redrawing a stausline, ruler,
4691 * title, etc. to trigger another redraw, it may cause an endless loop. */
4692 if (updating_screen)
4693 {
4694 must_redraw = save_must_redraw;
4695 curwin->w_redr_type = save_redr_type;
4696 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004697
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 return width;
4699}
4700#endif /* FEAT_STL_OPT */
4701
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004702#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4703 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004705 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4706 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 */
4708 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004709get_rel_pos(
4710 win_T *wp,
4711 char_u *buf,
4712 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713{
4714 long above; /* number of lines above window */
4715 long below; /* number of lines below window */
4716
Bram Moolenaar0027c212015-01-07 13:31:52 +01004717 if (buflen < 3) /* need at least 3 chars for writing */
4718 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 above = wp->w_topline - 1;
4720#ifdef FEAT_DIFF
4721 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004722 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4723 above = 0; /* All buffer lines are displayed and there is an
4724 * indication of filler lines, that can be considered
4725 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726#endif
4727 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4728 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004729 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4730 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004732 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004734 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 ? (int)(above / ((above + below) / 100L))
4736 : (int)(above * 100L / (above + below)));
4737}
4738#endif
4739
4740/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004741 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 * Return TRUE if it was appended.
4743 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004744 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004745append_arg_number(
4746 win_T *wp,
4747 char_u *buf,
4748 int buflen,
4749 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750{
4751 char_u *p;
4752
4753 if (ARGCOUNT <= 1) /* nothing to do */
4754 return FALSE;
4755
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004756 p = buf + STRLEN(buf); /* go to the end of the buffer */
4757 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 return FALSE;
4759 *p++ = ' ';
4760 *p++ = '(';
4761 if (add_file)
4762 {
4763 STRCPY(p, "file ");
4764 p += 5;
4765 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004766 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4767 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4769 return TRUE;
4770}
4771
4772/*
4773 * If fname is not a full path, make it a full path.
4774 * Returns pointer to allocated memory (NULL for failure).
4775 */
4776 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004777fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778{
4779 /*
4780 * Force expanding the path always for Unix, because symbolic links may
4781 * mess up the full path name, even though it starts with a '/'.
4782 * Also expand when there is ".." in the file name, try to remove it,
4783 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004784 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 * For MS-Windows also expand names like "longna~1" to "longname".
4786 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004787#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 return FullName_save(fname, TRUE);
4789#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004790 if (!vim_isAbsName(fname)
4791 || strstr((char *)fname, "..") != NULL
4792 || strstr((char *)fname, "//") != NULL
4793# ifdef BACKSLASH_IN_FILENAME
4794 || strstr((char *)fname, "\\\\") != NULL
4795# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004796# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004798# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 )
4800 return FullName_save(fname, FALSE);
4801
4802 fname = vim_strsave(fname);
4803
Bram Moolenaar9b942202007-10-03 12:31:33 +00004804# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01004805 if (fname != NULL)
4806 fname_case(fname, 0); /* set correct case for file name */
Bram Moolenaar9b942202007-10-03 12:31:33 +00004807# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808
4809 return fname;
4810#endif
4811}
4812
4813/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004814 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
4815 * "*ffname" becomes a pointer to allocated memory (or NULL).
4816 * When resolving a link both "*sfname" and "*ffname" will point to the same
4817 * allocated memory.
4818 * The "*ffname" and "*sfname" pointer values on call will not be freed.
4819 * Note that the resulting "*ffname" pointer should be considered not allocaed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004822fname_expand(
4823 buf_T *buf UNUSED,
4824 char_u **ffname,
4825 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004827 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004829 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004831 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832
4833#ifdef FEAT_SHORTCUT
4834 if (!buf->b_p_bin)
4835 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004836 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004838 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01004839 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004840 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 {
4842 vim_free(*ffname);
4843 *ffname = rfname;
4844 *sfname = rfname;
4845 }
4846 }
4847#endif
4848}
4849
4850/*
4851 * Get the file name for an argument list entry.
4852 */
4853 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004854alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855{
4856 buf_T *bp;
4857
4858 /* Use the name from the associated buffer if it exists. */
4859 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004860 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 return aep->ae_fname;
4862 return bp->b_fname;
4863}
4864
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865/*
4866 * do_arg_all(): Open up to 'count' windows, one for each argument.
4867 */
4868 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004869do_arg_all(
4870 int count,
4871 int forceit, /* hide buffers in current windows */
4872 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873{
4874 int i;
4875 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004876 char_u *opened; /* Array of weight for which args are open:
4877 * 0: not opened
4878 * 1: opened in other tab
4879 * 2: opened in curtab
4880 * 3: opened in curtab and curwin
4881 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004882 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 int use_firstwin = FALSE; /* use first window for arglist */
4884 int split_ret = OK;
4885 int p_ea_save;
4886 alist_T *alist; /* argument list to be used */
4887 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004888 tabpage_T *tpnext;
4889 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004890 win_T *old_curwin, *last_curwin;
4891 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004892 win_T *new_curwin = NULL;
4893 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894
4895 if (ARGCOUNT <= 0)
4896 {
4897 /* Don't give an error message. We don't want it when the ":all"
4898 * command is in the .vimrc. */
4899 return;
4900 }
4901 setpcmark();
4902
4903 opened_len = ARGCOUNT;
4904 opened = alloc_clear((unsigned)opened_len);
4905 if (opened == NULL)
4906 return;
4907
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004908 /* Autocommands may do anything to the argument list. Make sure it's not
4909 * freed while we are working here by "locking" it. We still have to
4910 * watch out for its size to be changed. */
4911 alist = curwin->w_alist;
4912 ++alist->al_refcount;
4913
4914 old_curwin = curwin;
4915 old_curtab = curtab;
4916
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004917# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920
4921 /*
4922 * Try closing all windows that are not in the argument list.
4923 * Also close windows that are not full width;
4924 * When 'hidden' or "forceit" set the buffer becomes hidden.
4925 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004926 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004928 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004929 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004930 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004932 tpnext = curtab->tp_next;
4933 for (wp = firstwin; wp != NULL; wp = wpnext)
4934 {
4935 wpnext = wp->w_next;
4936 buf = wp->w_buffer;
4937 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004938 || (!keep_tabs && (buf->b_nwindows > 1
4939 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004940 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004943 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004944 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004946 if (i < alist->al_ga.ga_len
4947 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4948 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4949 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004951 int weight = 1;
4952
4953 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004954 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004955 ++weight;
4956 if (old_curwin == wp)
4957 ++weight;
4958 }
4959
4960 if (weight > (int)opened[i])
4961 {
4962 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004963 if (i == 0)
4964 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004965 if (new_curwin != NULL)
4966 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004967 new_curwin = wp;
4968 new_curtab = curtab;
4969 }
4970 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004971 else if (keep_tabs)
4972 i = opened_len;
4973
4974 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004975 {
4976 /* Use the current argument list for all windows
4977 * containing a file from it. */
4978 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004979 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004980 ++wp->w_alist->al_refcount;
4981 }
4982 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 }
4985 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004986 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004988 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004990 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004991 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004993 /* If the buffer was changed, and we would like to hide it,
4994 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02004995 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004996 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004998 bufref_T bufref;
4999
5000 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005001
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005002 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005003
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005004 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005005 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005006 {
5007 wpnext = firstwin; /* start all over... */
5008 continue;
5009 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005010 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005011 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005012 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005013 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005014 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005015 else
5016 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005017 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005018
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005019 /* check if autocommands removed the next window */
5020 if (!win_valid(wpnext))
5021 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 }
5025 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005026
5027 /* Without the ":tab" modifier only do the current tab page. */
5028 if (had_tab == 0 || tpnext == NULL)
5029 break;
5030
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005031 /* check if autocommands removed the next tab page */
5032 if (!valid_tabpage(tpnext))
5033 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005034
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005035 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 }
5037
5038 /*
5039 * Open a window for files in the argument list that don't have one.
5040 * ARGCOUNT may change while doing this, because of autocommands.
5041 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005042 if (count > opened_len || count <= 0)
5043 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5046 ++autocmd_no_enter;
5047 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005048 last_curwin = curwin;
5049 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005051 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5052 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005053 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005054 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5055 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005056
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005057 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 {
5059 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5060 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005061 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 {
5063 /* Move the already present window to below the current window */
5064 if (curwin->w_arg_idx != i)
5065 {
5066 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5067 {
5068 if (wpnext->w_arg_idx == i)
5069 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005070 if (keep_tabs)
5071 {
5072 new_curwin = wpnext;
5073 new_curtab = curtab;
5074 }
5075 else
5076 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 break;
5078 }
5079 }
5080 }
5081 }
5082 else if (split_ret == OK)
5083 {
5084 if (!use_firstwin) /* split current window */
5085 {
5086 p_ea_save = p_ea;
5087 p_ea = TRUE; /* use space from all windows */
5088 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5089 p_ea = p_ea_save;
5090 if (split_ret == FAIL)
5091 continue;
5092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 else /* first window: do autocmd for leaving this buffer */
5094 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095
5096 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005097 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 */
5099 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005100 if (i == 0)
5101 {
5102 new_curwin = curwin;
5103 new_curtab = curtab;
5104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5106 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005107 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005109 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 if (use_firstwin)
5111 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 use_firstwin = FALSE;
5113 }
5114 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005115
5116 /* When ":tab" was used open a new tab for a new window repeatedly. */
5117 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5118 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 }
5120
5121 /* Remove the "lock" on the argument list. */
5122 alist_unlink(alist);
5123
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005125
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005126 /* restore last referenced tabpage's curwin */
5127 if (last_curtab != new_curtab)
5128 {
5129 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005130 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005131 if (win_valid(last_curwin))
5132 win_enter(last_curwin, FALSE);
5133 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005134 /* to window with first arg */
5135 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005136 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005137 if (win_valid(new_curwin))
5138 win_enter(new_curwin, FALSE);
5139
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 vim_free(opened);
5142}
5143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144/*
5145 * Open a window for a number of buffers.
5146 */
5147 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005148ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149{
5150 buf_T *buf;
5151 win_T *wp, *wpnext;
5152 int split_ret = OK;
5153 int p_ea_save;
5154 int open_wins = 0;
5155 int r;
5156 int count; /* Maximum number of windows to open. */
5157 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005158 int had_tab = cmdmod.tab;
5159 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160
5161 if (eap->addr_count == 0) /* make as many windows as possible */
5162 count = 9999;
5163 else
5164 count = eap->line2; /* make as many windows as specified */
5165 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5166 all = FALSE;
5167 else
5168 all = TRUE;
5169
5170 setpcmark();
5171
5172#ifdef FEAT_GUI
5173 need_mouse_correct = TRUE;
5174#endif
5175
5176 /*
5177 * Close superfluous windows (two windows for the same buffer).
5178 * Also close windows that are not full-width.
5179 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005180 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005181 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005182 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005184 tpnext = curtab->tp_next;
5185 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005187 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005188 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005189 || ((cmdmod.split & WSP_VERT)
5190 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005191 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005192 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005193 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005194 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005195 {
5196 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005197 wpnext = firstwin; /* just in case an autocommand does
5198 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005199 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005200 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005201 }
5202 else
5203 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005205
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005206 /* Without the ":tab" modifier only do the current tab page. */
5207 if (had_tab == 0 || tpnext == NULL)
5208 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005209 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 }
5211
5212 /*
5213 * Go through the buffer list. When a buffer doesn't have a window yet,
5214 * open one. Otherwise move the window to the right position.
5215 * Watch out for autocommands that delete buffers or windows!
5216 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5218 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5222 {
5223 /* Check if this buffer needs a window */
5224 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5225 continue;
5226
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005227 if (had_tab != 0)
5228 {
5229 /* With the ":tab" modifier don't move the window. */
5230 if (buf->b_nwindows > 0)
5231 wp = lastwin; /* buffer has a window, skip it */
5232 else
5233 wp = NULL;
5234 }
5235 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005236 {
5237 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005238 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005239 if (wp->w_buffer == buf)
5240 break;
5241 /* If the buffer already has a window, move it */
5242 if (wp != NULL)
5243 win_move_after(wp, curwin);
5244 }
5245
5246 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005248 bufref_T bufref;
5249
5250 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005251
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 /* Split the window and put the buffer in it */
5253 p_ea_save = p_ea;
5254 p_ea = TRUE; /* use space from all windows */
5255 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5256 ++open_wins;
5257 p_ea = p_ea_save;
5258 if (split_ret == FAIL)
5259 continue;
5260
5261 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005262#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 swap_exists_action = SEA_DIALOG;
5264#endif
5265 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005266 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005268 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005269#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 break;
5273 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005274#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 if (swap_exists_action == SEA_QUIT)
5276 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005277# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005278 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005279
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005280 /* Reset the error/interrupt/exception state here so that
5281 * aborting() returns FALSE when closing a window. */
5282 enter_cleanup(&cs);
5283# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005284
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005285 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 win_close(curwin, TRUE);
5287 --open_wins;
5288 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005289 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005290
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005291# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005292 /* Restore the error/interrupt/exception state if not
5293 * discarded by a new aborting error, interrupt, or uncaught
5294 * exception. */
5295 leave_cleanup(&cs);
5296# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 }
5298 else
5299 handle_swap_exists(NULL);
5300#endif
5301 }
5302
5303 ui_breakcheck();
5304 if (got_int)
5305 {
5306 (void)vgetc(); /* only break the file loading, not the rest */
5307 break;
5308 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005309#ifdef FEAT_EVAL
5310 /* Autocommands deleted the buffer or aborted script processing!!! */
5311 if (aborting())
5312 break;
5313#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005314 /* When ":tab" was used open a new tab for a new window repeatedly. */
5315 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5316 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321
5322 /*
5323 * Close superfluous windows.
5324 */
5325 for (wp = lastwin; open_wins > count; )
5326 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005327 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 if (!win_valid(wp))
5330 {
5331 /* BufWrite Autocommands made the window invalid, start over */
5332 wp = lastwin;
5333 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005334 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005336 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 --open_wins;
5338 wp = lastwin;
5339 }
5340 else
5341 {
5342 wp = wp->w_prev;
5343 if (wp == NULL)
5344 break;
5345 }
5346 }
5347}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005350static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005351
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352/*
5353 * do_modelines() - process mode lines for the current file
5354 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005355 * "flags" can be:
5356 * OPT_WINONLY only set options local to window
5357 * OPT_NOWIN don't set options local to window
5358 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 * Returns immediately if the "ml" option isn't set.
5360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005362do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005364 linenr_T lnum;
5365 int nmlines;
5366 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367
5368 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5369 return;
5370
5371 /* Disallow recursive entry here. Can happen when executing a modeline
5372 * triggers an autocommand, which reloads modelines with a ":do". */
5373 if (entered)
5374 return;
5375
5376 ++entered;
5377 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5378 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005379 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 nmlines = 0;
5381
5382 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5383 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005384 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 nmlines = 0;
5386 --entered;
5387}
5388
5389#include "version.h" /* for version number */
5390
5391/*
5392 * chk_modeline() - check a single line for a mode string
5393 * Return FAIL if an error encountered.
5394 */
5395 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005396chk_modeline(
5397 linenr_T lnum,
5398 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399{
5400 char_u *s;
5401 char_u *e;
5402 char_u *linecopy; /* local copy of any modeline found */
5403 int prev;
5404 int vers;
5405 int end;
5406 int retval = OK;
5407 char_u *save_sourcing_name;
5408 linenr_T save_sourcing_lnum;
5409#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005410 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411#endif
5412
5413 prev = -1;
5414 for (s = ml_get(lnum); *s != NUL; ++s)
5415 {
5416 if (prev == -1 || vim_isspace(prev))
5417 {
5418 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5419 || STRNCMP(s, "vi:", (size_t)3) == 0)
5420 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005421 /* Accept both "vim" and "Vim". */
5422 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 {
5424 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5425 e = s + 4;
5426 else
5427 e = s + 3;
5428 vers = getdigits(&e);
5429 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005430 && (s[0] != 'V'
5431 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 && (s[3] == ':'
5433 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5434 || (VIM_VERSION_100 < vers && s[3] == '<')
5435 || (VIM_VERSION_100 > vers && s[3] == '>')
5436 || (VIM_VERSION_100 == vers && s[3] == '=')))
5437 break;
5438 }
5439 }
5440 prev = *s;
5441 }
5442
5443 if (*s)
5444 {
5445 do /* skip over "ex:", "vi:" or "vim:" */
5446 ++s;
5447 while (s[-1] != ':');
5448
5449 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5450 if (linecopy == NULL)
5451 return FAIL;
5452
5453 save_sourcing_lnum = sourcing_lnum;
5454 save_sourcing_name = sourcing_name;
5455 sourcing_lnum = lnum; /* prepare for emsg() */
5456 sourcing_name = (char_u *)"modelines";
5457
5458 end = FALSE;
5459 while (end == FALSE)
5460 {
5461 s = skipwhite(s);
5462 if (*s == NUL)
5463 break;
5464
5465 /*
5466 * Find end of set command: ':' or end of line.
5467 * Skip over "\:", replacing it with ":".
5468 */
5469 for (e = s; *e != ':' && *e != NUL; ++e)
5470 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005471 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 if (*e == NUL)
5473 end = TRUE;
5474
5475 /*
5476 * If there is a "set" command, require a terminating ':' and
5477 * ignore the stuff after the ':'.
5478 * "vi:set opt opt opt: foo" -- foo not interpreted
5479 * "vi:opt opt opt: foo" -- foo interpreted
5480 * Accept "se" for compatibility with Elvis.
5481 */
5482 if (STRNCMP(s, "set ", (size_t)4) == 0
5483 || STRNCMP(s, "se ", (size_t)3) == 0)
5484 {
5485 if (*e != ':') /* no terminating ':'? */
5486 break;
5487 end = TRUE;
5488 s = vim_strchr(s, ' ') + 1;
5489 }
5490 *e = NUL; /* truncate the set command */
5491
5492 if (*s != NUL) /* skip over an empty "::" */
5493 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005494 int secure_save = secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005496 save_current_sctx = current_sctx;
5497 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005498 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005499 current_sctx.sc_lnum = 0;
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02005500 current_sctx.sc_version = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501#endif
Bram Moolenaar5958f952018-11-20 04:25:21 +01005502 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005503 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005504
Bram Moolenaara3227e22006-03-08 21:32:40 +00005505 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005506
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005507 secure = secure_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005509 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510#endif
5511 if (retval == FAIL) /* stop if error found */
5512 break;
5513 }
5514 s = e + 1; /* advance to next part */
5515 }
5516
5517 sourcing_lnum = save_sourcing_lnum;
5518 sourcing_name = save_sourcing_name;
5519
5520 vim_free(linecopy);
5521 }
5522 return retval;
5523}
5524
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005525#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005527read_viminfo_bufferlist(
5528 vir_T *virp,
5529 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530{
5531 char_u *tab;
5532 linenr_T lnum;
5533 colnr_T col;
5534 buf_T *buf;
5535 char_u *sfname;
5536 char_u *xline;
5537
5538 /* Handle long line and escaped characters. */
5539 xline = viminfo_readstring(virp, 1, FALSE);
5540
5541 /* don't read in if there are files on the command-line or if writing: */
5542 if (xline != NULL && !writing && ARGCOUNT == 0
5543 && find_viminfo_parameter('%') != NULL)
5544 {
5545 /* Format is: <fname> Tab <lnum> Tab <col>.
5546 * Watch out for a Tab in the file name, work from the end. */
5547 lnum = 0;
5548 col = 0;
5549 tab = vim_strrchr(xline, '\t');
5550 if (tab != NULL)
5551 {
5552 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005553 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 tab = vim_strrchr(xline, '\t');
5555 if (tab != NULL)
5556 {
5557 *tab++ = '\0';
5558 lnum = atol((char *)tab);
5559 }
5560 }
5561
5562 /* Expand "~/" in the file name at "line + 1" to a full path.
5563 * Then try shortening it by comparing with the current directory */
5564 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005565 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566
5567 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5568 if (buf != NULL) /* just in case... */
5569 {
5570 buf->b_last_cursor.lnum = lnum;
5571 buf->b_last_cursor.col = col;
5572 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5573 }
5574 }
5575 vim_free(xline);
5576
5577 return viminfo_readline(virp);
5578}
5579
5580 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005581write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582{
5583 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005585 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005587 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588
5589 if (find_viminfo_parameter('%') == NULL)
5590 return;
5591
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005592 /* Without a number -1 is returned: do all buffers. */
5593 max_buffers = get_viminfo_parameter('%');
5594
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005596#define LINE_BUF_LEN (MAXPATHL + 40)
5597 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 if (line == NULL)
5599 return;
5600
Bram Moolenaarf740b292006-02-16 22:11:02 +00005601 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005604 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005605 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 {
5607 if (buf->b_fname == NULL
5608 || !buf->b_p_bl
5609#ifdef FEAT_QUICKFIX
5610 || bt_quickfix(buf)
5611#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005612#ifdef FEAT_TERMINAL
5613 || bt_terminal(buf)
5614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 || removable(buf->b_ffname))
5616 continue;
5617
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005618 if (max_buffers-- == 0)
5619 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 putc('%', fp);
5621 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005622 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 (long)buf->b_last_cursor.lnum,
5624 buf->b_last_cursor.col);
5625 viminfo_writestring(fp, line);
5626 }
5627 vim_free(line);
5628}
5629#endif
5630
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005631/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005632 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5633 */
5634 int
5635bt_normal(buf_T *buf)
5636{
5637 return buf != NULL && buf->b_p_bt[0] == NUL;
5638}
5639
Bram Moolenaar113e1072019-01-20 15:30:40 +01005640#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005641/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005642 * Return TRUE if "buf" is the quickfix buffer.
5643 */
5644 int
5645bt_quickfix(buf_T *buf)
5646{
5647 return buf != NULL && buf->b_p_bt[0] == 'q';
5648}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005649#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005650
Bram Moolenaar113e1072019-01-20 15:30:40 +01005651#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005652/*
5653 * Return TRUE if "buf" is a terminal buffer.
5654 */
5655 int
5656bt_terminal(buf_T *buf)
5657{
5658 return buf != NULL && buf->b_p_bt[0] == 't';
5659}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005660#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005661
5662/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005663 * Return TRUE if "buf" is a help buffer.
5664 */
5665 int
5666bt_help(buf_T *buf)
5667{
5668 return buf != NULL && buf->b_help;
5669}
5670
5671/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005672 * Return TRUE if "buf" is a prompt buffer.
5673 */
5674 int
5675bt_prompt(buf_T *buf)
5676{
5677 return buf != NULL && buf->b_p_bt[0] == 'p';
5678}
5679
5680/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005681 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5682 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005683 */
5684 int
5685bt_nofile(buf_T *buf)
5686{
5687 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5688 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005689 || buf->b_p_bt[0] == 't'
5690 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005691}
5692
5693/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005694 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5695 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005696 */
5697 int
5698bt_dontwrite(buf_T *buf)
5699{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005700 return buf != NULL && (buf->b_p_bt[0] == 'n'
5701 || buf->b_p_bt[0] == 't'
5702 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005703}
5704
Bram Moolenaar113e1072019-01-20 15:30:40 +01005705#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005706 int
5707bt_dontwrite_msg(buf_T *buf)
5708{
5709 if (bt_dontwrite(buf))
5710 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005711 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005712 return TRUE;
5713 }
5714 return FALSE;
5715}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005716#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005717
5718/*
5719 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5720 * and 'bufhidden'.
5721 */
5722 int
5723buf_hide(buf_T *buf)
5724{
5725 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5726 switch (buf->b_p_bh[0])
5727 {
5728 case 'u': /* "unload" */
5729 case 'w': /* "wipe" */
5730 case 'd': return FALSE; /* "delete" */
5731 case 'h': return TRUE; /* "hide" */
5732 }
5733 return (p_hid || cmdmod.hide);
5734}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735
5736/*
5737 * Return special buffer name.
5738 * Returns NULL when the buffer has a normal file name.
5739 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005740 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005741buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005743#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005745 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005746 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005747 * Differentiate between the quickfix and location list buffers using
5748 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005749 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005750 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005751 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005752 else
5753 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005754 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005756
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005758 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 if (bt_nofile(buf))
5760 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005761#ifdef FEAT_TERMINAL
5762 if (buf->b_term != NULL)
5763 return term_get_status_text(buf->b_term);
5764#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005765 if (buf->b_fname != NULL)
5766 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005767#ifdef FEAT_JOB_CHANNEL
5768 if (bt_prompt(buf))
5769 return (char_u *)_("[Prompt]");
5770#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005771 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005773
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005775 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 return NULL;
5777}
5778
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005779#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005780 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5781 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005782# define SWITCH_TO_WIN
5783
5784/*
5785 * Find a window that contains "buf" and switch to it.
5786 * If there is no such window, use the current window and change "curbuf".
5787 * Caller must initialize save_curbuf to NULL.
5788 * restore_win_for_buf() MUST be called later!
5789 */
5790 void
5791switch_to_win_for_buf(
5792 buf_T *buf,
5793 win_T **save_curwinp,
5794 tabpage_T **save_curtabp,
5795 bufref_T *save_curbuf)
5796{
5797 win_T *wp;
5798 tabpage_T *tp;
5799
5800 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5801 switch_buffer(save_curbuf, buf);
5802 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5803 {
5804 restore_win(*save_curwinp, *save_curtabp, TRUE);
5805 switch_buffer(save_curbuf, buf);
5806 }
5807}
5808
5809 void
5810restore_win_for_buf(
5811 win_T *save_curwin,
5812 tabpage_T *save_curtab,
5813 bufref_T *save_curbuf)
5814{
5815 if (save_curbuf->br_buf == NULL)
5816 restore_win(save_curwin, save_curtab, TRUE);
5817 else
5818 restore_buffer(save_curbuf);
5819}
5820#endif
5821
Bram Moolenaar4033c552017-09-16 20:54:51 +02005822#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005823/*
5824 * Find a window for buffer "buf".
5825 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5826 * If not found FAIL is returned.
5827 */
5828 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005829find_win_for_buf(
5830 buf_T *buf,
5831 win_T **wp,
5832 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005833{
5834 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5835 if ((*wp)->w_buffer == buf)
5836 goto win_found;
5837 return FAIL;
5838win_found:
5839 return OK;
5840}
5841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843/*
5844 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5845 */
5846 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005847set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848{
5849 if (on != curbuf->b_p_bl)
5850 {
5851 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 if (on)
5853 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5854 else
5855 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 }
5857}
5858
5859/*
5860 * Read the file for "buf" again and check if the contents changed.
5861 * Return TRUE if it changed or this could not be checked.
5862 */
5863 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005864buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865{
5866 buf_T *newbuf;
5867 int differ = TRUE;
5868 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 exarg_T ea;
5871
5872 /* Allocate a buffer without putting it in the buffer list. */
5873 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5874 if (newbuf == NULL)
5875 return TRUE;
5876
5877 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5878 if (prep_exarg(&ea, buf) == FAIL)
5879 {
5880 wipe_buffer(newbuf, FALSE);
5881 return TRUE;
5882 }
5883
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 /* set curwin/curbuf to buf and save a few things */
5885 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886
Bram Moolenaar4770d092006-01-12 23:22:24 +00005887 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 && readfile(buf->b_ffname, buf->b_fname,
5889 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5890 &ea, READ_NEW | READ_DUMMY) == OK)
5891 {
5892 /* compare the two files line by line */
5893 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5894 {
5895 differ = FALSE;
5896 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5897 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5898 {
5899 differ = TRUE;
5900 break;
5901 }
5902 }
5903 }
5904 vim_free(ea.cmd);
5905
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 /* restore curwin/curbuf and a few other things */
5907 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908
5909 if (curbuf != newbuf) /* safety check */
5910 wipe_buffer(newbuf, FALSE);
5911
5912 return differ;
5913}
5914
5915/*
5916 * Wipe out a buffer and decrement the last buffer number if it was used for
5917 * this buffer. Call this to wipe out a temp buffer that does not contain any
5918 * marks.
5919 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005921wipe_buffer(
5922 buf_T *buf,
5923 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924{
5925 if (buf->b_fnum == top_file_num - 1)
5926 --top_file_num;
5927
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005929 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005930
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005931 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005932
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005934 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935}