blob: e0b616498a7b97d7be1d9748466befca8931a9e4 [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
928#ifdef FEAT_USR_CMDS
929 uc_clear(&buf->b_ucmds); /* clear local user commands */
930#endif
931#ifdef FEAT_SIGNS
Bram Moolenaar162b7142018-12-21 15:17:36 +0100932 buf_delete_signs(buf, (char_u *)"*"); // delete any signs */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000934#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200935 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937#ifdef FEAT_LOCALMAP
938 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
939 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
940#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +0100941 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942}
943
944/*
945 * Free the b_wininfo list for buffer "buf".
946 */
947 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100948clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949{
950 wininfo_T *wip;
951
952 while (buf->b_wininfo != NULL)
953 {
954 wip = buf->b_wininfo;
955 buf->b_wininfo = wip->wi_next;
956 if (wip->wi_optset)
957 {
958 clear_winopt(&wip->wi_opt);
959#ifdef FEAT_FOLDING
960 deleteFoldRecurse(&wip->wi_folds);
961#endif
962 }
963 vim_free(wip);
964 }
965}
966
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967/*
968 * Go to another buffer. Handles the result of the ATTENTION dialog.
969 */
970 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100971goto_buffer(
972 exarg_T *eap,
973 int start,
974 int dir,
975 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976{
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200977#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200978 bufref_T old_curbuf;
979
980 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981
982 swap_exists_action = SEA_DIALOG;
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
985 start, dir, count, eap->forceit);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200986#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
988 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200989# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000990 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000991
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000992 /* Reset the error/interrupt/exception state here so that
993 * aborting() returns FALSE when closing a window. */
994 enter_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200995# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000996
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000997 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 win_close(curwin, TRUE);
999 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001000 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001001
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001002# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001003 /* Restore the error/interrupt/exception state if not discarded by a
1004 * new aborting error, interrupt, or uncaught exception. */
1005 leave_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001006# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 }
1008 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001009 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010#endif
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001011}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012
Bram Moolenaare64ac772005-12-07 20:54:59 +00001013#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/*
1015 * Handle the situation of swap_exists_action being set.
1016 * It is allowed for "old_curbuf" to be NULL or invalid.
1017 */
1018 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001019handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001021# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001022 cleanup_T cs;
1023# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001024# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001025 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001026# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001027 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001028
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 if (swap_exists_action == SEA_QUIT)
1030 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001031# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001032 /* Reset the error/interrupt/exception state here so that
1033 * aborting() returns FALSE when closing a buffer. */
1034 enter_cleanup(&cs);
1035# endif
1036
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 /* User selected Quit at ATTENTION prompt. Go back to previous
1038 * buffer. If that buffer is gone or the same as the current one,
1039 * open a new, empty buffer. */
1040 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001041 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001042 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001043 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1044 || old_curbuf->br_buf == curbuf)
1045 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1046 else
1047 buf = old_curbuf->br_buf;
1048 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001049 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001050 int old_msg_silent = msg_silent;
1051
1052 if (shortmess(SHM_FILEINFO))
1053 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001054 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001055 // restore msg_silent, so that the command line will be shown
1056 msg_silent = old_msg_silent;
1057
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001058# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001059 if (old_tw != curbuf->b_p_tw)
1060 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001061# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001064
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001065# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001066 /* Restore the error/interrupt/exception state if not discarded by a
1067 * new aborting error, interrupt, or uncaught exception. */
1068 leave_cleanup(&cs);
1069# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 }
1071 else if (swap_exists_action == SEA_RECOVER)
1072 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001073# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001074 /* Reset the error/interrupt/exception state here so that
1075 * aborting() returns FALSE when closing a buffer. */
1076 enter_cleanup(&cs);
1077# endif
1078
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 /* User selected Recover at ATTENTION prompt. */
1080 msg_scroll = TRUE;
1081 ml_recover();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001082 msg_puts("\n"); /* don't overwrite the last message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001084 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001085
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001086# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001087 /* Restore the error/interrupt/exception state if not discarded by a
1088 * new aborting error, interrupt, or uncaught exception. */
1089 leave_cleanup(&cs);
1090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 }
1092 swap_exists_action = SEA_NONE;
1093}
1094#endif
1095
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096/*
1097 * do_bufdel() - delete or unload buffer(s)
1098 *
1099 * addr_count == 0: ":bdel" - delete current buffer
1100 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1101 * buffer "end_bnr", then any other arguments.
1102 * addr_count == 2: ":N,N bdel" - delete buffers in range
1103 *
1104 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1105 * DOBUF_DEL (":bdel")
1106 *
1107 * Returns error message or NULL
1108 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001109 char *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001110do_bufdel(
1111 int command,
1112 char_u *arg, /* pointer to extra arguments */
1113 int addr_count,
1114 int start_bnr, /* first buffer number in a range */
1115 int end_bnr, /* buffer nr or last buffer nr in a range */
1116 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117{
1118 int do_current = 0; /* delete current buffer? */
1119 int deleted = 0; /* number of buffers deleted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001120 char *errormsg = NULL; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 int bnr; /* buffer number */
1122 char_u *p;
1123
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 if (addr_count == 0)
1125 {
1126 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1127 }
1128 else
1129 {
1130 if (addr_count == 2)
1131 {
1132 if (*arg) /* both range and argument is not allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001133 return _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 bnr = start_bnr;
1135 }
1136 else /* addr_count == 1 */
1137 bnr = end_bnr;
1138
1139 for ( ;!got_int; ui_breakcheck())
1140 {
1141 /*
1142 * delete the current buffer last, otherwise when the
1143 * current buffer is deleted, the next buffer becomes
1144 * the current one and will be loaded, which may then
1145 * also be deleted, etc.
1146 */
1147 if (bnr == curbuf->b_fnum)
1148 do_current = bnr;
1149 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1150 forceit) == OK)
1151 ++deleted;
1152
1153 /*
1154 * find next buffer number to delete/unload
1155 */
1156 if (addr_count == 2)
1157 {
1158 if (++bnr > end_bnr)
1159 break;
1160 }
1161 else /* addr_count == 1 */
1162 {
1163 arg = skipwhite(arg);
1164 if (*arg == NUL)
1165 break;
1166 if (!VIM_ISDIGIT(*arg))
1167 {
1168 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001169 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1170 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 if (bnr < 0) /* failed */
1172 break;
1173 arg = p;
1174 }
1175 else
1176 bnr = getdigits(&arg);
1177 }
1178 }
1179 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1180 FORWARD, do_current, forceit) == OK)
1181 ++deleted;
1182
1183 if (deleted == 0)
1184 {
1185 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001186 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001188 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001190 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001191 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 }
1193 else if (deleted >= p_report)
1194 {
1195 if (command == DOBUF_UNLOAD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001196 smsg(NGETTEXT("%d buffer unloaded",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001197 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 else if (command == DOBUF_DEL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001199 smsg(NGETTEXT("%d buffer deleted",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001200 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001202 smsg(NGETTEXT("%d buffer wiped out",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001203 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 }
1205 }
1206
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207
1208 return errormsg;
1209}
1210
Bram Moolenaara02471e2014-01-10 16:43:14 +01001211/*
1212 * Make the current buffer empty.
1213 * Used when it is wiped out and it's the last buffer.
1214 */
1215 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001216empty_curbuf(
1217 int close_others,
1218 int forceit,
1219 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001220{
1221 int retval;
1222 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001223 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001224
1225 if (action == DOBUF_UNLOAD)
1226 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001227 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001228 return FAIL;
1229 }
1230
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001231 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001232 if (close_others)
1233 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001234 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001235
1236 setpcmark();
1237 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1238 forceit ? ECMD_FORCEIT : 0, curwin);
1239
1240 /*
1241 * do_ecmd() may create a new buffer, then we have to delete
1242 * the old one. But do_ecmd() may have done that already, check
1243 * if the buffer still exists.
1244 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001245 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001246 close_buffer(NULL, buf, action, FALSE);
1247 if (!close_others)
1248 need_fileinfo = FALSE;
1249 return retval;
1250}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001251
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252/*
1253 * Implementation of the commands for the buffer list.
1254 *
1255 * action == DOBUF_GOTO go to specified buffer
1256 * action == DOBUF_SPLIT split window and go to specified buffer
1257 * action == DOBUF_UNLOAD unload specified buffer(s)
1258 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1259 * action == DOBUF_WIPE delete specified buffer(s) really
1260 *
1261 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1262 * start == DOBUF_FIRST go to "count" buffer from first buffer
1263 * start == DOBUF_LAST go to "count" buffer from last buffer
1264 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1265 *
1266 * Return FAIL or OK.
1267 */
1268 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001269do_buffer(
1270 int action,
1271 int start,
1272 int dir, /* FORWARD or BACKWARD */
1273 int count, /* buffer number or number of buffers */
1274 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275{
1276 buf_T *buf;
1277 buf_T *bp;
1278 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1279 || action == DOBUF_WIPE);
1280
1281 switch (start)
1282 {
1283 case DOBUF_FIRST: buf = firstbuf; break;
1284 case DOBUF_LAST: buf = lastbuf; break;
1285 default: buf = curbuf; break;
1286 }
1287 if (start == DOBUF_MOD) /* find next modified buffer */
1288 {
1289 while (count-- > 0)
1290 {
1291 do
1292 {
1293 buf = buf->b_next;
1294 if (buf == NULL)
1295 buf = firstbuf;
1296 }
1297 while (buf != curbuf && !bufIsChanged(buf));
1298 }
1299 if (!bufIsChanged(buf))
1300 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001301 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 return FAIL;
1303 }
1304 }
1305 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1306 {
1307 while (buf != NULL && buf->b_fnum != count)
1308 buf = buf->b_next;
1309 }
1310 else
1311 {
1312 bp = NULL;
1313 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1314 {
1315 /* remember the buffer where we start, we come back there when all
1316 * buffers are unlisted. */
1317 if (bp == NULL)
1318 bp = buf;
1319 if (dir == FORWARD)
1320 {
1321 buf = buf->b_next;
1322 if (buf == NULL)
1323 buf = firstbuf;
1324 }
1325 else
1326 {
1327 buf = buf->b_prev;
1328 if (buf == NULL)
1329 buf = lastbuf;
1330 }
1331 /* don't count unlisted buffers */
1332 if (unload || buf->b_p_bl)
1333 {
1334 --count;
1335 bp = NULL; /* use this buffer as new starting point */
1336 }
1337 if (bp == buf)
1338 {
1339 /* back where we started, didn't find anything. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001340 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 return FAIL;
1342 }
1343 }
1344 }
1345
1346 if (buf == NULL) /* could not find it */
1347 {
1348 if (start == DOBUF_FIRST)
1349 {
1350 /* don't warn when deleting */
1351 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001352 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 }
1354 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001355 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001357 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return FAIL;
1359 }
1360
1361#ifdef FEAT_GUI
1362 need_mouse_correct = TRUE;
1363#endif
1364
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 /*
1366 * delete buffer buf from memory and/or the list
1367 */
1368 if (unload)
1369 {
1370 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001371 bufref_T bufref;
1372
Bram Moolenaar94f01952018-09-01 15:30:03 +02001373 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001374 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001375
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001376 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377
1378 /* When unloading or deleting a buffer that's already unloaded and
1379 * unlisted: fail silently. */
1380 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1381 return FAIL;
1382
1383 if (!forceit && bufIsChanged(buf))
1384 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001385#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 if ((p_confirm || cmdmod.confirm) && p_write)
1387 {
1388 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001389 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 /* Autocommand deleted buffer, oops! It's not changed
1391 * now. */
1392 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001393 /* If it's still changed fail silently, the dialog already
1394 * mentioned why it fails. */
1395 if (bufIsChanged(buf))
1396 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001398 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001399#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001401 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 buf->b_fnum);
1403 return FAIL;
1404 }
1405 }
1406
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001407 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001408 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001409 end_visual_mode();
1410
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 /*
1412 * If deleting the last (listed) buffer, make it empty.
1413 * The last (listed) buffer cannot be unloaded.
1414 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001415 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 if (bp->b_p_bl && bp != buf)
1417 break;
1418 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001419 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 /*
1422 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001423 * (unless it's the only window). Repeat this so long as we end up in
1424 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001426 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001427 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001428 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001429 {
1430 if (win_close(curwin, FALSE) == FAIL)
1431 break;
1432 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
1434 /*
1435 * If the buffer to be deleted is not the current one, delete it here.
1436 */
1437 if (buf != curbuf)
1438 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001439 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001440 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001441 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 return OK;
1443 }
1444
1445 /*
1446 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001447 * There should be another, otherwise it would have been handled
1448 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001449 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 * Then prefer the buffer we most recently visited.
1451 * Else try to find one that is loaded, after the current buffer,
1452 * then before the current buffer.
1453 * Finally use any buffer.
1454 */
1455 buf = NULL; /* selected buffer */
1456 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001457 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1458 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001460 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 {
1462 int jumpidx;
1463
1464 jumpidx = curwin->w_jumplistidx - 1;
1465 if (jumpidx < 0)
1466 jumpidx = curwin->w_jumplistlen - 1;
1467
1468 forward = jumpidx;
1469 while (jumpidx != curwin->w_jumplistidx)
1470 {
1471 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1472 if (buf != NULL)
1473 {
1474 if (buf == curbuf || !buf->b_p_bl)
1475 buf = NULL; /* skip current and unlisted bufs */
1476 else if (buf->b_ml.ml_mfp == NULL)
1477 {
1478 /* skip unloaded buf, but may keep it for later */
1479 if (bp == NULL)
1480 bp = buf;
1481 buf = NULL;
1482 }
1483 }
1484 if (buf != NULL) /* found a valid buffer: stop searching */
1485 break;
1486 /* advance to older entry in jump list */
1487 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1488 break;
1489 if (--jumpidx < 0)
1490 jumpidx = curwin->w_jumplistlen - 1;
1491 if (jumpidx == forward) /* List exhausted for sure */
1492 break;
1493 }
1494 }
1495#endif
1496
1497 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1498 {
1499 forward = TRUE;
1500 buf = curbuf->b_next;
1501 for (;;)
1502 {
1503 if (buf == NULL)
1504 {
1505 if (!forward) /* tried both directions */
1506 break;
1507 buf = curbuf->b_prev;
1508 forward = FALSE;
1509 continue;
1510 }
1511 /* in non-help buffer, try to skip help buffers, and vv */
1512 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1513 {
1514 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1515 break;
1516 if (bp == NULL) /* remember unloaded buf for later */
1517 bp = buf;
1518 }
1519 if (forward)
1520 buf = buf->b_next;
1521 else
1522 buf = buf->b_prev;
1523 }
1524 }
1525 if (buf == NULL) /* No loaded buffer, use unloaded one */
1526 buf = bp;
1527 if (buf == NULL) /* No loaded buffer, find listed one */
1528 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001529 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 if (buf->b_p_bl && buf != curbuf)
1531 break;
1532 }
1533 if (buf == NULL) /* Still no buffer, just take one */
1534 {
1535 if (curbuf->b_next != NULL)
1536 buf = curbuf->b_next;
1537 else
1538 buf = curbuf->b_prev;
1539 }
1540 }
1541
Bram Moolenaara02471e2014-01-10 16:43:14 +01001542 if (buf == NULL)
1543 {
1544 /* Autocommands must have wiped out all other buffers. Only option
1545 * now is to make the current buffer empty. */
1546 return empty_curbuf(FALSE, forceit, action);
1547 }
1548
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 /*
1550 * make buf current buffer
1551 */
1552 if (action == DOBUF_SPLIT) /* split window first */
1553 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001554 /* If 'switchbuf' contains "useopen": jump to first window containing
1555 * "buf" if one exists */
1556 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001557 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001558 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001559 * page containing "buf" if one exists */
1560 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 return OK;
1562 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 return FAIL;
1564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565
1566 /* go to current buffer - nothing to do */
1567 if (buf == curbuf)
1568 return OK;
1569
1570 /*
1571 * Check if the current buffer may be abandoned.
1572 */
1573 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1574 {
1575#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1576 if ((p_confirm || cmdmod.confirm) && p_write)
1577 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001578 bufref_T bufref;
1579
1580 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001582 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 /* Autocommand deleted buffer, oops! */
1584 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 }
1586 if (bufIsChanged(curbuf))
1587#endif
1588 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001589 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 return FAIL;
1591 }
1592 }
1593
1594 /* Go to the other buffer. */
1595 set_curbuf(buf, action);
1596
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001598 {
1599 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001602#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 if (aborting()) /* autocmds may abort script processing */
1604 return FAIL;
1605#endif
1606
1607 return OK;
1608}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609
1610/*
1611 * Set current buffer to "buf". Executes autocommands and closes current
1612 * buffer. "action" tells how to close the current buffer:
1613 * DOBUF_GOTO free or hide it
1614 * DOBUF_SPLIT nothing
1615 * DOBUF_UNLOAD unload it
1616 * DOBUF_DEL delete it
1617 * DOBUF_WIPE wipe it out
1618 */
1619 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001620set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621{
1622 buf_T *prevbuf;
1623 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1624 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001625#ifdef FEAT_SYN_HL
1626 long old_tw = curbuf->b_p_tw;
1627#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001628 bufref_T newbufref;
1629 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630
1631 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001632 if (!cmdmod.keepalt)
1633 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001634 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 /* Don't restart Select mode after switching to another buffer. */
1637 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001639 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1640 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001642 set_bufref(&prevbufref, prevbuf);
1643 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001645 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1646 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001647 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001648 || (bufref_valid(&prevbufref)
1649 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001650#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001651 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001653 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001655#ifdef FEAT_SYN_HL
1656 if (prevbuf == curwin->w_buffer)
1657 reset_synblock(curwin);
1658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001660 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001661#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001662 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001664 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001666 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001667 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001668 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001669 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1671 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001672 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001673 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001674 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001675 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001676 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001679 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001680 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001681 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1682 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001683#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001684 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001686 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001687 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001689#ifdef FEAT_SYN_HL
1690 if (old_tw != curbuf->b_p_tw)
1691 check_colorcolumn(curwin);
1692#endif
1693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694}
1695
1696/*
1697 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001698 * Old curbuf must have been abandoned already! This also means "curbuf" may
1699 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 */
1701 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001702enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703{
1704 /* Copy buffer and window local option values. Not for a help buffer. */
1705 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1706 if (!buf->b_help)
1707 get_winopts(buf);
1708#ifdef FEAT_FOLDING
1709 else
1710 /* Remove all folds in the window. */
1711 clearFolding(curwin);
1712 foldUpdateAll(curwin); /* update folds (later). */
1713#endif
1714
1715 /* Get the buffer in the current window. */
1716 curwin->w_buffer = buf;
1717 curbuf = buf;
1718 ++curbuf->b_nwindows;
1719
1720#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001721 if (curwin->w_p_diff)
1722 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723#endif
1724
Bram Moolenaara971b822011-09-14 14:43:25 +02001725#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001726 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001727#endif
1728
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 /* Cursor on first line by default. */
1730 curwin->w_cursor.lnum = 1;
1731 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001734 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001736 /* mark cursor position as being invalid */
1737 curwin->w_valid = 0;
1738
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001739 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1740 curbuf->b_last_cursor.col, TRUE);
1741
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 /* Make sure the buffer is loaded. */
1743 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001744 {
1745 /* If there is no filetype, allow for detecting one. Esp. useful for
1746 * ":ball" used in a autocommand. If there already is a filetype we
1747 * might prefer to keep it. */
1748 if (*curbuf->b_p_ft == NUL)
1749 did_filetype = FALSE;
1750
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001751 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 else
1754 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001755 if (!msg_silent)
1756 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001759#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1763 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 }
1765
1766 /* If autocommands did not change the cursor position, restore cursor lnum
1767 * and possibly cursor col. */
1768 if (curwin->w_cursor.lnum == 1 && inindent(0))
1769 buflist_getfpos();
1770
1771 check_arg_idx(curwin); /* check for valid arg_idx */
1772#ifdef FEAT_TITLE
1773 maketitle();
1774#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001775 /* when autocmds didn't change it */
1776 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1778
Bram Moolenaar009b2592004-10-24 19:18:58 +00001779#ifdef FEAT_NETBEANS_INTG
1780 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001781 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001782#endif
1783
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001784 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001785 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786
1787#ifdef FEAT_KEYMAP
1788 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001789 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001791#ifdef FEAT_SPELL
1792 /* May need to set the spell language. Can only do this after the buffer
1793 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001794 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1795 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001796#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001797#ifdef FEAT_VIMINFO
1798 curbuf->b_last_used = vim_time();
1799#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001800
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 redraw_later(NOT_VALID);
1802}
1803
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001804#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1805/*
1806 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001807 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001808 */
1809 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001810do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001811{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001812 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001813 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001814 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001815 shorten_fnames(TRUE);
1816}
1817#endif
1818
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001819 void
1820no_write_message(void)
1821{
1822#ifdef FEAT_TERMINAL
1823 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001824 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001825 else
1826#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001827 emsg(_("E37: No write since last change (add ! to override)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001828}
1829
1830 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001831no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001832{
1833#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001834 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001835 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001836 else
1837#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001838 emsg(_("E37: No write since last change"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001839}
1840
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841/*
1842 * functions for dealing with the buffer list
1843 */
1844
Bram Moolenaar480778b2016-07-14 22:09:39 +02001845static int top_file_num = 1; /* highest file number */
1846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001848 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1849 * only one window. That means it can be re-used.
1850 */
1851 int
1852curbuf_reusable(void)
1853{
1854 return (curbuf != NULL
1855 && curbuf->b_ffname == NULL
1856 && curbuf->b_nwindows <= 1
1857 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
1858 && !curbufIsChanged());
1859}
1860
1861/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 * Add a file name to the buffer list. Return a pointer to the buffer.
1863 * If the same file name already exists return a pointer to that buffer.
1864 * If it does not exist, or if fname == NULL, a new entry is created.
1865 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1866 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1867 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001868 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001869 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1870 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 * This is the ONLY way to create a new buffer.
1872 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001874buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001875 char_u *ffname_arg, // full path of fname or relative
1876 char_u *sfname_arg, // short fname or NULL
1877 linenr_T lnum, // preferred cursor line
1878 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001880 char_u *ffname = ffname_arg;
1881 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 buf_T *buf;
1883#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001884 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885#endif
1886
Bram Moolenaar480778b2016-07-14 22:09:39 +02001887 if (top_file_num == 1)
1888 hash_init(&buf_hashtab);
1889
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001890 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891
1892 /*
1893 * If file name already exists in the list, update the entry.
1894 */
1895#ifdef UNIX
1896 /* On Unix we can use inode numbers when the file exists. Works better
1897 * for hard links. */
1898 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1899 st.st_dev = (dev_T)-1;
1900#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001901 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902#ifdef UNIX
1903 buflist_findname_stat(ffname, &st)
1904#else
1905 buflist_findname(ffname)
1906#endif
1907 ) != NULL)
1908 {
1909 vim_free(ffname);
1910 if (lnum != 0)
1911 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001912
1913 if ((flags & BLN_NOOPT) == 0)
1914 /* copy the options now, if 'cpo' doesn't have 's' and not done
1915 * already */
1916 buf_copy_options(buf, 0);
1917
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1919 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001920 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001921
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001923 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001925 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001926 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001927 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001928 return NULL;
1929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 }
1931 return buf;
1932 }
1933
1934 /*
1935 * If the current buffer has no name and no contents, use the current
1936 * buffer. Otherwise: Need to allocate a new buffer structure.
1937 *
1938 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001939 * (A spell file buffer is allocated in spell.c, but that's not a normal
1940 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 */
1942 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001943 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 {
1945 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 /* It's like this buffer is deleted. Watch out for autocommands that
1947 * change curbuf! If that happens, allocate a new buffer anyway. */
1948 if (curbuf->b_p_bl)
1949 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1950 if (buf == curbuf)
1951 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001952#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001953 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 {
1958 /* Make sure 'bufhidden' and 'buftype' are empty */
1959 clear_string_option(&buf->b_p_bh);
1960 clear_string_option(&buf->b_p_bt);
1961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 }
1963 if (buf != curbuf || curbuf == NULL)
1964 {
1965 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1966 if (buf == NULL)
1967 {
1968 vim_free(ffname);
1969 return NULL;
1970 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001971#ifdef FEAT_EVAL
1972 /* init b: variables */
1973 buf->b_vars = dict_alloc();
1974 if (buf->b_vars == NULL)
1975 {
1976 vim_free(ffname);
1977 vim_free(buf);
1978 return NULL;
1979 }
1980 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1981#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001982 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 }
1984
1985 if (ffname != NULL)
1986 {
1987 buf->b_ffname = ffname;
1988 buf->b_sfname = vim_strsave(sfname);
1989 }
1990
1991 clear_wininfo(buf);
1992 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1993
1994 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1995 || buf->b_wininfo == NULL)
1996 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001997 if (buf->b_sfname != buf->b_ffname)
1998 VIM_CLEAR(buf->b_sfname);
1999 else
2000 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002001 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 if (buf != curbuf)
2003 free_buffer(buf);
2004 return NULL;
2005 }
2006
2007 if (buf == curbuf)
2008 {
2009 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002010 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 if (buf != curbuf) /* autocommands deleted the buffer! */
2012 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002013#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002014 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 return NULL;
2016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002018
2019 /* Init the options. */
2020 buf->b_p_initialized = FALSE;
2021 buf_copy_options(buf, BCO_ENTER);
2022
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023#ifdef FEAT_KEYMAP
2024 /* need to reload lmaps and set b:keymap_name */
2025 curbuf->b_kmap_state |= KEYMAP_INIT;
2026#endif
2027 }
2028 else
2029 {
2030 /*
2031 * put new buffer at the end of the buffer list
2032 */
2033 buf->b_next = NULL;
2034 if (firstbuf == NULL) /* buffer list is empty */
2035 {
2036 buf->b_prev = NULL;
2037 firstbuf = buf;
2038 }
2039 else /* append new buffer at end of list */
2040 {
2041 lastbuf->b_next = buf;
2042 buf->b_prev = lastbuf;
2043 }
2044 lastbuf = buf;
2045
2046 buf->b_fnum = top_file_num++;
2047 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2048 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002049 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 if (emsg_silent == 0)
2051 {
2052 out_flush();
2053 ui_delay(3000L, TRUE); /* make sure it is noticed */
2054 }
2055 top_file_num = 1;
2056 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002057 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
2059 /*
2060 * Always copy the options from the current buffer.
2061 */
2062 buf_copy_options(buf, BCO_ALWAYS);
2063 }
2064
2065 buf->b_wininfo->wi_fpos.lnum = lnum;
2066 buf->b_wininfo->wi_win = curwin;
2067
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002068#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002069 hash_init(&buf->b_s.b_keywtab);
2070 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071#endif
2072
2073 buf->b_fname = buf->b_sfname;
2074#ifdef UNIX
2075 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002076 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 else
2078 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002079 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 buf->b_dev = st.st_dev;
2081 buf->b_ino = st.st_ino;
2082 }
2083#endif
2084 buf->b_u_synced = TRUE;
2085 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002086 if (flags & BLN_DUMMY)
2087 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 buf_clear_file(buf);
2089 clrallmarks(buf); /* clear marks */
2090 fmarks_check_names(buf); /* check file marks for this file */
2091 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 if (!(flags & BLN_DUMMY))
2093 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002094 bufref_T bufref;
2095
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002096 /* Tricky: these autocommands may change the buffer list. They could
2097 * also split the window with re-using the one empty buffer. This may
2098 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002099 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002100 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002101 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002102 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002104 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002105 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002106 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002107 return NULL;
2108 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002109#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002110 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114
2115 return buf;
2116}
2117
2118/*
2119 * Free the memory for the options of a buffer.
2120 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2121 * 'fileencoding'.
2122 */
2123 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002124free_buf_options(
2125 buf_T *buf,
2126 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127{
2128 if (free_p_ff)
2129 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 clear_string_option(&buf->b_p_bh);
2133 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 }
2135#ifdef FEAT_FIND_ID
2136 clear_string_option(&buf->b_p_def);
2137 clear_string_option(&buf->b_p_inc);
2138# ifdef FEAT_EVAL
2139 clear_string_option(&buf->b_p_inex);
2140# endif
2141#endif
2142#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2143 clear_string_option(&buf->b_p_inde);
2144 clear_string_option(&buf->b_p_indk);
2145#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002146#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2147 clear_string_option(&buf->b_p_bexpr);
2148#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002149#if defined(FEAT_CRYPT)
2150 clear_string_option(&buf->b_p_cm);
2151#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002152 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002153#if defined(FEAT_EVAL)
2154 clear_string_option(&buf->b_p_fex);
2155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156#ifdef FEAT_CRYPT
2157 clear_string_option(&buf->b_p_key);
2158#endif
2159 clear_string_option(&buf->b_p_kp);
2160 clear_string_option(&buf->b_p_mps);
2161 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002162 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002164#ifdef FEAT_VARTABS
2165 clear_string_option(&buf->b_p_vsts);
2166 if (buf->b_p_vsts_nopaste)
2167 vim_free(buf->b_p_vsts_nopaste);
2168 buf->b_p_vsts_nopaste = NULL;
2169 if (buf->b_p_vsts_array)
2170 vim_free(buf->b_p_vsts_array);
2171 buf->b_p_vsts_array = NULL;
2172 clear_string_option(&buf->b_p_vts);
2173 if (buf->b_p_vts_array)
2174 vim_free(buf->b_p_vts_array);
2175 buf->b_p_vts_array = NULL;
2176#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177#ifdef FEAT_KEYMAP
2178 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002179 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 ga_clear(&buf->b_kmap_ga);
2181#endif
2182#ifdef FEAT_COMMENTS
2183 clear_string_option(&buf->b_p_com);
2184#endif
2185#ifdef FEAT_FOLDING
2186 clear_string_option(&buf->b_p_cms);
2187#endif
2188 clear_string_option(&buf->b_p_nf);
2189#ifdef FEAT_SYN_HL
2190 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002191 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002192#endif
2193#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002194 clear_string_option(&buf->b_s.b_p_spc);
2195 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002196 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002197 buf->b_s.b_cap_prog = NULL;
2198 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#endif
2200#ifdef FEAT_SEARCHPATH
2201 clear_string_option(&buf->b_p_sua);
2202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204#ifdef FEAT_CINDENT
2205 clear_string_option(&buf->b_p_cink);
2206 clear_string_option(&buf->b_p_cino);
2207#endif
2208#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2209 clear_string_option(&buf->b_p_cinw);
2210#endif
2211#ifdef FEAT_INS_EXPAND
2212 clear_string_option(&buf->b_p_cpt);
2213#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002214#ifdef FEAT_COMPL_FUNC
2215 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002216 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002217#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#ifdef FEAT_QUICKFIX
2219 clear_string_option(&buf->b_p_gp);
2220 clear_string_option(&buf->b_p_mp);
2221 clear_string_option(&buf->b_p_efm);
2222#endif
2223 clear_string_option(&buf->b_p_ep);
2224 clear_string_option(&buf->b_p_path);
2225 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002226 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227#ifdef FEAT_INS_EXPAND
2228 clear_string_option(&buf->b_p_dict);
2229 clear_string_option(&buf->b_p_tsr);
2230#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002231#ifdef FEAT_TEXTOBJ
2232 clear_string_option(&buf->b_p_qe);
2233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002235 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002236#ifdef FEAT_LISP
2237 clear_string_option(&buf->b_p_lw);
2238#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002239 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002240 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241}
2242
2243/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002244 * Get alternate file "n".
2245 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2246 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 * if (options & GETF_SETMARK) call setpcmark()
2248 * if (options & GETF_ALT) we are jumping to an alternate file.
2249 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2250 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002251 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 */
2253 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002254buflist_getfile(
2255 int n,
2256 linenr_T lnum,
2257 int options,
2258 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259{
2260 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 pos_T *fpos;
2263 colnr_T col;
2264
2265 buf = buflist_findnr(n);
2266 if (buf == NULL)
2267 {
2268 if ((options & GETF_ALT) && n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002269 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002271 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 return FAIL;
2273 }
2274
2275 /* if alternate file is the current buffer, nothing to do */
2276 if (buf == curbuf)
2277 return OK;
2278
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002279 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002280 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002281 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002283 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002284 if (curbuf_locked())
2285 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286
2287 /* altfpos may be changed by getfile(), get it now */
2288 if (lnum == 0)
2289 {
2290 fpos = buflist_findfpos(buf);
2291 lnum = fpos->lnum;
2292 col = fpos->col;
2293 }
2294 else
2295 col = 0;
2296
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 if (options & GETF_SWITCH)
2298 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002299 /* If 'switchbuf' contains "useopen": jump to first window containing
2300 * "buf" if one exists */
2301 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002303
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002304 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002305 * page containing "buf" if one exists */
2306 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002307 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002308
2309 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2310 * current buffer isn't empty: open new tab or window */
2311 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002312 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002314 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002315 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002316 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2317 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002319 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 }
2321 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322
2323 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002324 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2325 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 {
2327 --RedrawingDisabled;
2328
2329 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2330 if (!p_sol && col != 0)
2331 {
2332 curwin->w_cursor.col = col;
2333 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 curwin->w_set_curswant = TRUE;
2336 }
2337 return OK;
2338 }
2339 --RedrawingDisabled;
2340 return FAIL;
2341}
2342
2343/*
2344 * go to the last know line number for the current buffer
2345 */
2346 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002347buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348{
2349 pos_T *fpos;
2350
2351 fpos = buflist_findfpos(curbuf);
2352
2353 curwin->w_cursor.lnum = fpos->lnum;
2354 check_cursor_lnum();
2355
2356 if (p_sol)
2357 curwin->w_cursor.col = 0;
2358 else
2359 {
2360 curwin->w_cursor.col = fpos->col;
2361 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 curwin->w_set_curswant = TRUE;
2364 }
2365}
2366
Bram Moolenaar81695252004-12-29 20:58:21 +00002367#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2368/*
2369 * Find file in buffer list by name (it has to be for the current window).
2370 * Returns NULL if not found.
2371 */
2372 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002373buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002374{
2375 char_u *ffname;
2376 buf_T *buf = NULL;
2377
2378 /* First make the name into a full path name */
2379 ffname = FullName_save(fname,
2380#ifdef UNIX
2381 TRUE /* force expansion, get rid of symbolic links */
2382#else
2383 FALSE
2384#endif
2385 );
2386 if (ffname != NULL)
2387 {
2388 buf = buflist_findname(ffname);
2389 vim_free(ffname);
2390 }
2391 return buf;
2392}
2393#endif
2394
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395/*
2396 * Find file in buffer list by name (it has to be for the current window).
2397 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002398 * Skips dummy buffers.
2399 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 */
2401 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002402buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403{
2404#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002405 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406
2407 if (mch_stat((char *)ffname, &st) < 0)
2408 st.st_dev = (dev_T)-1;
2409 return buflist_findname_stat(ffname, &st);
2410}
2411
2412/*
2413 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2414 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002415 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 */
2417 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002418buflist_findname_stat(
2419 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002420 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422#endif
2423 buf_T *buf;
2424
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002425 /* Start at the last buffer, expect to find a match sooner. */
2426 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002427 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428#ifdef UNIX
2429 , stp
2430#endif
2431 ))
2432 return buf;
2433 return NULL;
2434}
2435
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436/*
2437 * Find file in buffer list by a regexp pattern.
2438 * Return fnum of the found buffer.
2439 * Return < 0 for error.
2440 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002442buflist_findpat(
2443 char_u *pattern,
2444 char_u *pattern_end, /* pointer to first char after pattern */
2445 int unlisted, /* find unlisted buffers */
2446 int diffmode UNUSED, /* find diff-mode buffers only */
2447 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448{
2449 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 int match = -1;
2451 int find_listed;
2452 char_u *pat;
2453 char_u *patend;
2454 int attempt;
2455 char_u *p;
2456 int toggledollar;
2457
2458 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2459 {
2460 if (*pattern == '%')
2461 match = curbuf->b_fnum;
2462 else
2463 match = curwin->w_alt_fnum;
2464#ifdef FEAT_DIFF
2465 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2466 match = -1;
2467#endif
2468 }
2469
2470 /*
2471 * Try four ways of matching a listed buffer:
2472 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002473 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 * attempt == 2: with '$' at end (only match at end)
2475 * attempt == 3: with '^' at start and '$' at end (only full match)
2476 * Repeat this for finding an unlisted buffer if there was no matching
2477 * listed buffer.
2478 */
2479 else
2480 {
2481 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2482 if (pat == NULL)
2483 return -1;
2484 patend = pat + STRLEN(pat) - 1;
2485 toggledollar = (patend > pat && *patend == '$');
2486
2487 /* First try finding a listed buffer. If not found and "unlisted"
2488 * is TRUE, try finding an unlisted buffer. */
2489 find_listed = TRUE;
2490 for (;;)
2491 {
2492 for (attempt = 0; attempt <= 3; ++attempt)
2493 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002494 regmatch_T regmatch;
2495
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 /* may add '^' and '$' */
2497 if (toggledollar)
2498 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2499 p = pat;
2500 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2501 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002502 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2503 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 {
2505 vim_free(pat);
2506 return -1;
2507 }
2508
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002509 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 if (buf->b_p_bl == find_listed
2511#ifdef FEAT_DIFF
2512 && (!diffmode || diff_mode_buf(buf))
2513#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002514 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002516 if (curtab_only)
2517 {
2518 /* Ignore the match if the buffer is not open in
2519 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002520 win_T *wp;
2521
Bram Moolenaar29323592016-07-24 22:04:11 +02002522 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002523 if (wp->w_buffer == buf)
2524 break;
2525 if (wp == NULL)
2526 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (match >= 0) /* already found a match */
2529 {
2530 match = -2;
2531 break;
2532 }
2533 match = buf->b_fnum; /* remember first match */
2534 }
2535
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002536 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 if (match >= 0) /* found one match */
2538 break;
2539 }
2540
2541 /* Only search for unlisted buffers if there was no match with
2542 * a listed buffer. */
2543 if (!unlisted || !find_listed || match != -1)
2544 break;
2545 find_listed = FALSE;
2546 }
2547
2548 vim_free(pat);
2549 }
2550
2551 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002552 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002554 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 return match;
2556}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557
2558#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2559
2560/*
2561 * Find all buffer names that match.
2562 * For command line expansion of ":buf" and ":sbuf".
2563 * Return OK if matches found, FAIL otherwise.
2564 */
2565 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002566ExpandBufnames(
2567 char_u *pat,
2568 int *num_file,
2569 char_u ***file,
2570 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571{
2572 int count = 0;
2573 buf_T *buf;
2574 int round;
2575 char_u *p;
2576 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002577 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578
2579 *num_file = 0; /* return values in case of FAIL */
2580 *file = NULL;
2581
Bram Moolenaar05159a02005-02-26 23:04:13 +00002582 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2583 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002585 patc = alloc((unsigned)STRLEN(pat) + 11);
2586 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002588 STRCPY(patc, "\\(^\\|[\\/]\\)");
2589 STRCPY(patc + 11, pat + 1);
2590 }
2591 else
2592 patc = pat;
2593
2594 /*
2595 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002596 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002597 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002598 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002599 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002600 regmatch_T regmatch;
2601
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002602 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002603 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002604 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2605 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002606 {
2607 if (patc != pat)
2608 vim_free(patc);
2609 return FAIL;
2610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611
2612 /*
2613 * round == 1: Count the matches.
2614 * round == 2: Build the array to keep the matches.
2615 */
2616 for (round = 1; round <= 2; ++round)
2617 {
2618 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002619 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 {
2621 if (!buf->b_p_bl) /* skip unlisted buffers */
2622 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002623 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 if (p != NULL)
2625 {
2626 if (round == 1)
2627 ++count;
2628 else
2629 {
2630 if (options & WILD_HOME_REPLACE)
2631 p = home_replace_save(buf, p);
2632 else
2633 p = vim_strsave(p);
2634 (*file)[count++] = p;
2635 }
2636 }
2637 }
2638 if (count == 0) /* no match found, break here */
2639 break;
2640 if (round == 1)
2641 {
2642 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2643 if (*file == NULL)
2644 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002645 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002646 if (patc != pat)
2647 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 return FAIL;
2649 }
2650 }
2651 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002652 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 if (count) /* match(es) found, break here */
2654 break;
2655 }
2656
Bram Moolenaar05159a02005-02-26 23:04:13 +00002657 if (patc != pat)
2658 vim_free(patc);
2659
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 *num_file = count;
2661 return (count == 0 ? FAIL : OK);
2662}
2663
2664#endif /* FEAT_CMDL_COMPL */
2665
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666/*
2667 * Check for a match on the file name for buffer "buf" with regprog "prog".
2668 */
2669 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002670buflist_match(
2671 regmatch_T *rmp,
2672 buf_T *buf,
2673 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674{
2675 char_u *match;
2676
2677 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002678 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002680 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
2682 return match;
2683}
2684
2685/*
2686 * Try matching the regexp in "prog" with file name "name".
2687 * Return "name" when there is a match, NULL when not.
2688 */
2689 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002690fname_match(
2691 regmatch_T *rmp,
2692 char_u *name,
2693 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694{
2695 char_u *match = NULL;
2696 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697
2698 if (name != NULL)
2699 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002700 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002701 rmp->rm_ic = p_fic || ignore_case;
2702 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 match = name;
2704 else
2705 {
2706 /* Replace $(HOME) with '~' and try matching again. */
2707 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002708 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 match = name;
2710 vim_free(p);
2711 }
2712 }
2713
2714 return match;
2715}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716
2717/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002718 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 */
2720 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002721buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002723 char_u key[VIM_SIZEOF_INT * 2 + 1];
2724 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
2726 if (nr == 0)
2727 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002728 sprintf((char *)key, "%x", nr);
2729 hi = hash_find(&buf_hashtab, key);
2730
2731 if (!HASHITEM_EMPTY(hi))
2732 return (buf_T *)(hi->hi_key
2733 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 return NULL;
2735}
2736
2737/*
2738 * Get name of file 'n' in the buffer list.
2739 * When the file has no name an empty string is returned.
2740 * home_replace() is used to shorten the file name (used for marks).
2741 * Returns a pointer to allocated memory, of NULL when failed.
2742 */
2743 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002744buflist_nr2name(
2745 int n,
2746 int fullname,
2747 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748{
2749 buf_T *buf;
2750
2751 buf = buflist_findnr(n);
2752 if (buf == NULL)
2753 return NULL;
2754 return home_replace_save(helptail ? buf : NULL,
2755 fullname ? buf->b_ffname : buf->b_fname);
2756}
2757
2758/*
2759 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2760 * When "copy_options" is TRUE save the local window option values.
2761 * When "lnum" is 0 only do the options.
2762 */
2763 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002764buflist_setfpos(
2765 buf_T *buf,
2766 win_T *win,
2767 linenr_T lnum,
2768 colnr_T col,
2769 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770{
2771 wininfo_T *wip;
2772
2773 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2774 if (wip->wi_win == win)
2775 break;
2776 if (wip == NULL)
2777 {
2778 /* allocate a new entry */
2779 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2780 if (wip == NULL)
2781 return;
2782 wip->wi_win = win;
2783 if (lnum == 0) /* set lnum even when it's 0 */
2784 lnum = 1;
2785 }
2786 else
2787 {
2788 /* remove the entry from the list */
2789 if (wip->wi_prev)
2790 wip->wi_prev->wi_next = wip->wi_next;
2791 else
2792 buf->b_wininfo = wip->wi_next;
2793 if (wip->wi_next)
2794 wip->wi_next->wi_prev = wip->wi_prev;
2795 if (copy_options && wip->wi_optset)
2796 {
2797 clear_winopt(&wip->wi_opt);
2798#ifdef FEAT_FOLDING
2799 deleteFoldRecurse(&wip->wi_folds);
2800#endif
2801 }
2802 }
2803 if (lnum != 0)
2804 {
2805 wip->wi_fpos.lnum = lnum;
2806 wip->wi_fpos.col = col;
2807 }
2808 if (copy_options)
2809 {
2810 /* Save the window-specific option values. */
2811 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2812#ifdef FEAT_FOLDING
2813 wip->wi_fold_manual = win->w_fold_manual;
2814 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2815#endif
2816 wip->wi_optset = TRUE;
2817 }
2818
2819 /* insert the entry in front of the list */
2820 wip->wi_next = buf->b_wininfo;
2821 buf->b_wininfo = wip;
2822 wip->wi_prev = NULL;
2823 if (wip->wi_next)
2824 wip->wi_next->wi_prev = wip;
2825
2826 return;
2827}
2828
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002829#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002830/*
2831 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2832 * page. That's because a diff is local to a tab page.
2833 */
2834 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002835wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002836{
2837 win_T *wp;
2838
2839 if (wip->wi_opt.wo_diff)
2840 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002841 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002842 /* return FALSE when it's a window in the current tab page, thus
2843 * the buffer was in diff mode here */
2844 if (wip->wi_win == wp)
2845 return FALSE;
2846 return TRUE;
2847 }
2848 return FALSE;
2849}
2850#endif
2851
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852/*
2853 * Find info for the current window in buffer "buf".
2854 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002855 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2856 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 * Returns NULL when there isn't any info.
2858 */
2859 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002860find_wininfo(
2861 buf_T *buf,
2862 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863{
2864 wininfo_T *wip;
2865
2866 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002867 if (wip->wi_win == curwin
2868#ifdef FEAT_DIFF
2869 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2870#endif
2871 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002873
2874 /* If no wininfo for curwin, use the first in the list (that doesn't have
2875 * 'diff' set and is in another tab page). */
2876 if (wip == NULL)
2877 {
2878#ifdef FEAT_DIFF
2879 if (skip_diff_buffer)
2880 {
2881 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2882 if (!wininfo_other_tab_diff(wip))
2883 break;
2884 }
2885 else
2886#endif
2887 wip = buf->b_wininfo;
2888 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 return wip;
2890}
2891
2892/*
2893 * Reset the local window options to the values last used in this window.
2894 * If the buffer wasn't used in this window before, use the values from
2895 * the most recently used window. If the values were never set, use the
2896 * global values for the window.
2897 */
2898 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002899get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900{
2901 wininfo_T *wip;
2902
2903 clear_winopt(&curwin->w_onebuf_opt);
2904#ifdef FEAT_FOLDING
2905 clearFolding(curwin);
2906#endif
2907
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002908 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002909 if (wip != NULL && wip->wi_win != NULL
2910 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002912 /* The buffer is currently displayed in the window: use the actual
2913 * option values instead of the saved (possibly outdated) values. */
2914 win_T *wp = wip->wi_win;
2915
2916 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2917#ifdef FEAT_FOLDING
2918 curwin->w_fold_manual = wp->w_fold_manual;
2919 curwin->w_foldinvalid = TRUE;
2920 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2921#endif
2922 }
2923 else if (wip != NULL && wip->wi_optset)
2924 {
2925 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2927#ifdef FEAT_FOLDING
2928 curwin->w_fold_manual = wip->wi_fold_manual;
2929 curwin->w_foldinvalid = TRUE;
2930 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2931#endif
2932 }
2933 else
2934 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2935
2936#ifdef FEAT_FOLDING
2937 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2938 if (p_fdls >= 0)
2939 curwin->w_p_fdl = p_fdls;
2940#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002941#ifdef FEAT_SYN_HL
2942 check_colorcolumn(curwin);
2943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944}
2945
2946/*
2947 * Find the position (lnum and col) for the buffer 'buf' for the current
2948 * window.
2949 * Returns a pointer to no_position if no position is found.
2950 */
2951 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002952buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953{
2954 wininfo_T *wip;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002955 static pos_T no_position = {1, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002957 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 if (wip != NULL)
2959 return &(wip->wi_fpos);
2960 else
2961 return &no_position;
2962}
2963
2964/*
2965 * Find the lnum for the buffer 'buf' for the current window.
2966 */
2967 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002968buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969{
2970 return buflist_findfpos(buf)->lnum;
2971}
2972
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002974 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002977buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978{
2979 buf_T *buf;
2980 int len;
2981 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002982 int ro_char;
2983 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02002984#ifdef FEAT_TERMINAL
2985 int job_running;
2986 int job_none_open;
2987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988
2989 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2990 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02002991#ifdef FEAT_TERMINAL
2992 job_running = term_job_running(buf->b_term);
2993 job_none_open = job_running && term_none_open(buf->b_term);
2994#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002996 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2997 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2998 || (vim_strchr(eap->arg, '+')
2999 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3000 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003001 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003002 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003003 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3004#ifdef FEAT_TERMINAL
3005 || (vim_strchr(eap->arg, 'R')
3006 && (!job_running || (job_running && job_none_open)))
3007 || (vim_strchr(eap->arg, '?')
3008 && (!job_running || (job_running && !job_none_open)))
3009 || (vim_strchr(eap->arg, 'F')
3010 && (job_running || buf->b_term == NULL))
3011#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003012 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3013 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3014 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3015 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3016 || (vim_strchr(eap->arg, '#')
3017 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003020 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 else
3022 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003023 if (message_filtered(NameBuff))
3024 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003026 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3027 : (bufIsChanged(buf) ? '+' : ' ');
3028#ifdef FEAT_TERMINAL
3029 if (term_job_running(buf->b_term))
3030 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003031 if (term_none_open(buf->b_term))
3032 ro_char = '?';
3033 else
3034 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003035 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3036 * closing, but it's not actually changed. */
3037 }
3038 else if (buf->b_term != NULL)
3039 ro_char = 'F';
3040 else
3041#endif
3042 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3043
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003044 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003045 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 buf->b_fnum,
3047 buf->b_p_bl ? ' ' : 'u',
3048 buf == curbuf ? '%' :
3049 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3050 buf->b_ml.ml_mfp == NULL ? ' ' :
3051 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003052 ro_char,
3053 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003054 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003055 if (len > IOSIZE - 20)
3056 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057
3058 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 i = 40 - vim_strsize(IObuff);
3060 do
3061 {
3062 IObuff[len++] = ' ';
3063 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003064 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3065 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003066 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 msg_outtrans(IObuff);
3068 out_flush(); /* output one line at a time */
3069 ui_breakcheck();
3070 }
3071}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072
3073/*
3074 * Get file name and line number for file 'fnum'.
3075 * Used by DoOneCmd() for translating '%' and '#'.
3076 * Used by insert_reg() and cmdline_paste() for '#' register.
3077 * Return FAIL if not found, OK for success.
3078 */
3079 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003080buflist_name_nr(
3081 int fnum,
3082 char_u **fname,
3083 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084{
3085 buf_T *buf;
3086
3087 buf = buflist_findnr(fnum);
3088 if (buf == NULL || buf->b_fname == NULL)
3089 return FAIL;
3090
3091 *fname = buf->b_fname;
3092 *lnum = buflist_findlnum(buf);
3093
3094 return OK;
3095}
3096
3097/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003098 * Set the file name for "buf"' to "ffname_arg", short file name to
3099 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 * The file name with the full path is also remembered, for when :cd is used.
3101 * Returns FAIL for failure (file name already in use by other buffer)
3102 * OK otherwise.
3103 */
3104 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003105setfname(
3106 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003107 char_u *ffname_arg,
3108 char_u *sfname_arg,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003109 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003111 char_u *ffname = ffname_arg;
3112 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003113 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003115 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116#endif
3117
3118 if (ffname == NULL || *ffname == NUL)
3119 {
3120 /* Removing the name. */
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003121 if (buf->b_sfname != buf->b_ffname)
3122 VIM_CLEAR(buf->b_sfname);
3123 else
3124 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003125 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126#ifdef UNIX
3127 st.st_dev = (dev_T)-1;
3128#endif
3129 }
3130 else
3131 {
3132 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3133 if (ffname == NULL) /* out of memory */
3134 return FAIL;
3135
3136 /*
3137 * if the file name is already used in another buffer:
3138 * - if the buffer is loaded, fail
3139 * - if the buffer is not loaded, delete it from the list
3140 */
3141#ifdef UNIX
3142 if (mch_stat((char *)ffname, &st) < 0)
3143 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003144#endif
3145 if (!(buf->b_flags & BF_DUMMY))
3146#ifdef UNIX
3147 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003149 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150#endif
3151 if (obuf != NULL && obuf != buf)
3152 {
3153 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3154 {
3155 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003156 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 vim_free(ffname);
3158 return FAIL;
3159 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003160 /* delete from the list */
3161 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 }
3163 sfname = vim_strsave(sfname);
3164 if (ffname == NULL || sfname == NULL)
3165 {
3166 vim_free(sfname);
3167 vim_free(ffname);
3168 return FAIL;
3169 }
3170#ifdef USE_FNAME_CASE
3171# ifdef USE_LONG_FNAME
3172 if (USE_LONG_FNAME)
3173# endif
3174 fname_case(sfname, 0); /* set correct case for short file name */
3175#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003176 if (buf->b_sfname != buf->b_ffname)
3177 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 buf->b_ffname = ffname;
3180 buf->b_sfname = sfname;
3181 }
3182 buf->b_fname = buf->b_sfname;
3183#ifdef UNIX
3184 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003185 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 else
3187 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003188 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 buf->b_dev = st.st_dev;
3190 buf->b_ino = st.st_ino;
3191 }
3192#endif
3193
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195
3196 buf_name_changed(buf);
3197 return OK;
3198}
3199
3200/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003201 * Crude way of changing the name of a buffer. Use with care!
3202 * The name should be relative to the current directory.
3203 */
3204 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003205buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003206{
3207 buf_T *buf;
3208
3209 buf = buflist_findnr(fnum);
3210 if (buf != NULL)
3211 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003212 if (buf->b_sfname != buf->b_ffname)
3213 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003214 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003215 buf->b_ffname = vim_strsave(name);
3216 buf->b_sfname = NULL;
3217 /* Allocate ffname and expand into full path. Also resolves .lnk
3218 * files on Win32. */
3219 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003220 buf->b_fname = buf->b_sfname;
3221 }
3222}
3223
3224/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 * Take care of what needs to be done when the name of buffer "buf" has
3226 * changed.
3227 */
3228 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003229buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230{
3231 /*
3232 * If the file name changed, also change the name of the swapfile
3233 */
3234 if (buf->b_ml.ml_mfp != NULL)
3235 ml_setname(buf);
3236
3237 if (curwin->w_buffer == buf)
3238 check_arg_idx(curwin); /* check file name for arg list */
3239#ifdef FEAT_TITLE
3240 maketitle(); /* set window title */
3241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 fmarks_check_names(buf); /* check named file marks */
3244 ml_timestamp(buf); /* reset timestamp */
3245}
3246
3247/*
3248 * set alternate file name for current window
3249 *
3250 * Used by do_one_cmd(), do_write() and do_ecmd().
3251 * Return the buffer.
3252 */
3253 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003254setaltfname(
3255 char_u *ffname,
3256 char_u *sfname,
3257 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 buf_T *buf;
3260
3261 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3262 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003263 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 curwin->w_alt_fnum = buf->b_fnum;
3265 return buf;
3266}
3267
3268/*
3269 * Get alternate file name for current window.
3270 * Return NULL if there isn't any, and give error message if requested.
3271 */
3272 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003273getaltfname(
3274 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275{
3276 char_u *fname;
3277 linenr_T dummy;
3278
3279 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3280 {
3281 if (errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003282 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 return NULL;
3284 }
3285 return fname;
3286}
3287
3288/*
3289 * Add a file name to the buflist and return its number.
3290 * Uses same flags as buflist_new(), except BLN_DUMMY.
3291 *
3292 * used by qf_init(), main() and doarglist()
3293 */
3294 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003295buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296{
3297 buf_T *buf;
3298
3299 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3300 if (buf != NULL)
3301 return buf->b_fnum;
3302 return 0;
3303}
3304
3305#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3306/*
3307 * Adjust slashes in file names. Called after 'shellslash' was set.
3308 */
3309 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003310buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311{
3312 buf_T *bp;
3313
Bram Moolenaar29323592016-07-24 22:04:11 +02003314 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 {
3316 if (bp->b_ffname != NULL)
3317 slash_adjust(bp->b_ffname);
3318 if (bp->b_sfname != NULL)
3319 slash_adjust(bp->b_sfname);
3320 }
3321}
3322#endif
3323
3324/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003325 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 * Also save the local window option values.
3327 */
3328 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003329buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003331 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332}
3333
3334/*
3335 * Return TRUE if 'ffname' is not the same file as current file.
3336 * Fname must have a full path (expanded by mch_FullName()).
3337 */
3338 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003339otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340{
3341 return otherfile_buf(curbuf, ffname
3342#ifdef UNIX
3343 , NULL
3344#endif
3345 );
3346}
3347
3348 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003349otherfile_buf(
3350 buf_T *buf,
3351 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003353 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003355 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356{
3357 /* no name is different */
3358 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3359 return TRUE;
3360 if (fnamecmp(ffname, buf->b_ffname) == 0)
3361 return FALSE;
3362#ifdef UNIX
3363 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003364 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365
Bram Moolenaar8767f522016-07-01 17:17:39 +02003366 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 if (stp == NULL)
3368 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003369 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 st.st_dev = (dev_T)-1;
3371 stp = &st;
3372 }
3373 /* Use dev/ino to check if the files are the same, even when the names
3374 * are different (possible with links). Still need to compare the
3375 * name above, for when the file doesn't exist yet.
3376 * Problem: The dev/ino changes when a file is deleted (and created
3377 * again) and remains the same when renamed/moved. We don't want to
3378 * mch_stat() each buffer each time, that would be too slow. Get the
3379 * dev/ino again when they appear to match, but not when they appear
3380 * to be different: Could skip a buffer when it's actually the same
3381 * file. */
3382 if (buf_same_ino(buf, stp))
3383 {
3384 buf_setino(buf);
3385 if (buf_same_ino(buf, stp))
3386 return FALSE;
3387 }
3388 }
3389#endif
3390 return TRUE;
3391}
3392
3393#if defined(UNIX) || defined(PROTO)
3394/*
3395 * Set inode and device number for a buffer.
3396 * Must always be called when b_fname is changed!.
3397 */
3398 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003399buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003401 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402
3403 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3404 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003405 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 buf->b_dev = st.st_dev;
3407 buf->b_ino = st.st_ino;
3408 }
3409 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003410 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411}
3412
3413/*
3414 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3415 */
3416 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003417buf_same_ino(
3418 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003419 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003421 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 && stp->st_dev == buf->b_dev
3423 && stp->st_ino == buf->b_ino);
3424}
3425#endif
3426
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003427/*
3428 * Print info about the current buffer.
3429 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003431fileinfo(
3432 int fullname, /* when non-zero print full path */
3433 int shorthelp,
3434 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435{
3436 char_u *name;
3437 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003438 char *p;
3439 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003440 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441
Bram Moolenaar32526b32019-01-19 17:43:09 +01003442 buffer = (char *)alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 if (buffer == NULL)
3444 return;
3445
3446 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3447 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003448 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 p = buffer + STRLEN(buffer);
3450 }
3451 else
3452 p = buffer;
3453
3454 *p++ = '"';
3455 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003456 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 else
3458 {
3459 if (!fullname && curbuf->b_fname != NULL)
3460 name = curbuf->b_fname;
3461 else
3462 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003463 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 (int)(IOSIZE - (p - buffer)), TRUE);
3465 }
3466
Bram Moolenaar32526b32019-01-19 17:43:09 +01003467 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 curbufIsChanged() ? (shortmess(SHM_MOD)
3469 ? " [+]" : _(" [Modified]")) : " ",
3470 (curbuf->b_flags & BF_NOTEDITED)
3471#ifdef FEAT_QUICKFIX
3472 && !bt_dontwrite(curbuf)
3473#endif
3474 ? _("[Not edited]") : "",
3475 (curbuf->b_flags & BF_NEW)
3476#ifdef FEAT_QUICKFIX
3477 && !bt_dontwrite(curbuf)
3478#endif
3479 ? _("[New file]") : "",
3480 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003481 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 : _("[readonly]")) : "",
3483 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3484 || curbuf->b_p_ro) ?
3485 " " : "");
3486 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3487 * causes an overflow, thus for large numbers divide instead. */
3488 if (curwin->w_cursor.lnum > 1000000L)
3489 n = (int)(((long)curwin->w_cursor.lnum) /
3490 ((long)curbuf->b_ml.ml_line_count / 100L));
3491 else
3492 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3493 (long)curbuf->b_ml.ml_line_count);
3494 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003495 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496#ifdef FEAT_CMDL_INFO
3497 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 /* Current line and column are already on the screen -- webb */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003499 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003500 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3501 curbuf->b_ml.ml_line_count),
3502 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503#endif
3504 else
3505 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003506 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 _("line %ld of %ld --%d%%-- col "),
3508 (long)curwin->w_cursor.lnum,
3509 (long)curbuf->b_ml.ml_line_count,
3510 n);
3511 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003512 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003513 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3515 }
3516
Bram Moolenaar32526b32019-01-19 17:43:09 +01003517 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3518 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519
3520 if (dont_truncate)
3521 {
3522 /* Temporarily set msg_scroll to avoid the message being truncated.
3523 * First call msg_start() to get the message in the right place. */
3524 msg_start();
3525 n = msg_scroll;
3526 msg_scroll = TRUE;
3527 msg(buffer);
3528 msg_scroll = n;
3529 }
3530 else
3531 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003532 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 /* Need to repeat the message after redrawing when:
3535 * - When restart_edit is set (otherwise there will be a delay
3536 * before redrawing).
3537 * - When the screen was scrolled but there is no wait-return
3538 * prompt. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003539 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 }
3541
3542 vim_free(buffer);
3543}
3544
3545 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003546col_print(
3547 char_u *buf,
3548 size_t buflen,
3549 int col,
3550 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551{
3552 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003553 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003555 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556}
3557
3558#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559static char_u *lasttitle = NULL;
3560static char_u *lasticon = NULL;
3561
Bram Moolenaar84a93082018-06-16 22:58:15 +02003562/*
3563 * Put the file name in the title bar and icon of the window.
3564 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003566maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567{
3568 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003569 char_u *title_str = NULL;
3570 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 int maxlen = 0;
3572 int len;
3573 int mustset;
3574 char_u buf[IOSIZE];
3575 int off;
3576
3577 if (!redrawing())
3578 {
3579 /* Postpone updating the title when 'lazyredraw' is set. */
3580 need_maketitle = TRUE;
3581 return;
3582 }
3583
3584 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003585 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003586 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587
3588 if (p_title)
3589 {
3590 if (p_titlelen > 0)
3591 {
3592 maxlen = p_titlelen * Columns / 100;
3593 if (maxlen < 10)
3594 maxlen = 10;
3595 }
3596
Bram Moolenaar84a93082018-06-16 22:58:15 +02003597 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 if (*p_titlestring != NUL)
3599 {
3600#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003601 if (stl_syntax & STL_IN_TITLE)
3602 {
3603 int use_sandbox = FALSE;
3604 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003605
3606# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003607 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003608# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003609 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003610 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003611 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003612 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003613 if (called_emsg)
3614 set_string_option_direct((char_u *)"titlestring", -1,
3615 (char_u *)"", OPT_FREE, SID_ERROR);
3616 called_emsg |= save_called_emsg;
3617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 else
3619#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003620 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 }
3622 else
3623 {
3624 /* format: "fname + (path) (1 of 2) - VIM" */
3625
Bram Moolenaar2c666692012-09-05 13:30:40 +02003626#define SPACE_FOR_FNAME (IOSIZE - 100)
3627#define SPACE_FOR_DIR (IOSIZE - 20)
3628#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003630 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003631#ifdef FEAT_TERMINAL
3632 else if (curbuf->b_term != NULL)
3633 {
3634 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3635 SPACE_FOR_FNAME);
3636 }
3637#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 else
3639 {
3640 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003641 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 }
3644
Bram Moolenaar21554412017-07-24 21:44:43 +02003645#ifdef FEAT_TERMINAL
3646 if (curbuf->b_term == NULL)
3647#endif
3648 switch (bufIsChanged(curbuf)
3649 + (curbuf->b_p_ro * 2)
3650 + (!curbuf->b_p_ma * 4))
3651 {
3652 case 1: STRCAT(buf, " +"); break;
3653 case 2: STRCAT(buf, " ="); break;
3654 case 3: STRCAT(buf, " =+"); break;
3655 case 4:
3656 case 6: STRCAT(buf, " -"); break;
3657 case 5:
3658 case 7: STRCAT(buf, " -+"); break;
3659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660
Bram Moolenaar21554412017-07-24 21:44:43 +02003661 if (curbuf->b_fname != NULL
3662#ifdef FEAT_TERMINAL
3663 && curbuf->b_term == NULL
3664#endif
3665 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 {
3667 /* Get path of file, replace home dir with ~ */
3668 off = (int)STRLEN(buf);
3669 buf[off++] = ' ';
3670 buf[off++] = '(';
3671 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003672 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673#ifdef BACKSLASH_IN_FILENAME
3674 /* avoid "c:/name" to be reduced to "c" */
3675 if (isalpha(buf[off]) && buf[off + 1] == ':')
3676 off += 2;
3677#endif
3678 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003679 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003681 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003682 /* must be a help buffer */
3683 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003684 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003688
Bram Moolenaar2c666692012-09-05 13:30:40 +02003689 /* Translate unprintable chars and concatenate. Keep some
3690 * room for the server name. When there is no room (very long
3691 * file name) use (...). */
3692 if (off < SPACE_FOR_DIR)
3693 {
3694 p = transstr(buf + off);
3695 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3696 vim_free(p);
3697 }
3698 else
3699 {
3700 vim_strncpy(buf + off, (char_u *)"...",
3701 (size_t)(SPACE_FOR_ARGNR - off));
3702 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 STRCAT(buf, ")");
3704 }
3705
Bram Moolenaar2c666692012-09-05 13:30:40 +02003706 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707
3708#if defined(FEAT_CLIENTSERVER)
3709 if (serverName != NULL)
3710 {
3711 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003712 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 }
3714 else
3715#endif
3716 STRCAT(buf, " - VIM");
3717
3718 if (maxlen > 0)
3719 {
3720 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003721 if (vim_strsize(buf) > maxlen)
3722 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 }
3724 }
3725 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003726 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727
3728 if (p_icon)
3729 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003730 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 if (*p_iconstring != NUL)
3732 {
3733#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003734 if (stl_syntax & STL_IN_ICON)
3735 {
3736 int use_sandbox = FALSE;
3737 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003738
3739# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003740 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003741# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003742 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003743 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003744 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003745 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003746 if (called_emsg)
3747 set_string_option_direct((char_u *)"iconstring", -1,
3748 (char_u *)"", OPT_FREE, SID_ERROR);
3749 called_emsg |= save_called_emsg;
3750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 else
3752#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003753 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 }
3755 else
3756 {
3757 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003758 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003760 p = gettail(curbuf->b_ffname);
3761 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003763 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 if (len > 100)
3765 {
3766 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003768 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003769 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003771 STRCPY(icon_str, p);
3772 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 }
3774 }
3775
Bram Moolenaar84a93082018-06-16 22:58:15 +02003776 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777
3778 if (mustset)
3779 resettitle();
3780}
3781
3782/*
3783 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3784 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003785 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 */
3787 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003788value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789{
3790 if ((str == NULL) != (*last == NULL)
3791 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3792 {
3793 vim_free(*last);
3794 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003795 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003797 mch_restore_title(
3798 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003799 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003801 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003803 return TRUE;
3804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 }
3806 return FALSE;
3807}
3808
3809/*
3810 * Put current window title back (used after calling a shell)
3811 */
3812 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003813resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814{
3815 mch_settitle(lasttitle, lasticon);
3816}
Bram Moolenaarea408852005-06-25 22:49:46 +00003817
3818# if defined(EXITFREE) || defined(PROTO)
3819 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003820free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003821{
3822 vim_free(lasttitle);
3823 vim_free(lasticon);
3824}
3825# endif
3826
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827#endif /* FEAT_TITLE */
3828
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003829#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003831 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 * Return length of string in screen cells.
3833 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003834 * Normally works for window "wp", except when working for 'tabline' then it
3835 * is "curwin".
3836 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 * Items are drawn interspersed with the text that surrounds it
3838 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3839 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3840 *
3841 * If maxwidth is not zero, the string will be filled at any middle marker
3842 * or truncated if too long, fillchar is used for all whitespace.
3843 */
3844 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003845build_stl_str_hl(
3846 win_T *wp,
3847 char_u *out, /* buffer to write into != NameBuff */
3848 size_t outlen, /* length of out[] */
3849 char_u *fmt,
3850 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3851 int fillchar,
3852 int maxwidth,
3853 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3854 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855{
Bram Moolenaar10772302019-01-20 18:25:54 +01003856 linenr_T lnum;
3857 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 char_u *p;
3859 char_u *s;
3860 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003861 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003863 win_T *save_curwin;
3864 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865#endif
3866 int empty_line;
3867 colnr_T virtcol;
3868 long l;
3869 long n;
3870 int prevchar_isflag;
3871 int prevchar_isitem;
3872 int itemisflag;
3873 int fillable;
3874 char_u *str;
3875 long num;
3876 int width;
3877 int itemcnt;
3878 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003879 int group_end_userhl;
3880 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 int groupitem[STL_MAX_ITEM];
3882 int groupdepth;
3883 struct stl_item
3884 {
3885 char_u *start;
3886 int minwid;
3887 int maxwid;
3888 enum
3889 {
3890 Normal,
3891 Empty,
3892 Group,
3893 Middle,
3894 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003895 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 Trunc
3897 } type;
3898 } item[STL_MAX_ITEM];
3899 int minwid;
3900 int maxwid;
3901 int zeropad;
3902 char_u base;
3903 char_u opt;
3904#define TMPLEN 70
3905 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003906 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003907 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003908 int save_must_redraw = must_redraw;
3909 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003910
3911#ifdef FEAT_EVAL
3912 /*
3913 * When the format starts with "%!" then evaluate it as an expression and
3914 * use the result as the actual format string.
3915 */
3916 if (fmt[0] == '%' && fmt[1] == '!')
3917 {
3918 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3919 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003920 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003921 }
3922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923
3924 if (fillchar == 0)
3925 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003926 /* Can't handle a multi-byte fill character yet. */
3927 else if (mb_char2len(fillchar) > 1)
3928 fillchar = '-';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003929
Bram Moolenaar10772302019-01-20 18:25:54 +01003930 // The cursor in windows other than the current one isn't always
3931 // up-to-date, esp. because of autocommands and timers.
3932 lnum = wp->w_cursor.lnum;
3933 if (lnum > wp->w_buffer->b_ml.ml_line_count)
3934 {
3935 lnum = wp->w_buffer->b_ml.ml_line_count;
3936 wp->w_cursor.lnum = lnum;
3937 }
3938
3939 // Get line & check if empty (cursorpos will show "0-1"). Note that
3940 // p will become invalid when getting another buffer line.
3941 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02003942 empty_line = (*p == NUL);
3943
Bram Moolenaar10772302019-01-20 18:25:54 +01003944 // Get the byte value now, in case we need it below. This is more efficient
3945 // than making a copy of the line.
3946 len = STRLEN(p);
3947 if (wp->w_cursor.col > (colnr_T)len)
3948 {
3949 // Line may have changed since checking the cursor column, or the lnum
3950 // was adjusted above.
3951 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01003952 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003953 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01003954 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02003955 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02003956 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
3958 groupdepth = 0;
3959 p = out;
3960 curitem = 0;
3961 prevchar_isflag = TRUE;
3962 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003963 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003965 if (curitem == STL_MAX_ITEM)
3966 {
3967 /* There are too many items. Add the error code to the statusline
3968 * to give the user a hint about what went wrong. */
3969 if (p + 6 < out + outlen)
3970 {
3971 mch_memmove(p, " E541", (size_t)5);
3972 p += 5;
3973 }
3974 break;
3975 }
3976
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 if (*s != NUL && *s != '%')
3978 prevchar_isflag = prevchar_isitem = FALSE;
3979
3980 /*
3981 * Handle up to the next '%' or the end.
3982 */
3983 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3984 *p++ = *s++;
3985 if (*s == NUL || p + 1 >= out + outlen)
3986 break;
3987
3988 /*
3989 * Handle one '%' item.
3990 */
3991 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003992 if (*s == NUL) /* ignore trailing % */
3993 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 if (*s == '%')
3995 {
3996 if (p + 1 >= out + outlen)
3997 break;
3998 *p++ = *s++;
3999 prevchar_isflag = prevchar_isitem = FALSE;
4000 continue;
4001 }
4002 if (*s == STL_MIDDLEMARK)
4003 {
4004 s++;
4005 if (groupdepth > 0)
4006 continue;
4007 item[curitem].type = Middle;
4008 item[curitem++].start = p;
4009 continue;
4010 }
4011 if (*s == STL_TRUNCMARK)
4012 {
4013 s++;
4014 item[curitem].type = Trunc;
4015 item[curitem++].start = p;
4016 continue;
4017 }
4018 if (*s == ')')
4019 {
4020 s++;
4021 if (groupdepth < 1)
4022 continue;
4023 groupdepth--;
4024
4025 t = item[groupitem[groupdepth]].start;
4026 *p = NUL;
4027 l = vim_strsize(t);
4028 if (curitem > groupitem[groupdepth] + 1
4029 && item[groupitem[groupdepth]].minwid == 0)
4030 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004031 /* remove group if all items are empty and highlight group
4032 * doesn't change */
4033 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004034 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4035 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004036 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004037 {
4038 group_start_userhl = group_end_userhl = item[n].minwid;
4039 break;
4040 }
4041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004043 {
4044 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004046 if (item[n].type == Highlight)
4047 group_end_userhl = item[n].minwid;
4048 }
4049 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 {
4051 p = t;
4052 l = 0;
4053 }
4054 }
4055 if (l > item[groupitem[groupdepth]].maxwid)
4056 {
4057 /* truncate, remove n bytes of text at the start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 if (has_mbyte)
4059 {
4060 /* Find the first character that should be included. */
4061 n = 0;
4062 while (l >= item[groupitem[groupdepth]].maxwid)
4063 {
4064 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004065 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 }
4067 }
4068 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004069 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070
4071 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004072 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004074
4075 // Fill up space left over by half a double-wide char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 while (++l < item[groupitem[groupdepth]].minwid)
4077 *p++ = fillchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
4079 /* correct the start of the items for the truncation */
4080 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4081 {
4082 item[l].start -= n;
4083 if (item[l].start < t)
4084 item[l].start = t;
4085 }
4086 }
4087 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4088 {
4089 /* fill */
4090 n = item[groupitem[groupdepth]].minwid;
4091 if (n < 0)
4092 {
4093 /* fill by appending characters */
4094 n = 0 - n;
4095 while (l++ < n && p + 1 < out + outlen)
4096 *p++ = fillchar;
4097 }
4098 else
4099 {
4100 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004101 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 l = n - l;
4103 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004104 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 p += l;
4106 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4107 item[n].start += l;
4108 for ( ; l > 0; l--)
4109 *t++ = fillchar;
4110 }
4111 }
4112 continue;
4113 }
4114 minwid = 0;
4115 maxwid = 9999;
4116 zeropad = FALSE;
4117 l = 1;
4118 if (*s == '0')
4119 {
4120 s++;
4121 zeropad = TRUE;
4122 }
4123 if (*s == '-')
4124 {
4125 s++;
4126 l = -1;
4127 }
4128 if (VIM_ISDIGIT(*s))
4129 {
4130 minwid = (int)getdigits(&s);
4131 if (minwid < 0) /* overflow */
4132 minwid = 0;
4133 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004134 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 {
4136 item[curitem].type = Highlight;
4137 item[curitem].start = p;
4138 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4139 s++;
4140 curitem++;
4141 continue;
4142 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004143 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4144 {
4145 if (*s == STL_TABCLOSENR)
4146 {
4147 if (minwid == 0)
4148 {
4149 /* %X ends the close label, go back to the previously
4150 * define tab label nr. */
4151 for (n = curitem - 1; n >= 0; --n)
4152 if (item[n].type == TabPage && item[n].minwid >= 0)
4153 {
4154 minwid = item[n].minwid;
4155 break;
4156 }
4157 }
4158 else
4159 /* close nrs are stored as negative values */
4160 minwid = - minwid;
4161 }
4162 item[curitem].type = TabPage;
4163 item[curitem].start = p;
4164 item[curitem].minwid = minwid;
4165 s++;
4166 curitem++;
4167 continue;
4168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 if (*s == '.')
4170 {
4171 s++;
4172 if (VIM_ISDIGIT(*s))
4173 {
4174 maxwid = (int)getdigits(&s);
4175 if (maxwid <= 0) /* overflow */
4176 maxwid = 50;
4177 }
4178 }
4179 minwid = (minwid > 50 ? 50 : minwid) * l;
4180 if (*s == '(')
4181 {
4182 groupitem[groupdepth++] = curitem;
4183 item[curitem].type = Group;
4184 item[curitem].start = p;
4185 item[curitem].minwid = minwid;
4186 item[curitem].maxwid = maxwid;
4187 s++;
4188 curitem++;
4189 continue;
4190 }
4191 if (vim_strchr(STL_ALL, *s) == NULL)
4192 {
4193 s++;
4194 continue;
4195 }
4196 opt = *s++;
4197
4198 /* OK - now for the real work */
4199 base = 'D';
4200 itemisflag = FALSE;
4201 fillable = TRUE;
4202 num = -1;
4203 str = NULL;
4204 switch (opt)
4205 {
4206 case STL_FILEPATH:
4207 case STL_FULLPATH:
4208 case STL_FILENAME:
4209 fillable = FALSE; /* don't change ' ' to fillchar */
4210 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004211 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 else
4213 {
4214 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004215 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4217 }
4218 trans_characters(NameBuff, MAXPATHL);
4219 if (opt != STL_FILENAME)
4220 str = NameBuff;
4221 else
4222 str = gettail(NameBuff);
4223 break;
4224
4225 case STL_VIM_EXPR: /* '{' */
4226 itemisflag = TRUE;
4227 t = p;
4228 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4229 *p++ = *s++;
4230 if (*s != '}') /* missing '}' or out of space */
4231 break;
4232 s++;
4233 *p = 0;
4234 p = t;
4235
4236#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004237 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar3cb44482018-08-05 13:22:26 +02004238 set_internal_string_var((char_u *)"g:actual_curbuf", tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004240 save_curbuf = curbuf;
4241 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 curwin = wp;
4243 curbuf = wp->w_buffer;
4244
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004245 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004247 curwin = save_curwin;
4248 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004249 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250
4251 if (str != NULL && *str != 0)
4252 {
4253 if (*skipdigits(str) == NUL)
4254 {
4255 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004256 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 itemisflag = FALSE;
4258 }
4259 }
4260#endif
4261 break;
4262
4263 case STL_LINE:
4264 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4265 ? 0L : (long)(wp->w_cursor.lnum);
4266 break;
4267
4268 case STL_NUMLINES:
4269 num = wp->w_buffer->b_ml.ml_line_count;
4270 break;
4271
4272 case STL_COLUMN:
4273 num = !(State & INSERT) && empty_line
4274 ? 0 : (int)wp->w_cursor.col + 1;
4275 break;
4276
4277 case STL_VIRTCOL:
4278 case STL_VIRTCOL_ALT:
4279 /* In list mode virtcol needs to be recomputed */
4280 virtcol = wp->w_virtcol;
4281 if (wp->w_p_list && lcs_tab1 == NUL)
4282 {
4283 wp->w_p_list = FALSE;
4284 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4285 wp->w_p_list = TRUE;
4286 }
4287 ++virtcol;
4288 /* Don't display %V if it's the same as %c. */
4289 if (opt == STL_VIRTCOL_ALT
4290 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4291 ? 0 : (int)wp->w_cursor.col + 1)))
4292 break;
4293 num = (long)virtcol;
4294 break;
4295
4296 case STL_PERCENTAGE:
4297 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4298 (long)wp->w_buffer->b_ml.ml_line_count);
4299 break;
4300
4301 case STL_ALTPERCENT:
4302 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004303 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 break;
4305
4306 case STL_ARGLISTSTAT:
4307 fillable = FALSE;
4308 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004309 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 str = tmp;
4311 break;
4312
4313 case STL_KEYMAP:
4314 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004315 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 str = tmp;
4317 break;
4318 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004319#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004320 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321#else
4322 num = 0;
4323#endif
4324 break;
4325
4326 case STL_BUFNO:
4327 num = wp->w_buffer->b_fnum;
4328 break;
4329
4330 case STL_OFFSET_X:
4331 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004332 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 case STL_OFFSET:
4334#ifdef FEAT_BYTEOFF
4335 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4336 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4337 0L : l + 1 + (!(State & INSERT) && empty_line ?
4338 0 : (int)wp->w_cursor.col);
4339#endif
4340 break;
4341
4342 case STL_BYTEVAL_X:
4343 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004344 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004346 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 if (num == NL)
4348 num = 0;
4349 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4350 num = NL;
4351 break;
4352
4353 case STL_ROFLAG:
4354 case STL_ROFLAG_ALT:
4355 itemisflag = TRUE;
4356 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004357 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 break;
4359
4360 case STL_HELPFLAG:
4361 case STL_HELPFLAG_ALT:
4362 itemisflag = TRUE;
4363 if (wp->w_buffer->b_help)
4364 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004365 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 break;
4367
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 case STL_FILETYPE:
4369 if (*wp->w_buffer->b_p_ft != NUL
4370 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4371 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004372 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4373 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 str = tmp;
4375 }
4376 break;
4377
4378 case STL_FILETYPE_ALT:
4379 itemisflag = TRUE;
4380 if (*wp->w_buffer->b_p_ft != NUL
4381 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4382 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004383 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4384 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 for (t = tmp; *t != 0; t++)
4386 *t = TOUPPER_LOC(*t);
4387 str = tmp;
4388 }
4389 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390
Bram Moolenaar4033c552017-09-16 20:54:51 +02004391#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 case STL_PREVIEWFLAG:
4393 case STL_PREVIEWFLAG_ALT:
4394 itemisflag = TRUE;
4395 if (wp->w_p_pvw)
4396 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4397 : _("[Preview]"));
4398 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004399
4400 case STL_QUICKFIX:
4401 if (bt_quickfix(wp->w_buffer))
4402 str = (char_u *)(wp->w_llist_ref
4403 ? _(msg_loclist)
4404 : _(msg_qflist));
4405 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406#endif
4407
4408 case STL_MODIFIED:
4409 case STL_MODIFIED_ALT:
4410 itemisflag = TRUE;
4411 switch ((opt == STL_MODIFIED_ALT)
4412 + bufIsChanged(wp->w_buffer) * 2
4413 + (!wp->w_buffer->b_p_ma) * 4)
4414 {
4415 case 2: str = (char_u *)"[+]"; break;
4416 case 3: str = (char_u *)",+"; break;
4417 case 4: str = (char_u *)"[-]"; break;
4418 case 5: str = (char_u *)",-"; break;
4419 case 6: str = (char_u *)"[+-]"; break;
4420 case 7: str = (char_u *)",+-"; break;
4421 }
4422 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004423
4424 case STL_HIGHLIGHT:
4425 t = s;
4426 while (*s != '#' && *s != NUL)
4427 ++s;
4428 if (*s == '#')
4429 {
4430 item[curitem].type = Highlight;
4431 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004432 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004433 curitem++;
4434 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004435 if (*s != NUL)
4436 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004437 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 }
4439
4440 item[curitem].start = p;
4441 item[curitem].type = Normal;
4442 if (str != NULL && *str)
4443 {
4444 t = str;
4445 if (itemisflag)
4446 {
4447 if ((t[0] && t[1])
4448 && ((!prevchar_isitem && *t == ',')
4449 || (prevchar_isflag && *t == ' ')))
4450 t++;
4451 prevchar_isflag = TRUE;
4452 }
4453 l = vim_strsize(t);
4454 if (l > 0)
4455 prevchar_isitem = TRUE;
4456 if (l > maxwid)
4457 {
4458 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 if (has_mbyte)
4460 {
4461 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004462 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 }
4464 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 l -= byte2cells(*t++);
4466 if (p + 1 >= out + outlen)
4467 break;
4468 *p++ = '<';
4469 }
4470 if (minwid > 0)
4471 {
4472 for (; l < minwid && p + 1 < out + outlen; l++)
4473 {
4474 /* Don't put a "-" in front of a digit. */
4475 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4476 *p++ = ' ';
4477 else
4478 *p++ = fillchar;
4479 }
4480 minwid = 0;
4481 }
4482 else
4483 minwid *= -1;
4484 while (*t && p + 1 < out + outlen)
4485 {
4486 *p++ = *t++;
4487 /* Change a space by fillchar, unless fillchar is '-' and a
4488 * digit follows. */
4489 if (fillable && p[-1] == ' '
4490 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4491 p[-1] = fillchar;
4492 }
4493 for (; l < minwid && p + 1 < out + outlen; l++)
4494 *p++ = fillchar;
4495 }
4496 else if (num >= 0)
4497 {
4498 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4499 char_u nstr[20];
4500
4501 if (p + 20 >= out + outlen)
4502 break; /* not sufficient space */
4503 prevchar_isitem = TRUE;
4504 t = nstr;
4505 if (opt == STL_VIRTCOL_ALT)
4506 {
4507 *t++ = '-';
4508 minwid--;
4509 }
4510 *t++ = '%';
4511 if (zeropad)
4512 *t++ = '0';
4513 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004514 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 *t = 0;
4516
4517 for (n = num, l = 1; n >= nbase; n /= nbase)
4518 l++;
4519 if (opt == STL_VIRTCOL_ALT)
4520 l++;
4521 if (l > maxwid)
4522 {
4523 l += 2;
4524 n = l - maxwid;
4525 while (l-- > maxwid)
4526 num /= nbase;
4527 *t++ = '>';
4528 *t++ = '%';
4529 *t = t[-3];
4530 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004531 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4532 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 }
4534 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004535 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4536 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537 p += STRLEN(p);
4538 }
4539 else
4540 item[curitem].type = Empty;
4541
4542 if (opt == STL_VIM_EXPR)
4543 vim_free(str);
4544
4545 if (num >= 0 || (!itemisflag && str && *str))
4546 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4547 curitem++;
4548 }
4549 *p = NUL;
4550 itemcnt = curitem;
4551
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004552#ifdef FEAT_EVAL
4553 if (usefmt != fmt)
4554 vim_free(usefmt);
4555#endif
4556
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 width = vim_strsize(out);
4558 if (maxwidth > 0 && width > maxwidth)
4559 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004560 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 l = 0;
4562 if (itemcnt == 0)
4563 s = out;
4564 else
4565 {
4566 for ( ; l < itemcnt; l++)
4567 if (item[l].type == Trunc)
4568 {
4569 /* Truncate at %< item. */
4570 s = item[l].start;
4571 break;
4572 }
4573 if (l == itemcnt)
4574 {
4575 /* No %< item, truncate first item. */
4576 s = item[0].start;
4577 l = 0;
4578 }
4579 }
4580
4581 if (width - vim_strsize(s) >= maxwidth)
4582 {
4583 /* Truncation mark is beyond max length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 if (has_mbyte)
4585 {
4586 s = out;
4587 width = 0;
4588 for (;;)
4589 {
4590 width += ptr2cells(s);
4591 if (width >= maxwidth)
4592 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004593 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 }
4595 /* Fill up for half a double-wide character. */
4596 while (++width < maxwidth)
4597 *s++ = fillchar;
4598 }
4599 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 s = out + maxwidth - 1;
4601 for (l = 0; l < itemcnt; l++)
4602 if (item[l].start > s)
4603 break;
4604 itemcnt = l;
4605 *s++ = '>';
4606 *s = 0;
4607 }
4608 else
4609 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 if (has_mbyte)
4611 {
4612 n = 0;
4613 while (width >= maxwidth)
4614 {
4615 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004616 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 }
4618 }
4619 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 n = width - maxwidth + 1;
4621 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004622 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 *s = '<';
4624
4625 /* Fill up for half a double-wide character. */
4626 while (++width < maxwidth)
4627 {
4628 s = s + STRLEN(s);
4629 *s++ = fillchar;
4630 *s = NUL;
4631 }
4632
4633 --n; /* count the '<' */
4634 for (; l < itemcnt; l++)
4635 {
4636 if (item[l].start - n >= s)
4637 item[l].start -= n;
4638 else
4639 item[l].start = s;
4640 }
4641 }
4642 width = maxwidth;
4643 }
4644 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4645 {
4646 /* Apply STL_MIDDLE if any */
4647 for (l = 0; l < itemcnt; l++)
4648 if (item[l].type == Middle)
4649 break;
4650 if (l < itemcnt)
4651 {
4652 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004653 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 for (s = item[l].start; s < p; s++)
4655 *s = fillchar;
4656 for (l++; l < itemcnt; l++)
4657 item[l].start += maxwidth - width;
4658 width = maxwidth;
4659 }
4660 }
4661
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004662 /* Store the info about highlighting. */
4663 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004665 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 for (l = 0; l < itemcnt; l++)
4667 {
4668 if (item[l].type == Highlight)
4669 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004670 sp->start = item[l].start;
4671 sp->userhl = item[l].minwid;
4672 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 }
4674 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004675 sp->start = NULL;
4676 sp->userhl = 0;
4677 }
4678
4679 /* Store the info about tab pages labels. */
4680 if (tabtab != NULL)
4681 {
4682 sp = tabtab;
4683 for (l = 0; l < itemcnt; l++)
4684 {
4685 if (item[l].type == TabPage)
4686 {
4687 sp->start = item[l].start;
4688 sp->userhl = item[l].minwid;
4689 sp++;
4690 }
4691 }
4692 sp->start = NULL;
4693 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 }
4695
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004696 /* When inside update_screen we do not want redrawing a stausline, ruler,
4697 * title, etc. to trigger another redraw, it may cause an endless loop. */
4698 if (updating_screen)
4699 {
4700 must_redraw = save_must_redraw;
4701 curwin->w_redr_type = save_redr_type;
4702 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004703
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 return width;
4705}
4706#endif /* FEAT_STL_OPT */
4707
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004708#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4709 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004711 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4712 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 */
4714 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004715get_rel_pos(
4716 win_T *wp,
4717 char_u *buf,
4718 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719{
4720 long above; /* number of lines above window */
4721 long below; /* number of lines below window */
4722
Bram Moolenaar0027c212015-01-07 13:31:52 +01004723 if (buflen < 3) /* need at least 3 chars for writing */
4724 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 above = wp->w_topline - 1;
4726#ifdef FEAT_DIFF
4727 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004728 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4729 above = 0; /* All buffer lines are displayed and there is an
4730 * indication of filler lines, that can be considered
4731 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732#endif
4733 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4734 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004735 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4736 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004738 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004740 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 ? (int)(above / ((above + below) / 100L))
4742 : (int)(above * 100L / (above + below)));
4743}
4744#endif
4745
4746/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004747 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 * Return TRUE if it was appended.
4749 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004750 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004751append_arg_number(
4752 win_T *wp,
4753 char_u *buf,
4754 int buflen,
4755 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756{
4757 char_u *p;
4758
4759 if (ARGCOUNT <= 1) /* nothing to do */
4760 return FALSE;
4761
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004762 p = buf + STRLEN(buf); /* go to the end of the buffer */
4763 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 return FALSE;
4765 *p++ = ' ';
4766 *p++ = '(';
4767 if (add_file)
4768 {
4769 STRCPY(p, "file ");
4770 p += 5;
4771 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004772 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4773 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4775 return TRUE;
4776}
4777
4778/*
4779 * If fname is not a full path, make it a full path.
4780 * Returns pointer to allocated memory (NULL for failure).
4781 */
4782 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004783fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784{
4785 /*
4786 * Force expanding the path always for Unix, because symbolic links may
4787 * mess up the full path name, even though it starts with a '/'.
4788 * Also expand when there is ".." in the file name, try to remove it,
4789 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004790 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 * For MS-Windows also expand names like "longna~1" to "longname".
4792 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004793#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 return FullName_save(fname, TRUE);
4795#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004796 if (!vim_isAbsName(fname)
4797 || strstr((char *)fname, "..") != NULL
4798 || strstr((char *)fname, "//") != NULL
4799# ifdef BACKSLASH_IN_FILENAME
4800 || strstr((char *)fname, "\\\\") != NULL
4801# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004802# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004804# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 )
4806 return FullName_save(fname, FALSE);
4807
4808 fname = vim_strsave(fname);
4809
Bram Moolenaar9b942202007-10-03 12:31:33 +00004810# ifdef USE_FNAME_CASE
4811# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004813# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 {
4815 if (fname != NULL)
4816 fname_case(fname, 0); /* set correct case for file name */
4817 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004818# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819
4820 return fname;
4821#endif
4822}
4823
4824/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004825 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
4826 * "*ffname" becomes a pointer to allocated memory (or NULL).
4827 * When resolving a link both "*sfname" and "*ffname" will point to the same
4828 * allocated memory.
4829 * The "*ffname" and "*sfname" pointer values on call will not be freed.
4830 * Note that the resulting "*ffname" pointer should be considered not allocaed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004833fname_expand(
4834 buf_T *buf UNUSED,
4835 char_u **ffname,
4836 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004838 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004840 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004842 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843
4844#ifdef FEAT_SHORTCUT
4845 if (!buf->b_p_bin)
4846 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004847 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004849 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004851 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 {
4853 vim_free(*ffname);
4854 *ffname = rfname;
4855 *sfname = rfname;
4856 }
4857 }
4858#endif
4859}
4860
4861/*
4862 * Get the file name for an argument list entry.
4863 */
4864 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004865alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866{
4867 buf_T *bp;
4868
4869 /* Use the name from the associated buffer if it exists. */
4870 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004871 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 return aep->ae_fname;
4873 return bp->b_fname;
4874}
4875
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876/*
4877 * do_arg_all(): Open up to 'count' windows, one for each argument.
4878 */
4879 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004880do_arg_all(
4881 int count,
4882 int forceit, /* hide buffers in current windows */
4883 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884{
4885 int i;
4886 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004887 char_u *opened; /* Array of weight for which args are open:
4888 * 0: not opened
4889 * 1: opened in other tab
4890 * 2: opened in curtab
4891 * 3: opened in curtab and curwin
4892 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004893 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 int use_firstwin = FALSE; /* use first window for arglist */
4895 int split_ret = OK;
4896 int p_ea_save;
4897 alist_T *alist; /* argument list to be used */
4898 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004899 tabpage_T *tpnext;
4900 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004901 win_T *old_curwin, *last_curwin;
4902 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004903 win_T *new_curwin = NULL;
4904 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905
4906 if (ARGCOUNT <= 0)
4907 {
4908 /* Don't give an error message. We don't want it when the ":all"
4909 * command is in the .vimrc. */
4910 return;
4911 }
4912 setpcmark();
4913
4914 opened_len = ARGCOUNT;
4915 opened = alloc_clear((unsigned)opened_len);
4916 if (opened == NULL)
4917 return;
4918
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004919 /* Autocommands may do anything to the argument list. Make sure it's not
4920 * freed while we are working here by "locking" it. We still have to
4921 * watch out for its size to be changed. */
4922 alist = curwin->w_alist;
4923 ++alist->al_refcount;
4924
4925 old_curwin = curwin;
4926 old_curtab = curtab;
4927
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004928# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004930# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931
4932 /*
4933 * Try closing all windows that are not in the argument list.
4934 * Also close windows that are not full width;
4935 * When 'hidden' or "forceit" set the buffer becomes hidden.
4936 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004937 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004939 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004940 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004943 tpnext = curtab->tp_next;
4944 for (wp = firstwin; wp != NULL; wp = wpnext)
4945 {
4946 wpnext = wp->w_next;
4947 buf = wp->w_buffer;
4948 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004949 || (!keep_tabs && (buf->b_nwindows > 1
4950 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004951 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004952 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004954 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004955 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004957 if (i < alist->al_ga.ga_len
4958 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4959 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4960 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004962 int weight = 1;
4963
4964 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004965 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004966 ++weight;
4967 if (old_curwin == wp)
4968 ++weight;
4969 }
4970
4971 if (weight > (int)opened[i])
4972 {
4973 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004974 if (i == 0)
4975 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004976 if (new_curwin != NULL)
4977 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004978 new_curwin = wp;
4979 new_curtab = curtab;
4980 }
4981 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004982 else if (keep_tabs)
4983 i = opened_len;
4984
4985 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004986 {
4987 /* Use the current argument list for all windows
4988 * containing a file from it. */
4989 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004990 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004991 ++wp->w_alist->al_refcount;
4992 }
4993 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 }
4996 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004997 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004999 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005001 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005002 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005004 /* If the buffer was changed, and we would like to hide it,
5005 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005006 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005007 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005009 bufref_T bufref;
5010
5011 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005012
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005013 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005014
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005015 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005016 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005017 {
5018 wpnext = firstwin; /* start all over... */
5019 continue;
5020 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005021 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005022 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005023 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005024 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005025 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005026 else
5027 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005028 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005029
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005030 /* check if autocommands removed the next window */
5031 if (!win_valid(wpnext))
5032 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 }
5036 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005037
5038 /* Without the ":tab" modifier only do the current tab page. */
5039 if (had_tab == 0 || tpnext == NULL)
5040 break;
5041
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005042 /* check if autocommands removed the next tab page */
5043 if (!valid_tabpage(tpnext))
5044 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005045
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005046 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
5048
5049 /*
5050 * Open a window for files in the argument list that don't have one.
5051 * ARGCOUNT may change while doing this, because of autocommands.
5052 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005053 if (count > opened_len || count <= 0)
5054 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5057 ++autocmd_no_enter;
5058 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005059 last_curwin = curwin;
5060 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005062 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5063 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005064 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005065 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5066 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005067
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005068 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 {
5070 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5071 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005072 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 {
5074 /* Move the already present window to below the current window */
5075 if (curwin->w_arg_idx != i)
5076 {
5077 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5078 {
5079 if (wpnext->w_arg_idx == i)
5080 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005081 if (keep_tabs)
5082 {
5083 new_curwin = wpnext;
5084 new_curtab = curtab;
5085 }
5086 else
5087 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 break;
5089 }
5090 }
5091 }
5092 }
5093 else if (split_ret == OK)
5094 {
5095 if (!use_firstwin) /* split current window */
5096 {
5097 p_ea_save = p_ea;
5098 p_ea = TRUE; /* use space from all windows */
5099 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5100 p_ea = p_ea_save;
5101 if (split_ret == FAIL)
5102 continue;
5103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 else /* first window: do autocmd for leaving this buffer */
5105 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106
5107 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005108 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 */
5110 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005111 if (i == 0)
5112 {
5113 new_curwin = curwin;
5114 new_curtab = curtab;
5115 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5117 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005118 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005120 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 if (use_firstwin)
5122 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 use_firstwin = FALSE;
5124 }
5125 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005126
5127 /* When ":tab" was used open a new tab for a new window repeatedly. */
5128 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5129 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 }
5131
5132 /* Remove the "lock" on the argument list. */
5133 alist_unlink(alist);
5134
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005136
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005137 /* restore last referenced tabpage's curwin */
5138 if (last_curtab != new_curtab)
5139 {
5140 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005141 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005142 if (win_valid(last_curwin))
5143 win_enter(last_curwin, FALSE);
5144 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005145 /* to window with first arg */
5146 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005147 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005148 if (win_valid(new_curwin))
5149 win_enter(new_curwin, FALSE);
5150
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 vim_free(opened);
5153}
5154
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155/*
5156 * Open a window for a number of buffers.
5157 */
5158 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005159ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160{
5161 buf_T *buf;
5162 win_T *wp, *wpnext;
5163 int split_ret = OK;
5164 int p_ea_save;
5165 int open_wins = 0;
5166 int r;
5167 int count; /* Maximum number of windows to open. */
5168 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005169 int had_tab = cmdmod.tab;
5170 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171
5172 if (eap->addr_count == 0) /* make as many windows as possible */
5173 count = 9999;
5174 else
5175 count = eap->line2; /* make as many windows as specified */
5176 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5177 all = FALSE;
5178 else
5179 all = TRUE;
5180
5181 setpcmark();
5182
5183#ifdef FEAT_GUI
5184 need_mouse_correct = TRUE;
5185#endif
5186
5187 /*
5188 * Close superfluous windows (two windows for the same buffer).
5189 * Also close windows that are not full-width.
5190 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005191 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005192 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005193 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005195 tpnext = curtab->tp_next;
5196 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005198 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005199 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005200 || ((cmdmod.split & WSP_VERT)
5201 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005202 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005203 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005204 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005205 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005206 {
5207 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005208 wpnext = firstwin; /* just in case an autocommand does
5209 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005210 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005211 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005212 }
5213 else
5214 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005216
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005217 /* Without the ":tab" modifier only do the current tab page. */
5218 if (had_tab == 0 || tpnext == NULL)
5219 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005220 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 }
5222
5223 /*
5224 * Go through the buffer list. When a buffer doesn't have a window yet,
5225 * open one. Otherwise move the window to the right position.
5226 * Watch out for autocommands that delete buffers or windows!
5227 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5229 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5233 {
5234 /* Check if this buffer needs a window */
5235 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5236 continue;
5237
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005238 if (had_tab != 0)
5239 {
5240 /* With the ":tab" modifier don't move the window. */
5241 if (buf->b_nwindows > 0)
5242 wp = lastwin; /* buffer has a window, skip it */
5243 else
5244 wp = NULL;
5245 }
5246 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005247 {
5248 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005249 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005250 if (wp->w_buffer == buf)
5251 break;
5252 /* If the buffer already has a window, move it */
5253 if (wp != NULL)
5254 win_move_after(wp, curwin);
5255 }
5256
5257 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005259 bufref_T bufref;
5260
5261 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005262
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 /* Split the window and put the buffer in it */
5264 p_ea_save = p_ea;
5265 p_ea = TRUE; /* use space from all windows */
5266 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5267 ++open_wins;
5268 p_ea = p_ea_save;
5269 if (split_ret == FAIL)
5270 continue;
5271
5272 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005273#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 swap_exists_action = SEA_DIALOG;
5275#endif
5276 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005277 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005279 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005280#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005282#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 break;
5284 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005285#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 if (swap_exists_action == SEA_QUIT)
5287 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005288# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005289 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005290
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005291 /* Reset the error/interrupt/exception state here so that
5292 * aborting() returns FALSE when closing a window. */
5293 enter_cleanup(&cs);
5294# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005295
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005296 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 win_close(curwin, TRUE);
5298 --open_wins;
5299 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005300 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005301
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005302# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005303 /* Restore the error/interrupt/exception state if not
5304 * discarded by a new aborting error, interrupt, or uncaught
5305 * exception. */
5306 leave_cleanup(&cs);
5307# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 }
5309 else
5310 handle_swap_exists(NULL);
5311#endif
5312 }
5313
5314 ui_breakcheck();
5315 if (got_int)
5316 {
5317 (void)vgetc(); /* only break the file loading, not the rest */
5318 break;
5319 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005320#ifdef FEAT_EVAL
5321 /* Autocommands deleted the buffer or aborted script processing!!! */
5322 if (aborting())
5323 break;
5324#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005325 /* When ":tab" was used open a new tab for a new window repeatedly. */
5326 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5327 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332
5333 /*
5334 * Close superfluous windows.
5335 */
5336 for (wp = lastwin; open_wins > count; )
5337 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005338 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 if (!win_valid(wp))
5341 {
5342 /* BufWrite Autocommands made the window invalid, start over */
5343 wp = lastwin;
5344 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005345 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005347 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 --open_wins;
5349 wp = lastwin;
5350 }
5351 else
5352 {
5353 wp = wp->w_prev;
5354 if (wp == NULL)
5355 break;
5356 }
5357 }
5358}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005361static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005362
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363/*
5364 * do_modelines() - process mode lines for the current file
5365 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005366 * "flags" can be:
5367 * OPT_WINONLY only set options local to window
5368 * OPT_NOWIN don't set options local to window
5369 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 * Returns immediately if the "ml" option isn't set.
5371 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005373do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005375 linenr_T lnum;
5376 int nmlines;
5377 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378
5379 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5380 return;
5381
5382 /* Disallow recursive entry here. Can happen when executing a modeline
5383 * triggers an autocommand, which reloads modelines with a ":do". */
5384 if (entered)
5385 return;
5386
5387 ++entered;
5388 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5389 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005390 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 nmlines = 0;
5392
5393 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5394 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005395 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 nmlines = 0;
5397 --entered;
5398}
5399
5400#include "version.h" /* for version number */
5401
5402/*
5403 * chk_modeline() - check a single line for a mode string
5404 * Return FAIL if an error encountered.
5405 */
5406 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005407chk_modeline(
5408 linenr_T lnum,
5409 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410{
5411 char_u *s;
5412 char_u *e;
5413 char_u *linecopy; /* local copy of any modeline found */
5414 int prev;
5415 int vers;
5416 int end;
5417 int retval = OK;
5418 char_u *save_sourcing_name;
5419 linenr_T save_sourcing_lnum;
5420#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005421 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422#endif
5423
5424 prev = -1;
5425 for (s = ml_get(lnum); *s != NUL; ++s)
5426 {
5427 if (prev == -1 || vim_isspace(prev))
5428 {
5429 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5430 || STRNCMP(s, "vi:", (size_t)3) == 0)
5431 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005432 /* Accept both "vim" and "Vim". */
5433 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 {
5435 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5436 e = s + 4;
5437 else
5438 e = s + 3;
5439 vers = getdigits(&e);
5440 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005441 && (s[0] != 'V'
5442 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 && (s[3] == ':'
5444 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5445 || (VIM_VERSION_100 < vers && s[3] == '<')
5446 || (VIM_VERSION_100 > vers && s[3] == '>')
5447 || (VIM_VERSION_100 == vers && s[3] == '=')))
5448 break;
5449 }
5450 }
5451 prev = *s;
5452 }
5453
5454 if (*s)
5455 {
5456 do /* skip over "ex:", "vi:" or "vim:" */
5457 ++s;
5458 while (s[-1] != ':');
5459
5460 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5461 if (linecopy == NULL)
5462 return FAIL;
5463
5464 save_sourcing_lnum = sourcing_lnum;
5465 save_sourcing_name = sourcing_name;
5466 sourcing_lnum = lnum; /* prepare for emsg() */
5467 sourcing_name = (char_u *)"modelines";
5468
5469 end = FALSE;
5470 while (end == FALSE)
5471 {
5472 s = skipwhite(s);
5473 if (*s == NUL)
5474 break;
5475
5476 /*
5477 * Find end of set command: ':' or end of line.
5478 * Skip over "\:", replacing it with ":".
5479 */
5480 for (e = s; *e != ':' && *e != NUL; ++e)
5481 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005482 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 if (*e == NUL)
5484 end = TRUE;
5485
5486 /*
5487 * If there is a "set" command, require a terminating ':' and
5488 * ignore the stuff after the ':'.
5489 * "vi:set opt opt opt: foo" -- foo not interpreted
5490 * "vi:opt opt opt: foo" -- foo interpreted
5491 * Accept "se" for compatibility with Elvis.
5492 */
5493 if (STRNCMP(s, "set ", (size_t)4) == 0
5494 || STRNCMP(s, "se ", (size_t)3) == 0)
5495 {
5496 if (*e != ':') /* no terminating ':'? */
5497 break;
5498 end = TRUE;
5499 s = vim_strchr(s, ' ') + 1;
5500 }
5501 *e = NUL; /* truncate the set command */
5502
5503 if (*s != NUL) /* skip over an empty "::" */
5504 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005505 int secure_save = secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005507 save_current_sctx = current_sctx;
5508 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005509 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005510 current_sctx.sc_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511#endif
Bram Moolenaar5958f952018-11-20 04:25:21 +01005512 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82e8c922018-11-20 13:32:36 +01005513 ++secure;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005514
Bram Moolenaara3227e22006-03-08 21:32:40 +00005515 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005516
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005517 secure = secure_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005519 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520#endif
5521 if (retval == FAIL) /* stop if error found */
5522 break;
5523 }
5524 s = e + 1; /* advance to next part */
5525 }
5526
5527 sourcing_lnum = save_sourcing_lnum;
5528 sourcing_name = save_sourcing_name;
5529
5530 vim_free(linecopy);
5531 }
5532 return retval;
5533}
5534
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005535#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005537read_viminfo_bufferlist(
5538 vir_T *virp,
5539 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540{
5541 char_u *tab;
5542 linenr_T lnum;
5543 colnr_T col;
5544 buf_T *buf;
5545 char_u *sfname;
5546 char_u *xline;
5547
5548 /* Handle long line and escaped characters. */
5549 xline = viminfo_readstring(virp, 1, FALSE);
5550
5551 /* don't read in if there are files on the command-line or if writing: */
5552 if (xline != NULL && !writing && ARGCOUNT == 0
5553 && find_viminfo_parameter('%') != NULL)
5554 {
5555 /* Format is: <fname> Tab <lnum> Tab <col>.
5556 * Watch out for a Tab in the file name, work from the end. */
5557 lnum = 0;
5558 col = 0;
5559 tab = vim_strrchr(xline, '\t');
5560 if (tab != NULL)
5561 {
5562 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005563 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 tab = vim_strrchr(xline, '\t');
5565 if (tab != NULL)
5566 {
5567 *tab++ = '\0';
5568 lnum = atol((char *)tab);
5569 }
5570 }
5571
5572 /* Expand "~/" in the file name at "line + 1" to a full path.
5573 * Then try shortening it by comparing with the current directory */
5574 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005575 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576
5577 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5578 if (buf != NULL) /* just in case... */
5579 {
5580 buf->b_last_cursor.lnum = lnum;
5581 buf->b_last_cursor.col = col;
5582 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5583 }
5584 }
5585 vim_free(xline);
5586
5587 return viminfo_readline(virp);
5588}
5589
5590 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005591write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592{
5593 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005595 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005597 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598
5599 if (find_viminfo_parameter('%') == NULL)
5600 return;
5601
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005602 /* Without a number -1 is returned: do all buffers. */
5603 max_buffers = get_viminfo_parameter('%');
5604
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005606#define LINE_BUF_LEN (MAXPATHL + 40)
5607 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 if (line == NULL)
5609 return;
5610
Bram Moolenaarf740b292006-02-16 22:11:02 +00005611 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005614 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005615 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 {
5617 if (buf->b_fname == NULL
5618 || !buf->b_p_bl
5619#ifdef FEAT_QUICKFIX
5620 || bt_quickfix(buf)
5621#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005622#ifdef FEAT_TERMINAL
5623 || bt_terminal(buf)
5624#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 || removable(buf->b_ffname))
5626 continue;
5627
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005628 if (max_buffers-- == 0)
5629 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 putc('%', fp);
5631 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005632 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 (long)buf->b_last_cursor.lnum,
5634 buf->b_last_cursor.col);
5635 viminfo_writestring(fp, line);
5636 }
5637 vim_free(line);
5638}
5639#endif
5640
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005641/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005642 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5643 */
5644 int
5645bt_normal(buf_T *buf)
5646{
5647 return buf != NULL && buf->b_p_bt[0] == NUL;
5648}
5649
Bram Moolenaar113e1072019-01-20 15:30:40 +01005650#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005651/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005652 * Return TRUE if "buf" is the quickfix buffer.
5653 */
5654 int
5655bt_quickfix(buf_T *buf)
5656{
5657 return buf != NULL && buf->b_p_bt[0] == 'q';
5658}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005659#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005660
Bram Moolenaar113e1072019-01-20 15:30:40 +01005661#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005662/*
5663 * Return TRUE if "buf" is a terminal buffer.
5664 */
5665 int
5666bt_terminal(buf_T *buf)
5667{
5668 return buf != NULL && buf->b_p_bt[0] == 't';
5669}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005670#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005671
5672/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005673 * Return TRUE if "buf" is a help buffer.
5674 */
5675 int
5676bt_help(buf_T *buf)
5677{
5678 return buf != NULL && buf->b_help;
5679}
5680
5681/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005682 * Return TRUE if "buf" is a prompt buffer.
5683 */
5684 int
5685bt_prompt(buf_T *buf)
5686{
5687 return buf != NULL && buf->b_p_bt[0] == 'p';
5688}
5689
5690/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005691 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5692 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005693 */
5694 int
5695bt_nofile(buf_T *buf)
5696{
5697 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5698 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005699 || buf->b_p_bt[0] == 't'
5700 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005701}
5702
5703/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005704 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5705 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005706 */
5707 int
5708bt_dontwrite(buf_T *buf)
5709{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005710 return buf != NULL && (buf->b_p_bt[0] == 'n'
5711 || buf->b_p_bt[0] == 't'
5712 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005713}
5714
Bram Moolenaar113e1072019-01-20 15:30:40 +01005715#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005716 int
5717bt_dontwrite_msg(buf_T *buf)
5718{
5719 if (bt_dontwrite(buf))
5720 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005721 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005722 return TRUE;
5723 }
5724 return FALSE;
5725}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005726#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005727
5728/*
5729 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5730 * and 'bufhidden'.
5731 */
5732 int
5733buf_hide(buf_T *buf)
5734{
5735 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5736 switch (buf->b_p_bh[0])
5737 {
5738 case 'u': /* "unload" */
5739 case 'w': /* "wipe" */
5740 case 'd': return FALSE; /* "delete" */
5741 case 'h': return TRUE; /* "hide" */
5742 }
5743 return (p_hid || cmdmod.hide);
5744}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745
5746/*
5747 * Return special buffer name.
5748 * Returns NULL when the buffer has a normal file name.
5749 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005750 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005751buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005753#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005755 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005756 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005757 * Differentiate between the quickfix and location list buffers using
5758 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005759 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005760 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005761 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005762 else
5763 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005766
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005768 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 if (bt_nofile(buf))
5770 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005771#ifdef FEAT_TERMINAL
5772 if (buf->b_term != NULL)
5773 return term_get_status_text(buf->b_term);
5774#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005775 if (buf->b_fname != NULL)
5776 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005777#ifdef FEAT_JOB_CHANNEL
5778 if (bt_prompt(buf))
5779 return (char_u *)_("[Prompt]");
5780#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005781 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005783
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005785 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 return NULL;
5787}
5788
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005789#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005790 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5791 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005792# define SWITCH_TO_WIN
5793
5794/*
5795 * Find a window that contains "buf" and switch to it.
5796 * If there is no such window, use the current window and change "curbuf".
5797 * Caller must initialize save_curbuf to NULL.
5798 * restore_win_for_buf() MUST be called later!
5799 */
5800 void
5801switch_to_win_for_buf(
5802 buf_T *buf,
5803 win_T **save_curwinp,
5804 tabpage_T **save_curtabp,
5805 bufref_T *save_curbuf)
5806{
5807 win_T *wp;
5808 tabpage_T *tp;
5809
5810 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5811 switch_buffer(save_curbuf, buf);
5812 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5813 {
5814 restore_win(*save_curwinp, *save_curtabp, TRUE);
5815 switch_buffer(save_curbuf, buf);
5816 }
5817}
5818
5819 void
5820restore_win_for_buf(
5821 win_T *save_curwin,
5822 tabpage_T *save_curtab,
5823 bufref_T *save_curbuf)
5824{
5825 if (save_curbuf->br_buf == NULL)
5826 restore_win(save_curwin, save_curtab, TRUE);
5827 else
5828 restore_buffer(save_curbuf);
5829}
5830#endif
5831
Bram Moolenaar4033c552017-09-16 20:54:51 +02005832#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005833/*
5834 * Find a window for buffer "buf".
5835 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5836 * If not found FAIL is returned.
5837 */
5838 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005839find_win_for_buf(
5840 buf_T *buf,
5841 win_T **wp,
5842 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005843{
5844 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5845 if ((*wp)->w_buffer == buf)
5846 goto win_found;
5847 return FAIL;
5848win_found:
5849 return OK;
5850}
5851#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853/*
5854 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5855 */
5856 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005857set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858{
5859 if (on != curbuf->b_p_bl)
5860 {
5861 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 if (on)
5863 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5864 else
5865 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 }
5867}
5868
5869/*
5870 * Read the file for "buf" again and check if the contents changed.
5871 * Return TRUE if it changed or this could not be checked.
5872 */
5873 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005874buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875{
5876 buf_T *newbuf;
5877 int differ = TRUE;
5878 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 exarg_T ea;
5881
5882 /* Allocate a buffer without putting it in the buffer list. */
5883 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5884 if (newbuf == NULL)
5885 return TRUE;
5886
5887 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5888 if (prep_exarg(&ea, buf) == FAIL)
5889 {
5890 wipe_buffer(newbuf, FALSE);
5891 return TRUE;
5892 }
5893
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 /* set curwin/curbuf to buf and save a few things */
5895 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896
Bram Moolenaar4770d092006-01-12 23:22:24 +00005897 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 && readfile(buf->b_ffname, buf->b_fname,
5899 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5900 &ea, READ_NEW | READ_DUMMY) == OK)
5901 {
5902 /* compare the two files line by line */
5903 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5904 {
5905 differ = FALSE;
5906 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5907 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5908 {
5909 differ = TRUE;
5910 break;
5911 }
5912 }
5913 }
5914 vim_free(ea.cmd);
5915
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 /* restore curwin/curbuf and a few other things */
5917 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
5919 if (curbuf != newbuf) /* safety check */
5920 wipe_buffer(newbuf, FALSE);
5921
5922 return differ;
5923}
5924
5925/*
5926 * Wipe out a buffer and decrement the last buffer number if it was used for
5927 * this buffer. Call this to wipe out a temp buffer that does not contain any
5928 * marks.
5929 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005931wipe_buffer(
5932 buf_T *buf,
5933 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934{
5935 if (buf->b_fnum == top_file_num - 1)
5936 --top_file_num;
5937
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005939 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005940
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005941 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005942
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005944 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945}