blob: fa2e6524b766863d66cd486edc0e695b698f5f96 [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;
707#ifdef FEAT_MBYTE
708 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000709 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710#endif
711 buf->b_ml.ml_mfp = NULL;
712 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
713#ifdef FEAT_NETBEANS_INTG
714 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715#endif
716}
717
718/*
719 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200720 * the file. Careful: get here with "curwin" NULL when exiting.
721 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200722 * BFA_DEL buffer is going to be deleted
723 * BFA_WIPE buffer is going to be wiped out
724 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100727buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200730 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200731 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200732 win_T *the_curwin = curwin;
733 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
Bram Moolenaar5a497892016-09-03 16:29:04 +0200735 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200736 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200737 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200738 if (buf->b_ml.ml_mfp != NULL)
739 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200740 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
741 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200742 && !bufref_valid(&bufref))
743 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200744 return;
745 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200746 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200748 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
749 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200750 && !bufref_valid(&bufref))
751 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 return;
753 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200754 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200756 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
757 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200758 && !bufref_valid(&bufref))
759 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 return;
761 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200762 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200763
Bram Moolenaar5a497892016-09-03 16:29:04 +0200764 /* If the buffer was in curwin and the window has changed, go back to that
765 * window, if it still exists. This avoids that ":edit x" triggering a
766 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
767 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
768 {
769 block_autocmds();
770 goto_tabpage_win(the_curtab, the_curwin);
771 unblock_autocmds();
772 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200773
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100774#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000775 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778
779 /*
780 * It's possible that autocommands change curbuf to the one being deleted.
781 * This might cause curbuf to be deleted unexpectedly. But in some cases
782 * it's OK to delete the curbuf, because a new one is obtained anyway.
783 * Therefore only return if curbuf changed to the deleted buffer.
784 */
785 if (buf == curbuf && !is_curbuf)
786 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787#ifdef FEAT_DIFF
788 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
789#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200790#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100791 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200792 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100793 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200794#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000795
796#ifdef FEAT_FOLDING
797 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000798 {
799 win_T *win;
800 tabpage_T *tp;
801
802 FOR_ALL_TAB_WINDOWS(tp, win)
803 if (win->w_buffer == buf)
804 clearFolding(win);
805 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000806#endif
807
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808#ifdef FEAT_TCL
809 tcl_buffer_free(buf);
810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 ml_close(buf, TRUE); /* close and delete the memline/memfile */
812 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200813 if ((flags & BFA_KEEP_UNDO) == 0)
814 {
815 u_blockfree(buf); /* free the memory allocated for undo */
816 u_clearall(buf); /* reset all undo information */
817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200819 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100821#ifdef FEAT_TEXT_PROP
822 clear_buf_prop_types(buf);
823#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000824 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825}
826
827/*
828 * Free a buffer structure and the things it contains related to the buffer
829 * itself (not the file, that must have been done already).
830 */
831 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100832free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200834 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200836#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200837 /* b:changedtick uses an item in buf_T, remove it now */
838 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200839 unref_var_dict(buf->b_vars);
840#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200841#ifdef FEAT_LUA
842 lua_buffer_free(buf);
843#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000844#ifdef FEAT_MZSCHEME
845 mzscheme_buffer_free(buf);
846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847#ifdef FEAT_PERL
848 perl_buf_free(buf);
849#endif
850#ifdef FEAT_PYTHON
851 python_buffer_free(buf);
852#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200853#ifdef FEAT_PYTHON3
854 python3_buffer_free(buf);
855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856#ifdef FEAT_RUBY
857 ruby_buffer_free(buf);
858#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200859#ifdef FEAT_JOB_CHANNEL
860 channel_buffer_free(buf);
861#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200862#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200863 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200864#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200865#ifdef FEAT_JOB_CHANNEL
866 vim_free(buf->b_prompt_text);
867 free_callback(buf->b_prompt_callback, buf->b_prompt_partial);
868#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200869
870 buf_hashtab_remove(buf);
871
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200872 aubuflocal_remove(buf);
873
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200874 if (autocmd_busy)
875 {
876 /* Do not free the buffer structure while autocommands are executing,
877 * it's still needed. Free it when autocmd_busy is reset. */
878 buf->b_next = au_pending_free_buf;
879 au_pending_free_buf = buf;
880 }
881 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200882 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883}
884
885/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100886 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100887 */
888 static void
889init_changedtick(buf_T *buf)
890{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100891 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100892
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100893 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
894 di->di_tv.v_type = VAR_NUMBER;
895 di->di_tv.v_lock = VAR_FIXED;
896 di->di_tv.vval.v_number = 0;
897
Bram Moolenaar92769c32017-02-25 15:41:37 +0100898#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100899 STRCPY(buf->b_ct_di.di_key, "changedtick");
900 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100901#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100902}
903
904/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
906 */
907 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100908free_buffer_stuff(
909 buf_T *buf,
910 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911{
912 if (free_options)
913 {
914 clear_wininfo(buf); /* including window-local options */
915 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200916#ifdef FEAT_SPELL
917 ga_clear(&buf->b_s.b_langp);
918#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 }
920#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100921 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100922 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100923
924 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
925 hash_init(&buf->b_vars->dv_hashtab);
926 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100927 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929#endif
930#ifdef FEAT_USR_CMDS
931 uc_clear(&buf->b_ucmds); /* clear local user commands */
932#endif
933#ifdef FEAT_SIGNS
Bram Moolenaar162b7142018-12-21 15:17:36 +0100934 buf_delete_signs(buf, (char_u *)"*"); // delete any signs */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000936#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200937 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939#ifdef FEAT_LOCALMAP
940 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
941 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
942#endif
943#ifdef FEAT_MBYTE
Bram Moolenaard23a8232018-02-10 18:45:26 +0100944 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945#endif
946}
947
948/*
949 * Free the b_wininfo list for buffer "buf".
950 */
951 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100952clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953{
954 wininfo_T *wip;
955
956 while (buf->b_wininfo != NULL)
957 {
958 wip = buf->b_wininfo;
959 buf->b_wininfo = wip->wi_next;
960 if (wip->wi_optset)
961 {
962 clear_winopt(&wip->wi_opt);
963#ifdef FEAT_FOLDING
964 deleteFoldRecurse(&wip->wi_folds);
965#endif
966 }
967 vim_free(wip);
968 }
969}
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971/*
972 * Go to another buffer. Handles the result of the ATTENTION dialog.
973 */
974 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100975goto_buffer(
976 exarg_T *eap,
977 int start,
978 int dir,
979 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980{
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200981#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200982 bufref_T old_curbuf;
983
984 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
986 swap_exists_action = SEA_DIALOG;
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
989 start, dir, count, eap->forceit);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200990#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
992 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200993# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000994 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000995
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000996 /* Reset the error/interrupt/exception state here so that
997 * aborting() returns FALSE when closing a window. */
998 enter_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200999# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001000
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001001 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 win_close(curwin, TRUE);
1003 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001004 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001005
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001006# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001007 /* Restore the error/interrupt/exception state if not discarded by a
1008 * new aborting error, interrupt, or uncaught exception. */
1009 leave_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001010# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 }
1012 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001013 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014#endif
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001015}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
Bram Moolenaare64ac772005-12-07 20:54:59 +00001017#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018/*
1019 * Handle the situation of swap_exists_action being set.
1020 * It is allowed for "old_curbuf" to be NULL or invalid.
1021 */
1022 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001023handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001025# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001026 cleanup_T cs;
1027# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001028# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001029 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001030# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001031 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001032
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 if (swap_exists_action == SEA_QUIT)
1034 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001035# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001036 /* Reset the error/interrupt/exception state here so that
1037 * aborting() returns FALSE when closing a buffer. */
1038 enter_cleanup(&cs);
1039# endif
1040
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 /* User selected Quit at ATTENTION prompt. Go back to previous
1042 * buffer. If that buffer is gone or the same as the current one,
1043 * open a new, empty buffer. */
1044 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001045 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001046 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001047 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1048 || old_curbuf->br_buf == curbuf)
1049 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1050 else
1051 buf = old_curbuf->br_buf;
1052 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001053 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001054 int old_msg_silent = msg_silent;
1055
1056 if (shortmess(SHM_FILEINFO))
1057 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001058 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001059 // restore msg_silent, so that the command line will be shown
1060 msg_silent = old_msg_silent;
1061
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001062# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001063 if (old_tw != curbuf->b_p_tw)
1064 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001065# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001068
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001069# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001070 /* Restore the error/interrupt/exception state if not discarded by a
1071 * new aborting error, interrupt, or uncaught exception. */
1072 leave_cleanup(&cs);
1073# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 }
1075 else if (swap_exists_action == SEA_RECOVER)
1076 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001077# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001078 /* Reset the error/interrupt/exception state here so that
1079 * aborting() returns FALSE when closing a buffer. */
1080 enter_cleanup(&cs);
1081# endif
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 /* User selected Recover at ATTENTION prompt. */
1084 msg_scroll = TRUE;
1085 ml_recover();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001086 msg_puts("\n"); /* don't overwrite the last message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001088 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001089
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001090# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091 /* Restore the error/interrupt/exception state if not discarded by a
1092 * new aborting error, interrupt, or uncaught exception. */
1093 leave_cleanup(&cs);
1094# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 }
1096 swap_exists_action = SEA_NONE;
1097}
1098#endif
1099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100/*
1101 * do_bufdel() - delete or unload buffer(s)
1102 *
1103 * addr_count == 0: ":bdel" - delete current buffer
1104 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1105 * buffer "end_bnr", then any other arguments.
1106 * addr_count == 2: ":N,N bdel" - delete buffers in range
1107 *
1108 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1109 * DOBUF_DEL (":bdel")
1110 *
1111 * Returns error message or NULL
1112 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001113 char *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001114do_bufdel(
1115 int command,
1116 char_u *arg, /* pointer to extra arguments */
1117 int addr_count,
1118 int start_bnr, /* first buffer number in a range */
1119 int end_bnr, /* buffer nr or last buffer nr in a range */
1120 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121{
1122 int do_current = 0; /* delete current buffer? */
1123 int deleted = 0; /* number of buffers deleted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001124 char *errormsg = NULL; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 int bnr; /* buffer number */
1126 char_u *p;
1127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 if (addr_count == 0)
1129 {
1130 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1131 }
1132 else
1133 {
1134 if (addr_count == 2)
1135 {
1136 if (*arg) /* both range and argument is not allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001137 return _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 bnr = start_bnr;
1139 }
1140 else /* addr_count == 1 */
1141 bnr = end_bnr;
1142
1143 for ( ;!got_int; ui_breakcheck())
1144 {
1145 /*
1146 * delete the current buffer last, otherwise when the
1147 * current buffer is deleted, the next buffer becomes
1148 * the current one and will be loaded, which may then
1149 * also be deleted, etc.
1150 */
1151 if (bnr == curbuf->b_fnum)
1152 do_current = bnr;
1153 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1154 forceit) == OK)
1155 ++deleted;
1156
1157 /*
1158 * find next buffer number to delete/unload
1159 */
1160 if (addr_count == 2)
1161 {
1162 if (++bnr > end_bnr)
1163 break;
1164 }
1165 else /* addr_count == 1 */
1166 {
1167 arg = skipwhite(arg);
1168 if (*arg == NUL)
1169 break;
1170 if (!VIM_ISDIGIT(*arg))
1171 {
1172 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001173 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1174 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 if (bnr < 0) /* failed */
1176 break;
1177 arg = p;
1178 }
1179 else
1180 bnr = getdigits(&arg);
1181 }
1182 }
1183 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1184 FORWARD, do_current, forceit) == OK)
1185 ++deleted;
1186
1187 if (deleted == 0)
1188 {
1189 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001190 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001192 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001194 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001195 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 }
1197 else if (deleted >= p_report)
1198 {
1199 if (command == DOBUF_UNLOAD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001200 smsg(NGETTEXT("%d buffer unloaded",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001201 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 else if (command == DOBUF_DEL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001203 smsg(NGETTEXT("%d buffer deleted",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001204 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001206 smsg(NGETTEXT("%d buffer wiped out",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001207 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 }
1209 }
1210
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211
1212 return errormsg;
1213}
1214
Bram Moolenaara02471e2014-01-10 16:43:14 +01001215/*
1216 * Make the current buffer empty.
1217 * Used when it is wiped out and it's the last buffer.
1218 */
1219 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001220empty_curbuf(
1221 int close_others,
1222 int forceit,
1223 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001224{
1225 int retval;
1226 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001227 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001228
1229 if (action == DOBUF_UNLOAD)
1230 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001231 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001232 return FAIL;
1233 }
1234
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001235 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001236 if (close_others)
1237 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001238 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001239
1240 setpcmark();
1241 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1242 forceit ? ECMD_FORCEIT : 0, curwin);
1243
1244 /*
1245 * do_ecmd() may create a new buffer, then we have to delete
1246 * the old one. But do_ecmd() may have done that already, check
1247 * if the buffer still exists.
1248 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001249 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001250 close_buffer(NULL, buf, action, FALSE);
1251 if (!close_others)
1252 need_fileinfo = FALSE;
1253 return retval;
1254}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256/*
1257 * Implementation of the commands for the buffer list.
1258 *
1259 * action == DOBUF_GOTO go to specified buffer
1260 * action == DOBUF_SPLIT split window and go to specified buffer
1261 * action == DOBUF_UNLOAD unload specified buffer(s)
1262 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1263 * action == DOBUF_WIPE delete specified buffer(s) really
1264 *
1265 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1266 * start == DOBUF_FIRST go to "count" buffer from first buffer
1267 * start == DOBUF_LAST go to "count" buffer from last buffer
1268 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1269 *
1270 * Return FAIL or OK.
1271 */
1272 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001273do_buffer(
1274 int action,
1275 int start,
1276 int dir, /* FORWARD or BACKWARD */
1277 int count, /* buffer number or number of buffers */
1278 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279{
1280 buf_T *buf;
1281 buf_T *bp;
1282 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1283 || action == DOBUF_WIPE);
1284
1285 switch (start)
1286 {
1287 case DOBUF_FIRST: buf = firstbuf; break;
1288 case DOBUF_LAST: buf = lastbuf; break;
1289 default: buf = curbuf; break;
1290 }
1291 if (start == DOBUF_MOD) /* find next modified buffer */
1292 {
1293 while (count-- > 0)
1294 {
1295 do
1296 {
1297 buf = buf->b_next;
1298 if (buf == NULL)
1299 buf = firstbuf;
1300 }
1301 while (buf != curbuf && !bufIsChanged(buf));
1302 }
1303 if (!bufIsChanged(buf))
1304 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001305 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 return FAIL;
1307 }
1308 }
1309 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1310 {
1311 while (buf != NULL && buf->b_fnum != count)
1312 buf = buf->b_next;
1313 }
1314 else
1315 {
1316 bp = NULL;
1317 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1318 {
1319 /* remember the buffer where we start, we come back there when all
1320 * buffers are unlisted. */
1321 if (bp == NULL)
1322 bp = buf;
1323 if (dir == FORWARD)
1324 {
1325 buf = buf->b_next;
1326 if (buf == NULL)
1327 buf = firstbuf;
1328 }
1329 else
1330 {
1331 buf = buf->b_prev;
1332 if (buf == NULL)
1333 buf = lastbuf;
1334 }
1335 /* don't count unlisted buffers */
1336 if (unload || buf->b_p_bl)
1337 {
1338 --count;
1339 bp = NULL; /* use this buffer as new starting point */
1340 }
1341 if (bp == buf)
1342 {
1343 /* back where we started, didn't find anything. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001344 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 return FAIL;
1346 }
1347 }
1348 }
1349
1350 if (buf == NULL) /* could not find it */
1351 {
1352 if (start == DOBUF_FIRST)
1353 {
1354 /* don't warn when deleting */
1355 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001356 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 }
1358 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001359 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001361 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 return FAIL;
1363 }
1364
1365#ifdef FEAT_GUI
1366 need_mouse_correct = TRUE;
1367#endif
1368
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 /*
1370 * delete buffer buf from memory and/or the list
1371 */
1372 if (unload)
1373 {
1374 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001375 bufref_T bufref;
1376
Bram Moolenaar94f01952018-09-01 15:30:03 +02001377 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001378 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001379
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001380 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381
1382 /* When unloading or deleting a buffer that's already unloaded and
1383 * unlisted: fail silently. */
1384 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1385 return FAIL;
1386
1387 if (!forceit && bufIsChanged(buf))
1388 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001389#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 if ((p_confirm || cmdmod.confirm) && p_write)
1391 {
1392 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001393 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 /* Autocommand deleted buffer, oops! It's not changed
1395 * now. */
1396 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001397 /* If it's still changed fail silently, the dialog already
1398 * mentioned why it fails. */
1399 if (bufIsChanged(buf))
1400 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001402 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001403#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001405 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 buf->b_fnum);
1407 return FAIL;
1408 }
1409 }
1410
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001411 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001412 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001413 end_visual_mode();
1414
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 /*
1416 * If deleting the last (listed) buffer, make it empty.
1417 * The last (listed) buffer cannot be unloaded.
1418 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001419 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 if (bp->b_p_bl && bp != buf)
1421 break;
1422 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001423 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 /*
1426 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001427 * (unless it's the only window). Repeat this so long as we end up in
1428 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001430 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001431 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001432 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001433 {
1434 if (win_close(curwin, FALSE) == FAIL)
1435 break;
1436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437
1438 /*
1439 * If the buffer to be deleted is not the current one, delete it here.
1440 */
1441 if (buf != curbuf)
1442 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001443 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001444 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001445 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 return OK;
1447 }
1448
1449 /*
1450 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001451 * There should be another, otherwise it would have been handled
1452 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001453 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 * Then prefer the buffer we most recently visited.
1455 * Else try to find one that is loaded, after the current buffer,
1456 * then before the current buffer.
1457 * Finally use any buffer.
1458 */
1459 buf = NULL; /* selected buffer */
1460 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001461 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1462 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001464 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 {
1466 int jumpidx;
1467
1468 jumpidx = curwin->w_jumplistidx - 1;
1469 if (jumpidx < 0)
1470 jumpidx = curwin->w_jumplistlen - 1;
1471
1472 forward = jumpidx;
1473 while (jumpidx != curwin->w_jumplistidx)
1474 {
1475 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1476 if (buf != NULL)
1477 {
1478 if (buf == curbuf || !buf->b_p_bl)
1479 buf = NULL; /* skip current and unlisted bufs */
1480 else if (buf->b_ml.ml_mfp == NULL)
1481 {
1482 /* skip unloaded buf, but may keep it for later */
1483 if (bp == NULL)
1484 bp = buf;
1485 buf = NULL;
1486 }
1487 }
1488 if (buf != NULL) /* found a valid buffer: stop searching */
1489 break;
1490 /* advance to older entry in jump list */
1491 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1492 break;
1493 if (--jumpidx < 0)
1494 jumpidx = curwin->w_jumplistlen - 1;
1495 if (jumpidx == forward) /* List exhausted for sure */
1496 break;
1497 }
1498 }
1499#endif
1500
1501 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1502 {
1503 forward = TRUE;
1504 buf = curbuf->b_next;
1505 for (;;)
1506 {
1507 if (buf == NULL)
1508 {
1509 if (!forward) /* tried both directions */
1510 break;
1511 buf = curbuf->b_prev;
1512 forward = FALSE;
1513 continue;
1514 }
1515 /* in non-help buffer, try to skip help buffers, and vv */
1516 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1517 {
1518 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1519 break;
1520 if (bp == NULL) /* remember unloaded buf for later */
1521 bp = buf;
1522 }
1523 if (forward)
1524 buf = buf->b_next;
1525 else
1526 buf = buf->b_prev;
1527 }
1528 }
1529 if (buf == NULL) /* No loaded buffer, use unloaded one */
1530 buf = bp;
1531 if (buf == NULL) /* No loaded buffer, find listed one */
1532 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001533 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 if (buf->b_p_bl && buf != curbuf)
1535 break;
1536 }
1537 if (buf == NULL) /* Still no buffer, just take one */
1538 {
1539 if (curbuf->b_next != NULL)
1540 buf = curbuf->b_next;
1541 else
1542 buf = curbuf->b_prev;
1543 }
1544 }
1545
Bram Moolenaara02471e2014-01-10 16:43:14 +01001546 if (buf == NULL)
1547 {
1548 /* Autocommands must have wiped out all other buffers. Only option
1549 * now is to make the current buffer empty. */
1550 return empty_curbuf(FALSE, forceit, action);
1551 }
1552
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 /*
1554 * make buf current buffer
1555 */
1556 if (action == DOBUF_SPLIT) /* split window first */
1557 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001558 /* If 'switchbuf' contains "useopen": jump to first window containing
1559 * "buf" if one exists */
1560 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001561 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001562 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001563 * page containing "buf" if one exists */
1564 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 return OK;
1566 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 return FAIL;
1568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
1570 /* go to current buffer - nothing to do */
1571 if (buf == curbuf)
1572 return OK;
1573
1574 /*
1575 * Check if the current buffer may be abandoned.
1576 */
1577 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1578 {
1579#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1580 if ((p_confirm || cmdmod.confirm) && p_write)
1581 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001582 bufref_T bufref;
1583
1584 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001586 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 /* Autocommand deleted buffer, oops! */
1588 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 }
1590 if (bufIsChanged(curbuf))
1591#endif
1592 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001593 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 return FAIL;
1595 }
1596 }
1597
1598 /* Go to the other buffer. */
1599 set_curbuf(buf, action);
1600
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001602 {
1603 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001606#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 if (aborting()) /* autocmds may abort script processing */
1608 return FAIL;
1609#endif
1610
1611 return OK;
1612}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614/*
1615 * Set current buffer to "buf". Executes autocommands and closes current
1616 * buffer. "action" tells how to close the current buffer:
1617 * DOBUF_GOTO free or hide it
1618 * DOBUF_SPLIT nothing
1619 * DOBUF_UNLOAD unload it
1620 * DOBUF_DEL delete it
1621 * DOBUF_WIPE wipe it out
1622 */
1623 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001624set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 buf_T *prevbuf;
1627 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1628 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001629#ifdef FEAT_SYN_HL
1630 long old_tw = curbuf->b_p_tw;
1631#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001632 bufref_T newbufref;
1633 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
1635 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001636 if (!cmdmod.keepalt)
1637 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001638 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 /* Don't restart Select mode after switching to another buffer. */
1641 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001643 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1644 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001646 set_bufref(&prevbufref, prevbuf);
1647 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001649 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1650 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001651 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001652 || (bufref_valid(&prevbufref)
1653 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001654#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001655 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001657 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001659#ifdef FEAT_SYN_HL
1660 if (prevbuf == curwin->w_buffer)
1661 reset_synblock(curwin);
1662#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001664 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001665#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001666 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001668 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001670 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001671 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001672 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001673 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1675 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001676 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001677 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001678 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001679 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001680 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001683 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001684 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001685 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1686 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001687#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001688 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001690 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001691 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001693#ifdef FEAT_SYN_HL
1694 if (old_tw != curbuf->b_p_tw)
1695 check_colorcolumn(curwin);
1696#endif
1697 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698}
1699
1700/*
1701 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001702 * Old curbuf must have been abandoned already! This also means "curbuf" may
1703 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 */
1705 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001706enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707{
1708 /* Copy buffer and window local option values. Not for a help buffer. */
1709 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1710 if (!buf->b_help)
1711 get_winopts(buf);
1712#ifdef FEAT_FOLDING
1713 else
1714 /* Remove all folds in the window. */
1715 clearFolding(curwin);
1716 foldUpdateAll(curwin); /* update folds (later). */
1717#endif
1718
1719 /* Get the buffer in the current window. */
1720 curwin->w_buffer = buf;
1721 curbuf = buf;
1722 ++curbuf->b_nwindows;
1723
1724#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001725 if (curwin->w_p_diff)
1726 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727#endif
1728
Bram Moolenaara971b822011-09-14 14:43:25 +02001729#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001730 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001731#endif
1732
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 /* Cursor on first line by default. */
1734 curwin->w_cursor.lnum = 1;
1735 curwin->w_cursor.col = 0;
1736#ifdef FEAT_VIRTUALEDIT
1737 curwin->w_cursor.coladd = 0;
1738#endif
1739 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001740 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001742 /* mark cursor position as being invalid */
1743 curwin->w_valid = 0;
1744
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001745 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1746 curbuf->b_last_cursor.col, TRUE);
1747
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 /* Make sure the buffer is loaded. */
1749 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001750 {
1751 /* If there is no filetype, allow for detecting one. Esp. useful for
1752 * ":ball" used in a autocommand. If there already is a filetype we
1753 * might prefer to keep it. */
1754 if (*curbuf->b_p_ft == NUL)
1755 did_filetype = FALSE;
1756
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001757 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001758 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 else
1760 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001761 if (!msg_silent)
1762 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001765#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001767#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1769 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 }
1771
1772 /* If autocommands did not change the cursor position, restore cursor lnum
1773 * and possibly cursor col. */
1774 if (curwin->w_cursor.lnum == 1 && inindent(0))
1775 buflist_getfpos();
1776
1777 check_arg_idx(curwin); /* check for valid arg_idx */
1778#ifdef FEAT_TITLE
1779 maketitle();
1780#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001781 /* when autocmds didn't change it */
1782 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1784
Bram Moolenaar009b2592004-10-24 19:18:58 +00001785#ifdef FEAT_NETBEANS_INTG
1786 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001787 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001788#endif
1789
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001790 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001791 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
1793#ifdef FEAT_KEYMAP
1794 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001795 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001797#ifdef FEAT_SPELL
1798 /* May need to set the spell language. Can only do this after the buffer
1799 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001800 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1801 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001802#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001803#ifdef FEAT_VIMINFO
1804 curbuf->b_last_used = vim_time();
1805#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001806
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 redraw_later(NOT_VALID);
1808}
1809
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001810#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1811/*
1812 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001813 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001814 */
1815 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001816do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001817{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001818 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001819 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001820 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001821 shorten_fnames(TRUE);
1822}
1823#endif
1824
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001825 void
1826no_write_message(void)
1827{
1828#ifdef FEAT_TERMINAL
1829 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001830 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001831 else
1832#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001833 emsg(_("E37: No write since last change (add ! to override)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001834}
1835
1836 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001837no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001838{
1839#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001840 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001841 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001842 else
1843#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001844 emsg(_("E37: No write since last change"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001845}
1846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847/*
1848 * functions for dealing with the buffer list
1849 */
1850
Bram Moolenaar480778b2016-07-14 22:09:39 +02001851static int top_file_num = 1; /* highest file number */
1852
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001854 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1855 * only one window. That means it can be re-used.
1856 */
1857 int
1858curbuf_reusable(void)
1859{
1860 return (curbuf != NULL
1861 && curbuf->b_ffname == NULL
1862 && curbuf->b_nwindows <= 1
1863 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
1864 && !curbufIsChanged());
1865}
1866
1867/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 * Add a file name to the buffer list. Return a pointer to the buffer.
1869 * If the same file name already exists return a pointer to that buffer.
1870 * If it does not exist, or if fname == NULL, a new entry is created.
1871 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1872 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1873 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001874 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001875 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1876 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 * This is the ONLY way to create a new buffer.
1878 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001880buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001881 char_u *ffname_arg, // full path of fname or relative
1882 char_u *sfname_arg, // short fname or NULL
1883 linenr_T lnum, // preferred cursor line
1884 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001886 char_u *ffname = ffname_arg;
1887 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 buf_T *buf;
1889#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001890 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891#endif
1892
Bram Moolenaar480778b2016-07-14 22:09:39 +02001893 if (top_file_num == 1)
1894 hash_init(&buf_hashtab);
1895
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001896 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
1898 /*
1899 * If file name already exists in the list, update the entry.
1900 */
1901#ifdef UNIX
1902 /* On Unix we can use inode numbers when the file exists. Works better
1903 * for hard links. */
1904 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1905 st.st_dev = (dev_T)-1;
1906#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001907 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908#ifdef UNIX
1909 buflist_findname_stat(ffname, &st)
1910#else
1911 buflist_findname(ffname)
1912#endif
1913 ) != NULL)
1914 {
1915 vim_free(ffname);
1916 if (lnum != 0)
1917 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001918
1919 if ((flags & BLN_NOOPT) == 0)
1920 /* copy the options now, if 'cpo' doesn't have 's' and not done
1921 * already */
1922 buf_copy_options(buf, 0);
1923
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1925 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001926 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001927
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001929 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001931 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001932 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001933 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001934 return NULL;
1935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 }
1937 return buf;
1938 }
1939
1940 /*
1941 * If the current buffer has no name and no contents, use the current
1942 * buffer. Otherwise: Need to allocate a new buffer structure.
1943 *
1944 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001945 * (A spell file buffer is allocated in spell.c, but that's not a normal
1946 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 */
1948 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001949 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 {
1951 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 /* It's like this buffer is deleted. Watch out for autocommands that
1953 * change curbuf! If that happens, allocate a new buffer anyway. */
1954 if (curbuf->b_p_bl)
1955 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1956 if (buf == curbuf)
1957 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001958#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001959 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 {
1964 /* Make sure 'bufhidden' and 'buftype' are empty */
1965 clear_string_option(&buf->b_p_bh);
1966 clear_string_option(&buf->b_p_bt);
1967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 }
1969 if (buf != curbuf || curbuf == NULL)
1970 {
1971 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1972 if (buf == NULL)
1973 {
1974 vim_free(ffname);
1975 return NULL;
1976 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001977#ifdef FEAT_EVAL
1978 /* init b: variables */
1979 buf->b_vars = dict_alloc();
1980 if (buf->b_vars == NULL)
1981 {
1982 vim_free(ffname);
1983 vim_free(buf);
1984 return NULL;
1985 }
1986 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1987#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001988 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 }
1990
1991 if (ffname != NULL)
1992 {
1993 buf->b_ffname = ffname;
1994 buf->b_sfname = vim_strsave(sfname);
1995 }
1996
1997 clear_wininfo(buf);
1998 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1999
2000 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2001 || buf->b_wininfo == NULL)
2002 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002003 if (buf->b_sfname != buf->b_ffname)
2004 VIM_CLEAR(buf->b_sfname);
2005 else
2006 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002007 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 if (buf != curbuf)
2009 free_buffer(buf);
2010 return NULL;
2011 }
2012
2013 if (buf == curbuf)
2014 {
2015 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002016 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 if (buf != curbuf) /* autocommands deleted the buffer! */
2018 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002019#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002020 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 return NULL;
2022#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002024
2025 /* Init the options. */
2026 buf->b_p_initialized = FALSE;
2027 buf_copy_options(buf, BCO_ENTER);
2028
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029#ifdef FEAT_KEYMAP
2030 /* need to reload lmaps and set b:keymap_name */
2031 curbuf->b_kmap_state |= KEYMAP_INIT;
2032#endif
2033 }
2034 else
2035 {
2036 /*
2037 * put new buffer at the end of the buffer list
2038 */
2039 buf->b_next = NULL;
2040 if (firstbuf == NULL) /* buffer list is empty */
2041 {
2042 buf->b_prev = NULL;
2043 firstbuf = buf;
2044 }
2045 else /* append new buffer at end of list */
2046 {
2047 lastbuf->b_next = buf;
2048 buf->b_prev = lastbuf;
2049 }
2050 lastbuf = buf;
2051
2052 buf->b_fnum = top_file_num++;
2053 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2054 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002055 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 if (emsg_silent == 0)
2057 {
2058 out_flush();
2059 ui_delay(3000L, TRUE); /* make sure it is noticed */
2060 }
2061 top_file_num = 1;
2062 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002063 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
2065 /*
2066 * Always copy the options from the current buffer.
2067 */
2068 buf_copy_options(buf, BCO_ALWAYS);
2069 }
2070
2071 buf->b_wininfo->wi_fpos.lnum = lnum;
2072 buf->b_wininfo->wi_win = curwin;
2073
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002074#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002075 hash_init(&buf->b_s.b_keywtab);
2076 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077#endif
2078
2079 buf->b_fname = buf->b_sfname;
2080#ifdef UNIX
2081 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002082 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 else
2084 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002085 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 buf->b_dev = st.st_dev;
2087 buf->b_ino = st.st_ino;
2088 }
2089#endif
2090 buf->b_u_synced = TRUE;
2091 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002092 if (flags & BLN_DUMMY)
2093 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 buf_clear_file(buf);
2095 clrallmarks(buf); /* clear marks */
2096 fmarks_check_names(buf); /* check file marks for this file */
2097 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (!(flags & BLN_DUMMY))
2099 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002100 bufref_T bufref;
2101
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002102 /* Tricky: these autocommands may change the buffer list. They could
2103 * also split the window with re-using the one empty buffer. This may
2104 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002105 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002106 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002107 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002108 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002110 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002111 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002112 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002113 return NULL;
2114 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002115#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002116 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120
2121 return buf;
2122}
2123
2124/*
2125 * Free the memory for the options of a buffer.
2126 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2127 * 'fileencoding'.
2128 */
2129 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002130free_buf_options(
2131 buf_T *buf,
2132 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133{
2134 if (free_p_ff)
2135 {
2136#ifdef FEAT_MBYTE
2137 clear_string_option(&buf->b_p_fenc);
2138#endif
2139 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 clear_string_option(&buf->b_p_bh);
2141 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 }
2143#ifdef FEAT_FIND_ID
2144 clear_string_option(&buf->b_p_def);
2145 clear_string_option(&buf->b_p_inc);
2146# ifdef FEAT_EVAL
2147 clear_string_option(&buf->b_p_inex);
2148# endif
2149#endif
2150#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2151 clear_string_option(&buf->b_p_inde);
2152 clear_string_option(&buf->b_p_indk);
2153#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002154#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2155 clear_string_option(&buf->b_p_bexpr);
2156#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002157#if defined(FEAT_CRYPT)
2158 clear_string_option(&buf->b_p_cm);
2159#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002160 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002161#if defined(FEAT_EVAL)
2162 clear_string_option(&buf->b_p_fex);
2163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164#ifdef FEAT_CRYPT
2165 clear_string_option(&buf->b_p_key);
2166#endif
2167 clear_string_option(&buf->b_p_kp);
2168 clear_string_option(&buf->b_p_mps);
2169 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002170 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002172#ifdef FEAT_VARTABS
2173 clear_string_option(&buf->b_p_vsts);
2174 if (buf->b_p_vsts_nopaste)
2175 vim_free(buf->b_p_vsts_nopaste);
2176 buf->b_p_vsts_nopaste = NULL;
2177 if (buf->b_p_vsts_array)
2178 vim_free(buf->b_p_vsts_array);
2179 buf->b_p_vsts_array = NULL;
2180 clear_string_option(&buf->b_p_vts);
2181 if (buf->b_p_vts_array)
2182 vim_free(buf->b_p_vts_array);
2183 buf->b_p_vts_array = NULL;
2184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185#ifdef FEAT_KEYMAP
2186 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002187 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 ga_clear(&buf->b_kmap_ga);
2189#endif
2190#ifdef FEAT_COMMENTS
2191 clear_string_option(&buf->b_p_com);
2192#endif
2193#ifdef FEAT_FOLDING
2194 clear_string_option(&buf->b_p_cms);
2195#endif
2196 clear_string_option(&buf->b_p_nf);
2197#ifdef FEAT_SYN_HL
2198 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002199 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002200#endif
2201#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002202 clear_string_option(&buf->b_s.b_p_spc);
2203 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002204 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002205 buf->b_s.b_cap_prog = NULL;
2206 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207#endif
2208#ifdef FEAT_SEARCHPATH
2209 clear_string_option(&buf->b_p_sua);
2210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212#ifdef FEAT_CINDENT
2213 clear_string_option(&buf->b_p_cink);
2214 clear_string_option(&buf->b_p_cino);
2215#endif
2216#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2217 clear_string_option(&buf->b_p_cinw);
2218#endif
2219#ifdef FEAT_INS_EXPAND
2220 clear_string_option(&buf->b_p_cpt);
2221#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002222#ifdef FEAT_COMPL_FUNC
2223 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002224 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002225#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226#ifdef FEAT_QUICKFIX
2227 clear_string_option(&buf->b_p_gp);
2228 clear_string_option(&buf->b_p_mp);
2229 clear_string_option(&buf->b_p_efm);
2230#endif
2231 clear_string_option(&buf->b_p_ep);
2232 clear_string_option(&buf->b_p_path);
2233 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002234 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235#ifdef FEAT_INS_EXPAND
2236 clear_string_option(&buf->b_p_dict);
2237 clear_string_option(&buf->b_p_tsr);
2238#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002239#ifdef FEAT_TEXTOBJ
2240 clear_string_option(&buf->b_p_qe);
2241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002243 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002244#ifdef FEAT_LISP
2245 clear_string_option(&buf->b_p_lw);
2246#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002247 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002248#ifdef FEAT_MBYTE
2249 clear_string_option(&buf->b_p_menc);
2250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251}
2252
2253/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002254 * Get alternate file "n".
2255 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2256 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 * if (options & GETF_SETMARK) call setpcmark()
2258 * if (options & GETF_ALT) we are jumping to an alternate file.
2259 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2260 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002261 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 */
2263 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002264buflist_getfile(
2265 int n,
2266 linenr_T lnum,
2267 int options,
2268 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269{
2270 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 pos_T *fpos;
2273 colnr_T col;
2274
2275 buf = buflist_findnr(n);
2276 if (buf == NULL)
2277 {
2278 if ((options & GETF_ALT) && n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002279 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002281 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 return FAIL;
2283 }
2284
2285 /* if alternate file is the current buffer, nothing to do */
2286 if (buf == curbuf)
2287 return OK;
2288
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002289 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002290 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002291 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002293 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002294 if (curbuf_locked())
2295 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296
2297 /* altfpos may be changed by getfile(), get it now */
2298 if (lnum == 0)
2299 {
2300 fpos = buflist_findfpos(buf);
2301 lnum = fpos->lnum;
2302 col = fpos->col;
2303 }
2304 else
2305 col = 0;
2306
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 if (options & GETF_SWITCH)
2308 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002309 /* If 'switchbuf' contains "useopen": jump to first window containing
2310 * "buf" if one exists */
2311 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002313
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002314 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002315 * page containing "buf" if one exists */
2316 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002317 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002318
2319 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2320 * current buffer isn't empty: open new tab or window */
2321 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002322 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002324 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002325 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002326 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2327 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002329 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 }
2331 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332
2333 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002334 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2335 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 {
2337 --RedrawingDisabled;
2338
2339 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2340 if (!p_sol && col != 0)
2341 {
2342 curwin->w_cursor.col = col;
2343 check_cursor_col();
2344#ifdef FEAT_VIRTUALEDIT
2345 curwin->w_cursor.coladd = 0;
2346#endif
2347 curwin->w_set_curswant = TRUE;
2348 }
2349 return OK;
2350 }
2351 --RedrawingDisabled;
2352 return FAIL;
2353}
2354
2355/*
2356 * go to the last know line number for the current buffer
2357 */
2358 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002359buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 pos_T *fpos;
2362
2363 fpos = buflist_findfpos(curbuf);
2364
2365 curwin->w_cursor.lnum = fpos->lnum;
2366 check_cursor_lnum();
2367
2368 if (p_sol)
2369 curwin->w_cursor.col = 0;
2370 else
2371 {
2372 curwin->w_cursor.col = fpos->col;
2373 check_cursor_col();
2374#ifdef FEAT_VIRTUALEDIT
2375 curwin->w_cursor.coladd = 0;
2376#endif
2377 curwin->w_set_curswant = TRUE;
2378 }
2379}
2380
Bram Moolenaar81695252004-12-29 20:58:21 +00002381#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2382/*
2383 * Find file in buffer list by name (it has to be for the current window).
2384 * Returns NULL if not found.
2385 */
2386 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002387buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002388{
2389 char_u *ffname;
2390 buf_T *buf = NULL;
2391
2392 /* First make the name into a full path name */
2393 ffname = FullName_save(fname,
2394#ifdef UNIX
2395 TRUE /* force expansion, get rid of symbolic links */
2396#else
2397 FALSE
2398#endif
2399 );
2400 if (ffname != NULL)
2401 {
2402 buf = buflist_findname(ffname);
2403 vim_free(ffname);
2404 }
2405 return buf;
2406}
2407#endif
2408
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409/*
2410 * Find file in buffer list by name (it has to be for the current window).
2411 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002412 * Skips dummy buffers.
2413 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 */
2415 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002416buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417{
2418#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002419 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420
2421 if (mch_stat((char *)ffname, &st) < 0)
2422 st.st_dev = (dev_T)-1;
2423 return buflist_findname_stat(ffname, &st);
2424}
2425
2426/*
2427 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2428 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002429 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 */
2431 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002432buflist_findname_stat(
2433 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002434 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435{
2436#endif
2437 buf_T *buf;
2438
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002439 /* Start at the last buffer, expect to find a match sooner. */
2440 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002441 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442#ifdef UNIX
2443 , stp
2444#endif
2445 ))
2446 return buf;
2447 return NULL;
2448}
2449
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450/*
2451 * Find file in buffer list by a regexp pattern.
2452 * Return fnum of the found buffer.
2453 * Return < 0 for error.
2454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002456buflist_findpat(
2457 char_u *pattern,
2458 char_u *pattern_end, /* pointer to first char after pattern */
2459 int unlisted, /* find unlisted buffers */
2460 int diffmode UNUSED, /* find diff-mode buffers only */
2461 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462{
2463 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 int match = -1;
2465 int find_listed;
2466 char_u *pat;
2467 char_u *patend;
2468 int attempt;
2469 char_u *p;
2470 int toggledollar;
2471
2472 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2473 {
2474 if (*pattern == '%')
2475 match = curbuf->b_fnum;
2476 else
2477 match = curwin->w_alt_fnum;
2478#ifdef FEAT_DIFF
2479 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2480 match = -1;
2481#endif
2482 }
2483
2484 /*
2485 * Try four ways of matching a listed buffer:
2486 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002487 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 * attempt == 2: with '$' at end (only match at end)
2489 * attempt == 3: with '^' at start and '$' at end (only full match)
2490 * Repeat this for finding an unlisted buffer if there was no matching
2491 * listed buffer.
2492 */
2493 else
2494 {
2495 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2496 if (pat == NULL)
2497 return -1;
2498 patend = pat + STRLEN(pat) - 1;
2499 toggledollar = (patend > pat && *patend == '$');
2500
2501 /* First try finding a listed buffer. If not found and "unlisted"
2502 * is TRUE, try finding an unlisted buffer. */
2503 find_listed = TRUE;
2504 for (;;)
2505 {
2506 for (attempt = 0; attempt <= 3; ++attempt)
2507 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002508 regmatch_T regmatch;
2509
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 /* may add '^' and '$' */
2511 if (toggledollar)
2512 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2513 p = pat;
2514 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2515 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002516 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2517 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 {
2519 vim_free(pat);
2520 return -1;
2521 }
2522
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002523 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 if (buf->b_p_bl == find_listed
2525#ifdef FEAT_DIFF
2526 && (!diffmode || diff_mode_buf(buf))
2527#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002528 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002530 if (curtab_only)
2531 {
2532 /* Ignore the match if the buffer is not open in
2533 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002534 win_T *wp;
2535
Bram Moolenaar29323592016-07-24 22:04:11 +02002536 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002537 if (wp->w_buffer == buf)
2538 break;
2539 if (wp == NULL)
2540 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002541 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 if (match >= 0) /* already found a match */
2543 {
2544 match = -2;
2545 break;
2546 }
2547 match = buf->b_fnum; /* remember first match */
2548 }
2549
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002550 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 if (match >= 0) /* found one match */
2552 break;
2553 }
2554
2555 /* Only search for unlisted buffers if there was no match with
2556 * a listed buffer. */
2557 if (!unlisted || !find_listed || match != -1)
2558 break;
2559 find_listed = FALSE;
2560 }
2561
2562 vim_free(pat);
2563 }
2564
2565 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002566 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002568 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 return match;
2570}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571
2572#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2573
2574/*
2575 * Find all buffer names that match.
2576 * For command line expansion of ":buf" and ":sbuf".
2577 * Return OK if matches found, FAIL otherwise.
2578 */
2579 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002580ExpandBufnames(
2581 char_u *pat,
2582 int *num_file,
2583 char_u ***file,
2584 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585{
2586 int count = 0;
2587 buf_T *buf;
2588 int round;
2589 char_u *p;
2590 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002591 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592
2593 *num_file = 0; /* return values in case of FAIL */
2594 *file = NULL;
2595
Bram Moolenaar05159a02005-02-26 23:04:13 +00002596 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2597 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002599 patc = alloc((unsigned)STRLEN(pat) + 11);
2600 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002602 STRCPY(patc, "\\(^\\|[\\/]\\)");
2603 STRCPY(patc + 11, pat + 1);
2604 }
2605 else
2606 patc = pat;
2607
2608 /*
2609 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002610 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002611 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002612 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002613 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002614 regmatch_T regmatch;
2615
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002616 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002617 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002618 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2619 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002620 {
2621 if (patc != pat)
2622 vim_free(patc);
2623 return FAIL;
2624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625
2626 /*
2627 * round == 1: Count the matches.
2628 * round == 2: Build the array to keep the matches.
2629 */
2630 for (round = 1; round <= 2; ++round)
2631 {
2632 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002633 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 {
2635 if (!buf->b_p_bl) /* skip unlisted buffers */
2636 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002637 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (p != NULL)
2639 {
2640 if (round == 1)
2641 ++count;
2642 else
2643 {
2644 if (options & WILD_HOME_REPLACE)
2645 p = home_replace_save(buf, p);
2646 else
2647 p = vim_strsave(p);
2648 (*file)[count++] = p;
2649 }
2650 }
2651 }
2652 if (count == 0) /* no match found, break here */
2653 break;
2654 if (round == 1)
2655 {
2656 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2657 if (*file == NULL)
2658 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002659 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002660 if (patc != pat)
2661 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 return FAIL;
2663 }
2664 }
2665 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002666 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 if (count) /* match(es) found, break here */
2668 break;
2669 }
2670
Bram Moolenaar05159a02005-02-26 23:04:13 +00002671 if (patc != pat)
2672 vim_free(patc);
2673
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 *num_file = count;
2675 return (count == 0 ? FAIL : OK);
2676}
2677
2678#endif /* FEAT_CMDL_COMPL */
2679
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680/*
2681 * Check for a match on the file name for buffer "buf" with regprog "prog".
2682 */
2683 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002684buflist_match(
2685 regmatch_T *rmp,
2686 buf_T *buf,
2687 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688{
2689 char_u *match;
2690
2691 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002692 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002694 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695
2696 return match;
2697}
2698
2699/*
2700 * Try matching the regexp in "prog" with file name "name".
2701 * Return "name" when there is a match, NULL when not.
2702 */
2703 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002704fname_match(
2705 regmatch_T *rmp,
2706 char_u *name,
2707 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708{
2709 char_u *match = NULL;
2710 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711
2712 if (name != NULL)
2713 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002714 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002715 rmp->rm_ic = p_fic || ignore_case;
2716 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 match = name;
2718 else
2719 {
2720 /* Replace $(HOME) with '~' and try matching again. */
2721 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002722 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 match = name;
2724 vim_free(p);
2725 }
2726 }
2727
2728 return match;
2729}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730
2731/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002732 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 */
2734 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002735buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002737 char_u key[VIM_SIZEOF_INT * 2 + 1];
2738 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739
2740 if (nr == 0)
2741 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002742 sprintf((char *)key, "%x", nr);
2743 hi = hash_find(&buf_hashtab, key);
2744
2745 if (!HASHITEM_EMPTY(hi))
2746 return (buf_T *)(hi->hi_key
2747 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 return NULL;
2749}
2750
2751/*
2752 * Get name of file 'n' in the buffer list.
2753 * When the file has no name an empty string is returned.
2754 * home_replace() is used to shorten the file name (used for marks).
2755 * Returns a pointer to allocated memory, of NULL when failed.
2756 */
2757 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002758buflist_nr2name(
2759 int n,
2760 int fullname,
2761 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762{
2763 buf_T *buf;
2764
2765 buf = buflist_findnr(n);
2766 if (buf == NULL)
2767 return NULL;
2768 return home_replace_save(helptail ? buf : NULL,
2769 fullname ? buf->b_ffname : buf->b_fname);
2770}
2771
2772/*
2773 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2774 * When "copy_options" is TRUE save the local window option values.
2775 * When "lnum" is 0 only do the options.
2776 */
2777 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002778buflist_setfpos(
2779 buf_T *buf,
2780 win_T *win,
2781 linenr_T lnum,
2782 colnr_T col,
2783 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784{
2785 wininfo_T *wip;
2786
2787 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2788 if (wip->wi_win == win)
2789 break;
2790 if (wip == NULL)
2791 {
2792 /* allocate a new entry */
2793 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2794 if (wip == NULL)
2795 return;
2796 wip->wi_win = win;
2797 if (lnum == 0) /* set lnum even when it's 0 */
2798 lnum = 1;
2799 }
2800 else
2801 {
2802 /* remove the entry from the list */
2803 if (wip->wi_prev)
2804 wip->wi_prev->wi_next = wip->wi_next;
2805 else
2806 buf->b_wininfo = wip->wi_next;
2807 if (wip->wi_next)
2808 wip->wi_next->wi_prev = wip->wi_prev;
2809 if (copy_options && wip->wi_optset)
2810 {
2811 clear_winopt(&wip->wi_opt);
2812#ifdef FEAT_FOLDING
2813 deleteFoldRecurse(&wip->wi_folds);
2814#endif
2815 }
2816 }
2817 if (lnum != 0)
2818 {
2819 wip->wi_fpos.lnum = lnum;
2820 wip->wi_fpos.col = col;
2821 }
2822 if (copy_options)
2823 {
2824 /* Save the window-specific option values. */
2825 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2826#ifdef FEAT_FOLDING
2827 wip->wi_fold_manual = win->w_fold_manual;
2828 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2829#endif
2830 wip->wi_optset = TRUE;
2831 }
2832
2833 /* insert the entry in front of the list */
2834 wip->wi_next = buf->b_wininfo;
2835 buf->b_wininfo = wip;
2836 wip->wi_prev = NULL;
2837 if (wip->wi_next)
2838 wip->wi_next->wi_prev = wip;
2839
2840 return;
2841}
2842
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002843#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002844/*
2845 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2846 * page. That's because a diff is local to a tab page.
2847 */
2848 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002849wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002850{
2851 win_T *wp;
2852
2853 if (wip->wi_opt.wo_diff)
2854 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002855 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002856 /* return FALSE when it's a window in the current tab page, thus
2857 * the buffer was in diff mode here */
2858 if (wip->wi_win == wp)
2859 return FALSE;
2860 return TRUE;
2861 }
2862 return FALSE;
2863}
2864#endif
2865
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866/*
2867 * Find info for the current window in buffer "buf".
2868 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002869 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2870 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 * Returns NULL when there isn't any info.
2872 */
2873 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002874find_wininfo(
2875 buf_T *buf,
2876 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
2878 wininfo_T *wip;
2879
2880 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002881 if (wip->wi_win == curwin
2882#ifdef FEAT_DIFF
2883 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2884#endif
2885 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002887
2888 /* If no wininfo for curwin, use the first in the list (that doesn't have
2889 * 'diff' set and is in another tab page). */
2890 if (wip == NULL)
2891 {
2892#ifdef FEAT_DIFF
2893 if (skip_diff_buffer)
2894 {
2895 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2896 if (!wininfo_other_tab_diff(wip))
2897 break;
2898 }
2899 else
2900#endif
2901 wip = buf->b_wininfo;
2902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 return wip;
2904}
2905
2906/*
2907 * Reset the local window options to the values last used in this window.
2908 * If the buffer wasn't used in this window before, use the values from
2909 * the most recently used window. If the values were never set, use the
2910 * global values for the window.
2911 */
2912 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002913get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914{
2915 wininfo_T *wip;
2916
2917 clear_winopt(&curwin->w_onebuf_opt);
2918#ifdef FEAT_FOLDING
2919 clearFolding(curwin);
2920#endif
2921
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002922 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002923 if (wip != NULL && wip->wi_win != NULL
2924 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002926 /* The buffer is currently displayed in the window: use the actual
2927 * option values instead of the saved (possibly outdated) values. */
2928 win_T *wp = wip->wi_win;
2929
2930 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2931#ifdef FEAT_FOLDING
2932 curwin->w_fold_manual = wp->w_fold_manual;
2933 curwin->w_foldinvalid = TRUE;
2934 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2935#endif
2936 }
2937 else if (wip != NULL && wip->wi_optset)
2938 {
2939 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2941#ifdef FEAT_FOLDING
2942 curwin->w_fold_manual = wip->wi_fold_manual;
2943 curwin->w_foldinvalid = TRUE;
2944 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2945#endif
2946 }
2947 else
2948 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2949
2950#ifdef FEAT_FOLDING
2951 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2952 if (p_fdls >= 0)
2953 curwin->w_p_fdl = p_fdls;
2954#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002955#ifdef FEAT_SYN_HL
2956 check_colorcolumn(curwin);
2957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958}
2959
2960/*
2961 * Find the position (lnum and col) for the buffer 'buf' for the current
2962 * window.
2963 * Returns a pointer to no_position if no position is found.
2964 */
2965 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002966buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967{
2968 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002969 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002971 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 if (wip != NULL)
2973 return &(wip->wi_fpos);
2974 else
2975 return &no_position;
2976}
2977
2978/*
2979 * Find the lnum for the buffer 'buf' for the current window.
2980 */
2981 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002982buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 return buflist_findfpos(buf)->lnum;
2985}
2986
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002988 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002991buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992{
2993 buf_T *buf;
2994 int len;
2995 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002996 int ro_char;
2997 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02002998#ifdef FEAT_TERMINAL
2999 int job_running;
3000 int job_none_open;
3001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002
3003 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
3004 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02003005#ifdef FEAT_TERMINAL
3006 job_running = term_job_running(buf->b_term);
3007 job_none_open = job_running && term_none_open(buf->b_term);
3008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02003010 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3011 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3012 || (vim_strchr(eap->arg, '+')
3013 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3014 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003015 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003016 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003017 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3018#ifdef FEAT_TERMINAL
3019 || (vim_strchr(eap->arg, 'R')
3020 && (!job_running || (job_running && job_none_open)))
3021 || (vim_strchr(eap->arg, '?')
3022 && (!job_running || (job_running && !job_none_open)))
3023 || (vim_strchr(eap->arg, 'F')
3024 && (job_running || buf->b_term == NULL))
3025#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003026 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3027 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3028 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3029 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3030 || (vim_strchr(eap->arg, '#')
3031 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003034 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 else
3036 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003037 if (message_filtered(NameBuff))
3038 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003040 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3041 : (bufIsChanged(buf) ? '+' : ' ');
3042#ifdef FEAT_TERMINAL
3043 if (term_job_running(buf->b_term))
3044 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003045 if (term_none_open(buf->b_term))
3046 ro_char = '?';
3047 else
3048 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003049 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3050 * closing, but it's not actually changed. */
3051 }
3052 else if (buf->b_term != NULL)
3053 ro_char = 'F';
3054 else
3055#endif
3056 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3057
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003058 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003059 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 buf->b_fnum,
3061 buf->b_p_bl ? ' ' : 'u',
3062 buf == curbuf ? '%' :
3063 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3064 buf->b_ml.ml_mfp == NULL ? ' ' :
3065 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003066 ro_char,
3067 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003068 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003069 if (len > IOSIZE - 20)
3070 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071
3072 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 i = 40 - vim_strsize(IObuff);
3074 do
3075 {
3076 IObuff[len++] = ' ';
3077 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003078 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3079 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003080 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 msg_outtrans(IObuff);
3082 out_flush(); /* output one line at a time */
3083 ui_breakcheck();
3084 }
3085}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086
3087/*
3088 * Get file name and line number for file 'fnum'.
3089 * Used by DoOneCmd() for translating '%' and '#'.
3090 * Used by insert_reg() and cmdline_paste() for '#' register.
3091 * Return FAIL if not found, OK for success.
3092 */
3093 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003094buflist_name_nr(
3095 int fnum,
3096 char_u **fname,
3097 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098{
3099 buf_T *buf;
3100
3101 buf = buflist_findnr(fnum);
3102 if (buf == NULL || buf->b_fname == NULL)
3103 return FAIL;
3104
3105 *fname = buf->b_fname;
3106 *lnum = buflist_findlnum(buf);
3107
3108 return OK;
3109}
3110
3111/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003112 * Set the file name for "buf"' to "ffname_arg", short file name to
3113 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 * The file name with the full path is also remembered, for when :cd is used.
3115 * Returns FAIL for failure (file name already in use by other buffer)
3116 * OK otherwise.
3117 */
3118 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003119setfname(
3120 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003121 char_u *ffname_arg,
3122 char_u *sfname_arg,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003123 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003125 char_u *ffname = ffname_arg;
3126 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003127 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003129 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130#endif
3131
3132 if (ffname == NULL || *ffname == NUL)
3133 {
3134 /* Removing the name. */
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003135 if (buf->b_sfname != buf->b_ffname)
3136 VIM_CLEAR(buf->b_sfname);
3137 else
3138 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003139 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140#ifdef UNIX
3141 st.st_dev = (dev_T)-1;
3142#endif
3143 }
3144 else
3145 {
3146 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3147 if (ffname == NULL) /* out of memory */
3148 return FAIL;
3149
3150 /*
3151 * if the file name is already used in another buffer:
3152 * - if the buffer is loaded, fail
3153 * - if the buffer is not loaded, delete it from the list
3154 */
3155#ifdef UNIX
3156 if (mch_stat((char *)ffname, &st) < 0)
3157 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003158#endif
3159 if (!(buf->b_flags & BF_DUMMY))
3160#ifdef UNIX
3161 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003163 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164#endif
3165 if (obuf != NULL && obuf != buf)
3166 {
3167 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3168 {
3169 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003170 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 vim_free(ffname);
3172 return FAIL;
3173 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003174 /* delete from the list */
3175 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 }
3177 sfname = vim_strsave(sfname);
3178 if (ffname == NULL || sfname == NULL)
3179 {
3180 vim_free(sfname);
3181 vim_free(ffname);
3182 return FAIL;
3183 }
3184#ifdef USE_FNAME_CASE
3185# ifdef USE_LONG_FNAME
3186 if (USE_LONG_FNAME)
3187# endif
3188 fname_case(sfname, 0); /* set correct case for short file name */
3189#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003190 if (buf->b_sfname != buf->b_ffname)
3191 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 buf->b_ffname = ffname;
3194 buf->b_sfname = sfname;
3195 }
3196 buf->b_fname = buf->b_sfname;
3197#ifdef UNIX
3198 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003199 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 else
3201 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003202 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 buf->b_dev = st.st_dev;
3204 buf->b_ino = st.st_ino;
3205 }
3206#endif
3207
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209
3210 buf_name_changed(buf);
3211 return OK;
3212}
3213
3214/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003215 * Crude way of changing the name of a buffer. Use with care!
3216 * The name should be relative to the current directory.
3217 */
3218 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003219buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003220{
3221 buf_T *buf;
3222
3223 buf = buflist_findnr(fnum);
3224 if (buf != NULL)
3225 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003226 if (buf->b_sfname != buf->b_ffname)
3227 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003228 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003229 buf->b_ffname = vim_strsave(name);
3230 buf->b_sfname = NULL;
3231 /* Allocate ffname and expand into full path. Also resolves .lnk
3232 * files on Win32. */
3233 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003234 buf->b_fname = buf->b_sfname;
3235 }
3236}
3237
3238/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 * Take care of what needs to be done when the name of buffer "buf" has
3240 * changed.
3241 */
3242 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003243buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
3245 /*
3246 * If the file name changed, also change the name of the swapfile
3247 */
3248 if (buf->b_ml.ml_mfp != NULL)
3249 ml_setname(buf);
3250
3251 if (curwin->w_buffer == buf)
3252 check_arg_idx(curwin); /* check file name for arg list */
3253#ifdef FEAT_TITLE
3254 maketitle(); /* set window title */
3255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 fmarks_check_names(buf); /* check named file marks */
3258 ml_timestamp(buf); /* reset timestamp */
3259}
3260
3261/*
3262 * set alternate file name for current window
3263 *
3264 * Used by do_one_cmd(), do_write() and do_ecmd().
3265 * Return the buffer.
3266 */
3267 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003268setaltfname(
3269 char_u *ffname,
3270 char_u *sfname,
3271 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272{
3273 buf_T *buf;
3274
3275 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3276 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003277 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 curwin->w_alt_fnum = buf->b_fnum;
3279 return buf;
3280}
3281
3282/*
3283 * Get alternate file name for current window.
3284 * Return NULL if there isn't any, and give error message if requested.
3285 */
3286 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003287getaltfname(
3288 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289{
3290 char_u *fname;
3291 linenr_T dummy;
3292
3293 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3294 {
3295 if (errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003296 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 return NULL;
3298 }
3299 return fname;
3300}
3301
3302/*
3303 * Add a file name to the buflist and return its number.
3304 * Uses same flags as buflist_new(), except BLN_DUMMY.
3305 *
3306 * used by qf_init(), main() and doarglist()
3307 */
3308 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003309buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310{
3311 buf_T *buf;
3312
3313 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3314 if (buf != NULL)
3315 return buf->b_fnum;
3316 return 0;
3317}
3318
3319#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3320/*
3321 * Adjust slashes in file names. Called after 'shellslash' was set.
3322 */
3323 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003324buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325{
3326 buf_T *bp;
3327
Bram Moolenaar29323592016-07-24 22:04:11 +02003328 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 {
3330 if (bp->b_ffname != NULL)
3331 slash_adjust(bp->b_ffname);
3332 if (bp->b_sfname != NULL)
3333 slash_adjust(bp->b_sfname);
3334 }
3335}
3336#endif
3337
3338/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003339 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 * Also save the local window option values.
3341 */
3342 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003343buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003345 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346}
3347
3348/*
3349 * Return TRUE if 'ffname' is not the same file as current file.
3350 * Fname must have a full path (expanded by mch_FullName()).
3351 */
3352 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003353otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354{
3355 return otherfile_buf(curbuf, ffname
3356#ifdef UNIX
3357 , NULL
3358#endif
3359 );
3360}
3361
3362 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003363otherfile_buf(
3364 buf_T *buf,
3365 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003367 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003369 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370{
3371 /* no name is different */
3372 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3373 return TRUE;
3374 if (fnamecmp(ffname, buf->b_ffname) == 0)
3375 return FALSE;
3376#ifdef UNIX
3377 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003378 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379
Bram Moolenaar8767f522016-07-01 17:17:39 +02003380 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 if (stp == NULL)
3382 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003383 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 st.st_dev = (dev_T)-1;
3385 stp = &st;
3386 }
3387 /* Use dev/ino to check if the files are the same, even when the names
3388 * are different (possible with links). Still need to compare the
3389 * name above, for when the file doesn't exist yet.
3390 * Problem: The dev/ino changes when a file is deleted (and created
3391 * again) and remains the same when renamed/moved. We don't want to
3392 * mch_stat() each buffer each time, that would be too slow. Get the
3393 * dev/ino again when they appear to match, but not when they appear
3394 * to be different: Could skip a buffer when it's actually the same
3395 * file. */
3396 if (buf_same_ino(buf, stp))
3397 {
3398 buf_setino(buf);
3399 if (buf_same_ino(buf, stp))
3400 return FALSE;
3401 }
3402 }
3403#endif
3404 return TRUE;
3405}
3406
3407#if defined(UNIX) || defined(PROTO)
3408/*
3409 * Set inode and device number for a buffer.
3410 * Must always be called when b_fname is changed!.
3411 */
3412 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003413buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003415 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416
3417 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3418 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003419 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 buf->b_dev = st.st_dev;
3421 buf->b_ino = st.st_ino;
3422 }
3423 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003424 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425}
3426
3427/*
3428 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3429 */
3430 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003431buf_same_ino(
3432 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003433 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003435 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 && stp->st_dev == buf->b_dev
3437 && stp->st_ino == buf->b_ino);
3438}
3439#endif
3440
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003441/*
3442 * Print info about the current buffer.
3443 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003445fileinfo(
3446 int fullname, /* when non-zero print full path */
3447 int shorthelp,
3448 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449{
3450 char_u *name;
3451 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003452 char *p;
3453 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003454 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455
Bram Moolenaar32526b32019-01-19 17:43:09 +01003456 buffer = (char *)alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 if (buffer == NULL)
3458 return;
3459
3460 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3461 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003462 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 p = buffer + STRLEN(buffer);
3464 }
3465 else
3466 p = buffer;
3467
3468 *p++ = '"';
3469 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003470 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 else
3472 {
3473 if (!fullname && curbuf->b_fname != NULL)
3474 name = curbuf->b_fname;
3475 else
3476 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003477 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 (int)(IOSIZE - (p - buffer)), TRUE);
3479 }
3480
Bram Moolenaar32526b32019-01-19 17:43:09 +01003481 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 curbufIsChanged() ? (shortmess(SHM_MOD)
3483 ? " [+]" : _(" [Modified]")) : " ",
3484 (curbuf->b_flags & BF_NOTEDITED)
3485#ifdef FEAT_QUICKFIX
3486 && !bt_dontwrite(curbuf)
3487#endif
3488 ? _("[Not edited]") : "",
3489 (curbuf->b_flags & BF_NEW)
3490#ifdef FEAT_QUICKFIX
3491 && !bt_dontwrite(curbuf)
3492#endif
3493 ? _("[New file]") : "",
3494 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003495 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 : _("[readonly]")) : "",
3497 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3498 || curbuf->b_p_ro) ?
3499 " " : "");
3500 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3501 * causes an overflow, thus for large numbers divide instead. */
3502 if (curwin->w_cursor.lnum > 1000000L)
3503 n = (int)(((long)curwin->w_cursor.lnum) /
3504 ((long)curbuf->b_ml.ml_line_count / 100L));
3505 else
3506 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3507 (long)curbuf->b_ml.ml_line_count);
3508 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003509 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510#ifdef FEAT_CMDL_INFO
3511 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 /* Current line and column are already on the screen -- webb */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003513 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003514 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3515 curbuf->b_ml.ml_line_count),
3516 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517#endif
3518 else
3519 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003520 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 _("line %ld of %ld --%d%%-- col "),
3522 (long)curwin->w_cursor.lnum,
3523 (long)curbuf->b_ml.ml_line_count,
3524 n);
3525 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003526 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003527 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3529 }
3530
Bram Moolenaar32526b32019-01-19 17:43:09 +01003531 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3532 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533
3534 if (dont_truncate)
3535 {
3536 /* Temporarily set msg_scroll to avoid the message being truncated.
3537 * First call msg_start() to get the message in the right place. */
3538 msg_start();
3539 n = msg_scroll;
3540 msg_scroll = TRUE;
3541 msg(buffer);
3542 msg_scroll = n;
3543 }
3544 else
3545 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003546 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 /* Need to repeat the message after redrawing when:
3549 * - When restart_edit is set (otherwise there will be a delay
3550 * before redrawing).
3551 * - When the screen was scrolled but there is no wait-return
3552 * prompt. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003553 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 }
3555
3556 vim_free(buffer);
3557}
3558
3559 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003560col_print(
3561 char_u *buf,
3562 size_t buflen,
3563 int col,
3564 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565{
3566 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003567 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003569 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570}
3571
3572#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573static char_u *lasttitle = NULL;
3574static char_u *lasticon = NULL;
3575
Bram Moolenaar84a93082018-06-16 22:58:15 +02003576/*
3577 * Put the file name in the title bar and icon of the window.
3578 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003580maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581{
3582 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003583 char_u *title_str = NULL;
3584 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 int maxlen = 0;
3586 int len;
3587 int mustset;
3588 char_u buf[IOSIZE];
3589 int off;
3590
3591 if (!redrawing())
3592 {
3593 /* Postpone updating the title when 'lazyredraw' is set. */
3594 need_maketitle = TRUE;
3595 return;
3596 }
3597
3598 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003599 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003600 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601
3602 if (p_title)
3603 {
3604 if (p_titlelen > 0)
3605 {
3606 maxlen = p_titlelen * Columns / 100;
3607 if (maxlen < 10)
3608 maxlen = 10;
3609 }
3610
Bram Moolenaar84a93082018-06-16 22:58:15 +02003611 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 if (*p_titlestring != NUL)
3613 {
3614#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003615 if (stl_syntax & STL_IN_TITLE)
3616 {
3617 int use_sandbox = FALSE;
3618 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003619
3620# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003621 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003622# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003623 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003624 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003625 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003626 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003627 if (called_emsg)
3628 set_string_option_direct((char_u *)"titlestring", -1,
3629 (char_u *)"", OPT_FREE, SID_ERROR);
3630 called_emsg |= save_called_emsg;
3631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 else
3633#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003634 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 }
3636 else
3637 {
3638 /* format: "fname + (path) (1 of 2) - VIM" */
3639
Bram Moolenaar2c666692012-09-05 13:30:40 +02003640#define SPACE_FOR_FNAME (IOSIZE - 100)
3641#define SPACE_FOR_DIR (IOSIZE - 20)
3642#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003644 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003645#ifdef FEAT_TERMINAL
3646 else if (curbuf->b_term != NULL)
3647 {
3648 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3649 SPACE_FOR_FNAME);
3650 }
3651#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 else
3653 {
3654 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003655 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 }
3658
Bram Moolenaar21554412017-07-24 21:44:43 +02003659#ifdef FEAT_TERMINAL
3660 if (curbuf->b_term == NULL)
3661#endif
3662 switch (bufIsChanged(curbuf)
3663 + (curbuf->b_p_ro * 2)
3664 + (!curbuf->b_p_ma * 4))
3665 {
3666 case 1: STRCAT(buf, " +"); break;
3667 case 2: STRCAT(buf, " ="); break;
3668 case 3: STRCAT(buf, " =+"); break;
3669 case 4:
3670 case 6: STRCAT(buf, " -"); break;
3671 case 5:
3672 case 7: STRCAT(buf, " -+"); break;
3673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674
Bram Moolenaar21554412017-07-24 21:44:43 +02003675 if (curbuf->b_fname != NULL
3676#ifdef FEAT_TERMINAL
3677 && curbuf->b_term == NULL
3678#endif
3679 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 {
3681 /* Get path of file, replace home dir with ~ */
3682 off = (int)STRLEN(buf);
3683 buf[off++] = ' ';
3684 buf[off++] = '(';
3685 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003686 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687#ifdef BACKSLASH_IN_FILENAME
3688 /* avoid "c:/name" to be reduced to "c" */
3689 if (isalpha(buf[off]) && buf[off + 1] == ':')
3690 off += 2;
3691#endif
3692 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003693 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003695 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003696 /* must be a help buffer */
3697 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003698 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003699 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003702
Bram Moolenaar2c666692012-09-05 13:30:40 +02003703 /* Translate unprintable chars and concatenate. Keep some
3704 * room for the server name. When there is no room (very long
3705 * file name) use (...). */
3706 if (off < SPACE_FOR_DIR)
3707 {
3708 p = transstr(buf + off);
3709 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3710 vim_free(p);
3711 }
3712 else
3713 {
3714 vim_strncpy(buf + off, (char_u *)"...",
3715 (size_t)(SPACE_FOR_ARGNR - off));
3716 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 STRCAT(buf, ")");
3718 }
3719
Bram Moolenaar2c666692012-09-05 13:30:40 +02003720 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721
3722#if defined(FEAT_CLIENTSERVER)
3723 if (serverName != NULL)
3724 {
3725 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003726 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 }
3728 else
3729#endif
3730 STRCAT(buf, " - VIM");
3731
3732 if (maxlen > 0)
3733 {
3734 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003735 if (vim_strsize(buf) > maxlen)
3736 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 }
3738 }
3739 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003740 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741
3742 if (p_icon)
3743 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003744 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 if (*p_iconstring != NUL)
3746 {
3747#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003748 if (stl_syntax & STL_IN_ICON)
3749 {
3750 int use_sandbox = FALSE;
3751 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003752
3753# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003754 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003755# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003756 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003757 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003758 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003759 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003760 if (called_emsg)
3761 set_string_option_direct((char_u *)"iconstring", -1,
3762 (char_u *)"", OPT_FREE, SID_ERROR);
3763 called_emsg |= save_called_emsg;
3764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 else
3766#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003767 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 }
3769 else
3770 {
3771 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003772 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003774 p = gettail(curbuf->b_ffname);
3775 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003777 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 if (len > 100)
3779 {
3780 len -= 100;
3781#ifdef FEAT_MBYTE
3782 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003783 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003785 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003787 STRCPY(icon_str, p);
3788 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 }
3790 }
3791
Bram Moolenaar84a93082018-06-16 22:58:15 +02003792 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793
3794 if (mustset)
3795 resettitle();
3796}
3797
3798/*
3799 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3800 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003801 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 */
3803 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003804value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805{
3806 if ((str == NULL) != (*last == NULL)
3807 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3808 {
3809 vim_free(*last);
3810 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003811 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003813 mch_restore_title(
3814 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003815 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003817 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003819 return TRUE;
3820 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 }
3822 return FALSE;
3823}
3824
3825/*
3826 * Put current window title back (used after calling a shell)
3827 */
3828 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003829resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830{
3831 mch_settitle(lasttitle, lasticon);
3832}
Bram Moolenaarea408852005-06-25 22:49:46 +00003833
3834# if defined(EXITFREE) || defined(PROTO)
3835 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003836free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003837{
3838 vim_free(lasttitle);
3839 vim_free(lasticon);
3840}
3841# endif
3842
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843#endif /* FEAT_TITLE */
3844
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003845#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003847 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 * Return length of string in screen cells.
3849 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003850 * Normally works for window "wp", except when working for 'tabline' then it
3851 * is "curwin".
3852 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 * Items are drawn interspersed with the text that surrounds it
3854 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3855 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3856 *
3857 * If maxwidth is not zero, the string will be filled at any middle marker
3858 * or truncated if too long, fillchar is used for all whitespace.
3859 */
3860 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003861build_stl_str_hl(
3862 win_T *wp,
3863 char_u *out, /* buffer to write into != NameBuff */
3864 size_t outlen, /* length of out[] */
3865 char_u *fmt,
3866 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3867 int fillchar,
3868 int maxwidth,
3869 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3870 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871{
Bram Moolenaar10772302019-01-20 18:25:54 +01003872 linenr_T lnum;
3873 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 char_u *p;
3875 char_u *s;
3876 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003877 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003879 win_T *save_curwin;
3880 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881#endif
3882 int empty_line;
3883 colnr_T virtcol;
3884 long l;
3885 long n;
3886 int prevchar_isflag;
3887 int prevchar_isitem;
3888 int itemisflag;
3889 int fillable;
3890 char_u *str;
3891 long num;
3892 int width;
3893 int itemcnt;
3894 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003895 int group_end_userhl;
3896 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 int groupitem[STL_MAX_ITEM];
3898 int groupdepth;
3899 struct stl_item
3900 {
3901 char_u *start;
3902 int minwid;
3903 int maxwid;
3904 enum
3905 {
3906 Normal,
3907 Empty,
3908 Group,
3909 Middle,
3910 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003911 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 Trunc
3913 } type;
3914 } item[STL_MAX_ITEM];
3915 int minwid;
3916 int maxwid;
3917 int zeropad;
3918 char_u base;
3919 char_u opt;
3920#define TMPLEN 70
3921 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003922 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003923 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003924 int save_must_redraw = must_redraw;
3925 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003926
3927#ifdef FEAT_EVAL
3928 /*
3929 * When the format starts with "%!" then evaluate it as an expression and
3930 * use the result as the actual format string.
3931 */
3932 if (fmt[0] == '%' && fmt[1] == '!')
3933 {
3934 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3935 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003936 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003937 }
3938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939
3940 if (fillchar == 0)
3941 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003942#ifdef FEAT_MBYTE
3943 /* Can't handle a multi-byte fill character yet. */
3944 else if (mb_char2len(fillchar) > 1)
3945 fillchar = '-';
3946#endif
3947
Bram Moolenaar10772302019-01-20 18:25:54 +01003948 // The cursor in windows other than the current one isn't always
3949 // up-to-date, esp. because of autocommands and timers.
3950 lnum = wp->w_cursor.lnum;
3951 if (lnum > wp->w_buffer->b_ml.ml_line_count)
3952 {
3953 lnum = wp->w_buffer->b_ml.ml_line_count;
3954 wp->w_cursor.lnum = lnum;
3955 }
3956
3957 // Get line & check if empty (cursorpos will show "0-1"). Note that
3958 // p will become invalid when getting another buffer line.
3959 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02003960 empty_line = (*p == NUL);
3961
Bram Moolenaar10772302019-01-20 18:25:54 +01003962 // Get the byte value now, in case we need it below. This is more efficient
3963 // than making a copy of the line.
3964 len = STRLEN(p);
3965 if (wp->w_cursor.col > (colnr_T)len)
3966 {
3967 // Line may have changed since checking the cursor column, or the lnum
3968 // was adjusted above.
3969 wp->w_cursor.col = (colnr_T)len;
3970#ifdef FEAT_VIRTUALEDIT
3971 wp->w_cursor.coladd = 0;
3972#endif
Bram Moolenaar567199b2013-04-24 16:52:36 +02003973 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01003974 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02003975 else
3976#ifdef FEAT_MBYTE
3977 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3978#else
3979 byteval = p[wp->w_cursor.col];
3980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981
3982 groupdepth = 0;
3983 p = out;
3984 curitem = 0;
3985 prevchar_isflag = TRUE;
3986 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003987 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003989 if (curitem == STL_MAX_ITEM)
3990 {
3991 /* There are too many items. Add the error code to the statusline
3992 * to give the user a hint about what went wrong. */
3993 if (p + 6 < out + outlen)
3994 {
3995 mch_memmove(p, " E541", (size_t)5);
3996 p += 5;
3997 }
3998 break;
3999 }
4000
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 if (*s != NUL && *s != '%')
4002 prevchar_isflag = prevchar_isitem = FALSE;
4003
4004 /*
4005 * Handle up to the next '%' or the end.
4006 */
4007 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4008 *p++ = *s++;
4009 if (*s == NUL || p + 1 >= out + outlen)
4010 break;
4011
4012 /*
4013 * Handle one '%' item.
4014 */
4015 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004016 if (*s == NUL) /* ignore trailing % */
4017 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 if (*s == '%')
4019 {
4020 if (p + 1 >= out + outlen)
4021 break;
4022 *p++ = *s++;
4023 prevchar_isflag = prevchar_isitem = FALSE;
4024 continue;
4025 }
4026 if (*s == STL_MIDDLEMARK)
4027 {
4028 s++;
4029 if (groupdepth > 0)
4030 continue;
4031 item[curitem].type = Middle;
4032 item[curitem++].start = p;
4033 continue;
4034 }
4035 if (*s == STL_TRUNCMARK)
4036 {
4037 s++;
4038 item[curitem].type = Trunc;
4039 item[curitem++].start = p;
4040 continue;
4041 }
4042 if (*s == ')')
4043 {
4044 s++;
4045 if (groupdepth < 1)
4046 continue;
4047 groupdepth--;
4048
4049 t = item[groupitem[groupdepth]].start;
4050 *p = NUL;
4051 l = vim_strsize(t);
4052 if (curitem > groupitem[groupdepth] + 1
4053 && item[groupitem[groupdepth]].minwid == 0)
4054 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004055 /* remove group if all items are empty and highlight group
4056 * doesn't change */
4057 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004058 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4059 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004060 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004061 {
4062 group_start_userhl = group_end_userhl = item[n].minwid;
4063 break;
4064 }
4065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004067 {
4068 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004070 if (item[n].type == Highlight)
4071 group_end_userhl = item[n].minwid;
4072 }
4073 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 {
4075 p = t;
4076 l = 0;
4077 }
4078 }
4079 if (l > item[groupitem[groupdepth]].maxwid)
4080 {
4081 /* truncate, remove n bytes of text at the start */
4082#ifdef FEAT_MBYTE
4083 if (has_mbyte)
4084 {
4085 /* Find the first character that should be included. */
4086 n = 0;
4087 while (l >= item[groupitem[groupdepth]].maxwid)
4088 {
4089 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004090 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 }
4092 }
4093 else
4094#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004095 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096
4097 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004098 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 p = p - n + 1;
4100#ifdef FEAT_MBYTE
4101 /* Fill up space left over by half a double-wide char. */
4102 while (++l < item[groupitem[groupdepth]].minwid)
4103 *p++ = fillchar;
4104#endif
4105
4106 /* correct the start of the items for the truncation */
4107 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4108 {
4109 item[l].start -= n;
4110 if (item[l].start < t)
4111 item[l].start = t;
4112 }
4113 }
4114 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4115 {
4116 /* fill */
4117 n = item[groupitem[groupdepth]].minwid;
4118 if (n < 0)
4119 {
4120 /* fill by appending characters */
4121 n = 0 - n;
4122 while (l++ < n && p + 1 < out + outlen)
4123 *p++ = fillchar;
4124 }
4125 else
4126 {
4127 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004128 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 l = n - l;
4130 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004131 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 p += l;
4133 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4134 item[n].start += l;
4135 for ( ; l > 0; l--)
4136 *t++ = fillchar;
4137 }
4138 }
4139 continue;
4140 }
4141 minwid = 0;
4142 maxwid = 9999;
4143 zeropad = FALSE;
4144 l = 1;
4145 if (*s == '0')
4146 {
4147 s++;
4148 zeropad = TRUE;
4149 }
4150 if (*s == '-')
4151 {
4152 s++;
4153 l = -1;
4154 }
4155 if (VIM_ISDIGIT(*s))
4156 {
4157 minwid = (int)getdigits(&s);
4158 if (minwid < 0) /* overflow */
4159 minwid = 0;
4160 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004161 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 {
4163 item[curitem].type = Highlight;
4164 item[curitem].start = p;
4165 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4166 s++;
4167 curitem++;
4168 continue;
4169 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004170 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4171 {
4172 if (*s == STL_TABCLOSENR)
4173 {
4174 if (minwid == 0)
4175 {
4176 /* %X ends the close label, go back to the previously
4177 * define tab label nr. */
4178 for (n = curitem - 1; n >= 0; --n)
4179 if (item[n].type == TabPage && item[n].minwid >= 0)
4180 {
4181 minwid = item[n].minwid;
4182 break;
4183 }
4184 }
4185 else
4186 /* close nrs are stored as negative values */
4187 minwid = - minwid;
4188 }
4189 item[curitem].type = TabPage;
4190 item[curitem].start = p;
4191 item[curitem].minwid = minwid;
4192 s++;
4193 curitem++;
4194 continue;
4195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 if (*s == '.')
4197 {
4198 s++;
4199 if (VIM_ISDIGIT(*s))
4200 {
4201 maxwid = (int)getdigits(&s);
4202 if (maxwid <= 0) /* overflow */
4203 maxwid = 50;
4204 }
4205 }
4206 minwid = (minwid > 50 ? 50 : minwid) * l;
4207 if (*s == '(')
4208 {
4209 groupitem[groupdepth++] = curitem;
4210 item[curitem].type = Group;
4211 item[curitem].start = p;
4212 item[curitem].minwid = minwid;
4213 item[curitem].maxwid = maxwid;
4214 s++;
4215 curitem++;
4216 continue;
4217 }
4218 if (vim_strchr(STL_ALL, *s) == NULL)
4219 {
4220 s++;
4221 continue;
4222 }
4223 opt = *s++;
4224
4225 /* OK - now for the real work */
4226 base = 'D';
4227 itemisflag = FALSE;
4228 fillable = TRUE;
4229 num = -1;
4230 str = NULL;
4231 switch (opt)
4232 {
4233 case STL_FILEPATH:
4234 case STL_FULLPATH:
4235 case STL_FILENAME:
4236 fillable = FALSE; /* don't change ' ' to fillchar */
4237 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004238 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 else
4240 {
4241 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004242 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4244 }
4245 trans_characters(NameBuff, MAXPATHL);
4246 if (opt != STL_FILENAME)
4247 str = NameBuff;
4248 else
4249 str = gettail(NameBuff);
4250 break;
4251
4252 case STL_VIM_EXPR: /* '{' */
4253 itemisflag = TRUE;
4254 t = p;
4255 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4256 *p++ = *s++;
4257 if (*s != '}') /* missing '}' or out of space */
4258 break;
4259 s++;
4260 *p = 0;
4261 p = t;
4262
4263#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004264 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar3cb44482018-08-05 13:22:26 +02004265 set_internal_string_var((char_u *)"g:actual_curbuf", tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004267 save_curbuf = curbuf;
4268 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 curwin = wp;
4270 curbuf = wp->w_buffer;
4271
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004272 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004274 curwin = save_curwin;
4275 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004276 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277
4278 if (str != NULL && *str != 0)
4279 {
4280 if (*skipdigits(str) == NUL)
4281 {
4282 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004283 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 itemisflag = FALSE;
4285 }
4286 }
4287#endif
4288 break;
4289
4290 case STL_LINE:
4291 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4292 ? 0L : (long)(wp->w_cursor.lnum);
4293 break;
4294
4295 case STL_NUMLINES:
4296 num = wp->w_buffer->b_ml.ml_line_count;
4297 break;
4298
4299 case STL_COLUMN:
4300 num = !(State & INSERT) && empty_line
4301 ? 0 : (int)wp->w_cursor.col + 1;
4302 break;
4303
4304 case STL_VIRTCOL:
4305 case STL_VIRTCOL_ALT:
4306 /* In list mode virtcol needs to be recomputed */
4307 virtcol = wp->w_virtcol;
4308 if (wp->w_p_list && lcs_tab1 == NUL)
4309 {
4310 wp->w_p_list = FALSE;
4311 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4312 wp->w_p_list = TRUE;
4313 }
4314 ++virtcol;
4315 /* Don't display %V if it's the same as %c. */
4316 if (opt == STL_VIRTCOL_ALT
4317 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4318 ? 0 : (int)wp->w_cursor.col + 1)))
4319 break;
4320 num = (long)virtcol;
4321 break;
4322
4323 case STL_PERCENTAGE:
4324 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4325 (long)wp->w_buffer->b_ml.ml_line_count);
4326 break;
4327
4328 case STL_ALTPERCENT:
4329 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004330 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 break;
4332
4333 case STL_ARGLISTSTAT:
4334 fillable = FALSE;
4335 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004336 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 str = tmp;
4338 break;
4339
4340 case STL_KEYMAP:
4341 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004342 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 str = tmp;
4344 break;
4345 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004346#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004347 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348#else
4349 num = 0;
4350#endif
4351 break;
4352
4353 case STL_BUFNO:
4354 num = wp->w_buffer->b_fnum;
4355 break;
4356
4357 case STL_OFFSET_X:
4358 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004359 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 case STL_OFFSET:
4361#ifdef FEAT_BYTEOFF
4362 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4363 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4364 0L : l + 1 + (!(State & INSERT) && empty_line ?
4365 0 : (int)wp->w_cursor.col);
4366#endif
4367 break;
4368
4369 case STL_BYTEVAL_X:
4370 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004371 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004373 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 if (num == NL)
4375 num = 0;
4376 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4377 num = NL;
4378 break;
4379
4380 case STL_ROFLAG:
4381 case STL_ROFLAG_ALT:
4382 itemisflag = TRUE;
4383 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004384 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 break;
4386
4387 case STL_HELPFLAG:
4388 case STL_HELPFLAG_ALT:
4389 itemisflag = TRUE;
4390 if (wp->w_buffer->b_help)
4391 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004392 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 break;
4394
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 case STL_FILETYPE:
4396 if (*wp->w_buffer->b_p_ft != NUL
4397 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4398 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004399 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4400 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 str = tmp;
4402 }
4403 break;
4404
4405 case STL_FILETYPE_ALT:
4406 itemisflag = TRUE;
4407 if (*wp->w_buffer->b_p_ft != NUL
4408 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4409 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004410 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4411 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 for (t = tmp; *t != 0; t++)
4413 *t = TOUPPER_LOC(*t);
4414 str = tmp;
4415 }
4416 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417
Bram Moolenaar4033c552017-09-16 20:54:51 +02004418#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 case STL_PREVIEWFLAG:
4420 case STL_PREVIEWFLAG_ALT:
4421 itemisflag = TRUE;
4422 if (wp->w_p_pvw)
4423 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4424 : _("[Preview]"));
4425 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004426
4427 case STL_QUICKFIX:
4428 if (bt_quickfix(wp->w_buffer))
4429 str = (char_u *)(wp->w_llist_ref
4430 ? _(msg_loclist)
4431 : _(msg_qflist));
4432 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433#endif
4434
4435 case STL_MODIFIED:
4436 case STL_MODIFIED_ALT:
4437 itemisflag = TRUE;
4438 switch ((opt == STL_MODIFIED_ALT)
4439 + bufIsChanged(wp->w_buffer) * 2
4440 + (!wp->w_buffer->b_p_ma) * 4)
4441 {
4442 case 2: str = (char_u *)"[+]"; break;
4443 case 3: str = (char_u *)",+"; break;
4444 case 4: str = (char_u *)"[-]"; break;
4445 case 5: str = (char_u *)",-"; break;
4446 case 6: str = (char_u *)"[+-]"; break;
4447 case 7: str = (char_u *)",+-"; break;
4448 }
4449 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004450
4451 case STL_HIGHLIGHT:
4452 t = s;
4453 while (*s != '#' && *s != NUL)
4454 ++s;
4455 if (*s == '#')
4456 {
4457 item[curitem].type = Highlight;
4458 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004459 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004460 curitem++;
4461 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004462 if (*s != NUL)
4463 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004464 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 }
4466
4467 item[curitem].start = p;
4468 item[curitem].type = Normal;
4469 if (str != NULL && *str)
4470 {
4471 t = str;
4472 if (itemisflag)
4473 {
4474 if ((t[0] && t[1])
4475 && ((!prevchar_isitem && *t == ',')
4476 || (prevchar_isflag && *t == ' ')))
4477 t++;
4478 prevchar_isflag = TRUE;
4479 }
4480 l = vim_strsize(t);
4481 if (l > 0)
4482 prevchar_isitem = TRUE;
4483 if (l > maxwid)
4484 {
4485 while (l >= maxwid)
4486#ifdef FEAT_MBYTE
4487 if (has_mbyte)
4488 {
4489 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004490 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 }
4492 else
4493#endif
4494 l -= byte2cells(*t++);
4495 if (p + 1 >= out + outlen)
4496 break;
4497 *p++ = '<';
4498 }
4499 if (minwid > 0)
4500 {
4501 for (; l < minwid && p + 1 < out + outlen; l++)
4502 {
4503 /* Don't put a "-" in front of a digit. */
4504 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4505 *p++ = ' ';
4506 else
4507 *p++ = fillchar;
4508 }
4509 minwid = 0;
4510 }
4511 else
4512 minwid *= -1;
4513 while (*t && p + 1 < out + outlen)
4514 {
4515 *p++ = *t++;
4516 /* Change a space by fillchar, unless fillchar is '-' and a
4517 * digit follows. */
4518 if (fillable && p[-1] == ' '
4519 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4520 p[-1] = fillchar;
4521 }
4522 for (; l < minwid && p + 1 < out + outlen; l++)
4523 *p++ = fillchar;
4524 }
4525 else if (num >= 0)
4526 {
4527 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4528 char_u nstr[20];
4529
4530 if (p + 20 >= out + outlen)
4531 break; /* not sufficient space */
4532 prevchar_isitem = TRUE;
4533 t = nstr;
4534 if (opt == STL_VIRTCOL_ALT)
4535 {
4536 *t++ = '-';
4537 minwid--;
4538 }
4539 *t++ = '%';
4540 if (zeropad)
4541 *t++ = '0';
4542 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004543 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 *t = 0;
4545
4546 for (n = num, l = 1; n >= nbase; n /= nbase)
4547 l++;
4548 if (opt == STL_VIRTCOL_ALT)
4549 l++;
4550 if (l > maxwid)
4551 {
4552 l += 2;
4553 n = l - maxwid;
4554 while (l-- > maxwid)
4555 num /= nbase;
4556 *t++ = '>';
4557 *t++ = '%';
4558 *t = t[-3];
4559 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004560 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4561 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 }
4563 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004564 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4565 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 p += STRLEN(p);
4567 }
4568 else
4569 item[curitem].type = Empty;
4570
4571 if (opt == STL_VIM_EXPR)
4572 vim_free(str);
4573
4574 if (num >= 0 || (!itemisflag && str && *str))
4575 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4576 curitem++;
4577 }
4578 *p = NUL;
4579 itemcnt = curitem;
4580
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004581#ifdef FEAT_EVAL
4582 if (usefmt != fmt)
4583 vim_free(usefmt);
4584#endif
4585
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 width = vim_strsize(out);
4587 if (maxwidth > 0 && width > maxwidth)
4588 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004589 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 l = 0;
4591 if (itemcnt == 0)
4592 s = out;
4593 else
4594 {
4595 for ( ; l < itemcnt; l++)
4596 if (item[l].type == Trunc)
4597 {
4598 /* Truncate at %< item. */
4599 s = item[l].start;
4600 break;
4601 }
4602 if (l == itemcnt)
4603 {
4604 /* No %< item, truncate first item. */
4605 s = item[0].start;
4606 l = 0;
4607 }
4608 }
4609
4610 if (width - vim_strsize(s) >= maxwidth)
4611 {
4612 /* Truncation mark is beyond max length */
4613#ifdef FEAT_MBYTE
4614 if (has_mbyte)
4615 {
4616 s = out;
4617 width = 0;
4618 for (;;)
4619 {
4620 width += ptr2cells(s);
4621 if (width >= maxwidth)
4622 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004623 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 }
4625 /* Fill up for half a double-wide character. */
4626 while (++width < maxwidth)
4627 *s++ = fillchar;
4628 }
4629 else
4630#endif
4631 s = out + maxwidth - 1;
4632 for (l = 0; l < itemcnt; l++)
4633 if (item[l].start > s)
4634 break;
4635 itemcnt = l;
4636 *s++ = '>';
4637 *s = 0;
4638 }
4639 else
4640 {
4641#ifdef FEAT_MBYTE
4642 if (has_mbyte)
4643 {
4644 n = 0;
4645 while (width >= maxwidth)
4646 {
4647 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004648 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 }
4650 }
4651 else
4652#endif
4653 n = width - maxwidth + 1;
4654 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004655 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 *s = '<';
4657
4658 /* Fill up for half a double-wide character. */
4659 while (++width < maxwidth)
4660 {
4661 s = s + STRLEN(s);
4662 *s++ = fillchar;
4663 *s = NUL;
4664 }
4665
4666 --n; /* count the '<' */
4667 for (; l < itemcnt; l++)
4668 {
4669 if (item[l].start - n >= s)
4670 item[l].start -= n;
4671 else
4672 item[l].start = s;
4673 }
4674 }
4675 width = maxwidth;
4676 }
4677 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4678 {
4679 /* Apply STL_MIDDLE if any */
4680 for (l = 0; l < itemcnt; l++)
4681 if (item[l].type == Middle)
4682 break;
4683 if (l < itemcnt)
4684 {
4685 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004686 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 for (s = item[l].start; s < p; s++)
4688 *s = fillchar;
4689 for (l++; l < itemcnt; l++)
4690 item[l].start += maxwidth - width;
4691 width = maxwidth;
4692 }
4693 }
4694
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004695 /* Store the info about highlighting. */
4696 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004698 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 for (l = 0; l < itemcnt; l++)
4700 {
4701 if (item[l].type == Highlight)
4702 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004703 sp->start = item[l].start;
4704 sp->userhl = item[l].minwid;
4705 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 }
4707 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004708 sp->start = NULL;
4709 sp->userhl = 0;
4710 }
4711
4712 /* Store the info about tab pages labels. */
4713 if (tabtab != NULL)
4714 {
4715 sp = tabtab;
4716 for (l = 0; l < itemcnt; l++)
4717 {
4718 if (item[l].type == TabPage)
4719 {
4720 sp->start = item[l].start;
4721 sp->userhl = item[l].minwid;
4722 sp++;
4723 }
4724 }
4725 sp->start = NULL;
4726 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 }
4728
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004729 /* When inside update_screen we do not want redrawing a stausline, ruler,
4730 * title, etc. to trigger another redraw, it may cause an endless loop. */
4731 if (updating_screen)
4732 {
4733 must_redraw = save_must_redraw;
4734 curwin->w_redr_type = save_redr_type;
4735 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004736
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 return width;
4738}
4739#endif /* FEAT_STL_OPT */
4740
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004741#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4742 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004744 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4745 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 */
4747 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004748get_rel_pos(
4749 win_T *wp,
4750 char_u *buf,
4751 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752{
4753 long above; /* number of lines above window */
4754 long below; /* number of lines below window */
4755
Bram Moolenaar0027c212015-01-07 13:31:52 +01004756 if (buflen < 3) /* need at least 3 chars for writing */
4757 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 above = wp->w_topline - 1;
4759#ifdef FEAT_DIFF
4760 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004761 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4762 above = 0; /* All buffer lines are displayed and there is an
4763 * indication of filler lines, that can be considered
4764 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765#endif
4766 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4767 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004768 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4769 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004771 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004773 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 ? (int)(above / ((above + below) / 100L))
4775 : (int)(above * 100L / (above + below)));
4776}
4777#endif
4778
4779/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004780 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 * Return TRUE if it was appended.
4782 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004783 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004784append_arg_number(
4785 win_T *wp,
4786 char_u *buf,
4787 int buflen,
4788 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789{
4790 char_u *p;
4791
4792 if (ARGCOUNT <= 1) /* nothing to do */
4793 return FALSE;
4794
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004795 p = buf + STRLEN(buf); /* go to the end of the buffer */
4796 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 return FALSE;
4798 *p++ = ' ';
4799 *p++ = '(';
4800 if (add_file)
4801 {
4802 STRCPY(p, "file ");
4803 p += 5;
4804 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004805 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4806 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4808 return TRUE;
4809}
4810
4811/*
4812 * If fname is not a full path, make it a full path.
4813 * Returns pointer to allocated memory (NULL for failure).
4814 */
4815 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004816fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817{
4818 /*
4819 * Force expanding the path always for Unix, because symbolic links may
4820 * mess up the full path name, even though it starts with a '/'.
4821 * Also expand when there is ".." in the file name, try to remove it,
4822 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004823 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 * For MS-Windows also expand names like "longna~1" to "longname".
4825 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004826#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 return FullName_save(fname, TRUE);
4828#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004829 if (!vim_isAbsName(fname)
4830 || strstr((char *)fname, "..") != NULL
4831 || strstr((char *)fname, "//") != NULL
4832# ifdef BACKSLASH_IN_FILENAME
4833 || strstr((char *)fname, "\\\\") != NULL
4834# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004835# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004837# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 )
4839 return FullName_save(fname, FALSE);
4840
4841 fname = vim_strsave(fname);
4842
Bram Moolenaar9b942202007-10-03 12:31:33 +00004843# ifdef USE_FNAME_CASE
4844# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004846# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 {
4848 if (fname != NULL)
4849 fname_case(fname, 0); /* set correct case for file name */
4850 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004851# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852
4853 return fname;
4854#endif
4855}
4856
4857/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004858 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
4859 * "*ffname" becomes a pointer to allocated memory (or NULL).
4860 * When resolving a link both "*sfname" and "*ffname" will point to the same
4861 * allocated memory.
4862 * The "*ffname" and "*sfname" pointer values on call will not be freed.
4863 * Note that the resulting "*ffname" pointer should be considered not allocaed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004866fname_expand(
4867 buf_T *buf UNUSED,
4868 char_u **ffname,
4869 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004871 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004873 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004875 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876
4877#ifdef FEAT_SHORTCUT
4878 if (!buf->b_p_bin)
4879 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004880 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004882 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004884 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 {
4886 vim_free(*ffname);
4887 *ffname = rfname;
4888 *sfname = rfname;
4889 }
4890 }
4891#endif
4892}
4893
4894/*
4895 * Get the file name for an argument list entry.
4896 */
4897 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004898alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899{
4900 buf_T *bp;
4901
4902 /* Use the name from the associated buffer if it exists. */
4903 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004904 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 return aep->ae_fname;
4906 return bp->b_fname;
4907}
4908
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909/*
4910 * do_arg_all(): Open up to 'count' windows, one for each argument.
4911 */
4912 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004913do_arg_all(
4914 int count,
4915 int forceit, /* hide buffers in current windows */
4916 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917{
4918 int i;
4919 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004920 char_u *opened; /* Array of weight for which args are open:
4921 * 0: not opened
4922 * 1: opened in other tab
4923 * 2: opened in curtab
4924 * 3: opened in curtab and curwin
4925 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004926 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 int use_firstwin = FALSE; /* use first window for arglist */
4928 int split_ret = OK;
4929 int p_ea_save;
4930 alist_T *alist; /* argument list to be used */
4931 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004932 tabpage_T *tpnext;
4933 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004934 win_T *old_curwin, *last_curwin;
4935 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004936 win_T *new_curwin = NULL;
4937 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938
4939 if (ARGCOUNT <= 0)
4940 {
4941 /* Don't give an error message. We don't want it when the ":all"
4942 * command is in the .vimrc. */
4943 return;
4944 }
4945 setpcmark();
4946
4947 opened_len = ARGCOUNT;
4948 opened = alloc_clear((unsigned)opened_len);
4949 if (opened == NULL)
4950 return;
4951
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004952 /* Autocommands may do anything to the argument list. Make sure it's not
4953 * freed while we are working here by "locking" it. We still have to
4954 * watch out for its size to be changed. */
4955 alist = curwin->w_alist;
4956 ++alist->al_refcount;
4957
4958 old_curwin = curwin;
4959 old_curtab = curtab;
4960
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004961# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004963# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964
4965 /*
4966 * Try closing all windows that are not in the argument list.
4967 * Also close windows that are not full width;
4968 * When 'hidden' or "forceit" set the buffer becomes hidden.
4969 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004970 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004972 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004973 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004974 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004976 tpnext = curtab->tp_next;
4977 for (wp = firstwin; wp != NULL; wp = wpnext)
4978 {
4979 wpnext = wp->w_next;
4980 buf = wp->w_buffer;
4981 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004982 || (!keep_tabs && (buf->b_nwindows > 1
4983 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004984 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004985 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004987 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004988 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004990 if (i < alist->al_ga.ga_len
4991 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4992 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4993 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004995 int weight = 1;
4996
4997 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004998 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004999 ++weight;
5000 if (old_curwin == wp)
5001 ++weight;
5002 }
5003
5004 if (weight > (int)opened[i])
5005 {
5006 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005007 if (i == 0)
5008 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005009 if (new_curwin != NULL)
5010 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005011 new_curwin = wp;
5012 new_curtab = curtab;
5013 }
5014 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005015 else if (keep_tabs)
5016 i = opened_len;
5017
5018 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005019 {
5020 /* Use the current argument list for all windows
5021 * containing a file from it. */
5022 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005023 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005024 ++wp->w_alist->al_refcount;
5025 }
5026 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
5029 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005030 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005032 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005034 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005035 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005037 /* If the buffer was changed, and we would like to hide it,
5038 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005039 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005040 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005042 bufref_T bufref;
5043
5044 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005045
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005046 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005047
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005048 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005049 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005050 {
5051 wpnext = firstwin; /* start all over... */
5052 continue;
5053 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005054 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005055 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005056 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005057 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005058 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005059 else
5060 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005061 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005062
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005063 /* check if autocommands removed the next window */
5064 if (!win_valid(wpnext))
5065 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 }
5069 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005070
5071 /* Without the ":tab" modifier only do the current tab page. */
5072 if (had_tab == 0 || tpnext == NULL)
5073 break;
5074
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005075 /* check if autocommands removed the next tab page */
5076 if (!valid_tabpage(tpnext))
5077 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005078
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005079 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 }
5081
5082 /*
5083 * Open a window for files in the argument list that don't have one.
5084 * ARGCOUNT may change while doing this, because of autocommands.
5085 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005086 if (count > opened_len || count <= 0)
5087 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5090 ++autocmd_no_enter;
5091 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005092 last_curwin = curwin;
5093 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005095 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5096 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005097 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005098 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5099 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005100
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005101 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 {
5103 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5104 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005105 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 {
5107 /* Move the already present window to below the current window */
5108 if (curwin->w_arg_idx != i)
5109 {
5110 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5111 {
5112 if (wpnext->w_arg_idx == i)
5113 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005114 if (keep_tabs)
5115 {
5116 new_curwin = wpnext;
5117 new_curtab = curtab;
5118 }
5119 else
5120 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 break;
5122 }
5123 }
5124 }
5125 }
5126 else if (split_ret == OK)
5127 {
5128 if (!use_firstwin) /* split current window */
5129 {
5130 p_ea_save = p_ea;
5131 p_ea = TRUE; /* use space from all windows */
5132 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5133 p_ea = p_ea_save;
5134 if (split_ret == FAIL)
5135 continue;
5136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 else /* first window: do autocmd for leaving this buffer */
5138 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139
5140 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005141 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 */
5143 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005144 if (i == 0)
5145 {
5146 new_curwin = curwin;
5147 new_curtab = curtab;
5148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5150 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005151 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005153 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 if (use_firstwin)
5155 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 use_firstwin = FALSE;
5157 }
5158 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005159
5160 /* When ":tab" was used open a new tab for a new window repeatedly. */
5161 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5162 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 }
5164
5165 /* Remove the "lock" on the argument list. */
5166 alist_unlink(alist);
5167
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005169
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005170 /* restore last referenced tabpage's curwin */
5171 if (last_curtab != new_curtab)
5172 {
5173 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005174 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005175 if (win_valid(last_curwin))
5176 win_enter(last_curwin, FALSE);
5177 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005178 /* to window with first arg */
5179 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005180 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005181 if (win_valid(new_curwin))
5182 win_enter(new_curwin, FALSE);
5183
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 vim_free(opened);
5186}
5187
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188/*
5189 * Open a window for a number of buffers.
5190 */
5191 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005192ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193{
5194 buf_T *buf;
5195 win_T *wp, *wpnext;
5196 int split_ret = OK;
5197 int p_ea_save;
5198 int open_wins = 0;
5199 int r;
5200 int count; /* Maximum number of windows to open. */
5201 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005202 int had_tab = cmdmod.tab;
5203 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204
5205 if (eap->addr_count == 0) /* make as many windows as possible */
5206 count = 9999;
5207 else
5208 count = eap->line2; /* make as many windows as specified */
5209 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5210 all = FALSE;
5211 else
5212 all = TRUE;
5213
5214 setpcmark();
5215
5216#ifdef FEAT_GUI
5217 need_mouse_correct = TRUE;
5218#endif
5219
5220 /*
5221 * Close superfluous windows (two windows for the same buffer).
5222 * Also close windows that are not full-width.
5223 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005224 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005225 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005226 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005228 tpnext = curtab->tp_next;
5229 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005231 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005232 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005233 || ((cmdmod.split & WSP_VERT)
5234 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005235 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005236 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005237 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005238 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005239 {
5240 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005241 wpnext = firstwin; /* just in case an autocommand does
5242 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005243 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005244 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005245 }
5246 else
5247 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005249
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005250 /* Without the ":tab" modifier only do the current tab page. */
5251 if (had_tab == 0 || tpnext == NULL)
5252 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005253 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 }
5255
5256 /*
5257 * Go through the buffer list. When a buffer doesn't have a window yet,
5258 * open one. Otherwise move the window to the right position.
5259 * Watch out for autocommands that delete buffers or windows!
5260 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5262 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5266 {
5267 /* Check if this buffer needs a window */
5268 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5269 continue;
5270
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005271 if (had_tab != 0)
5272 {
5273 /* With the ":tab" modifier don't move the window. */
5274 if (buf->b_nwindows > 0)
5275 wp = lastwin; /* buffer has a window, skip it */
5276 else
5277 wp = NULL;
5278 }
5279 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005280 {
5281 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005282 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005283 if (wp->w_buffer == buf)
5284 break;
5285 /* If the buffer already has a window, move it */
5286 if (wp != NULL)
5287 win_move_after(wp, curwin);
5288 }
5289
5290 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005292 bufref_T bufref;
5293
5294 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005295
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 /* Split the window and put the buffer in it */
5297 p_ea_save = p_ea;
5298 p_ea = TRUE; /* use space from all windows */
5299 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5300 ++open_wins;
5301 p_ea = p_ea_save;
5302 if (split_ret == FAIL)
5303 continue;
5304
5305 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005306#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 swap_exists_action = SEA_DIALOG;
5308#endif
5309 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005310 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005312 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005313#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005315#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 break;
5317 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005318#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 if (swap_exists_action == SEA_QUIT)
5320 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005321# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005322 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005323
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005324 /* Reset the error/interrupt/exception state here so that
5325 * aborting() returns FALSE when closing a window. */
5326 enter_cleanup(&cs);
5327# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005328
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005329 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 win_close(curwin, TRUE);
5331 --open_wins;
5332 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005333 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005334
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005335# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005336 /* Restore the error/interrupt/exception state if not
5337 * discarded by a new aborting error, interrupt, or uncaught
5338 * exception. */
5339 leave_cleanup(&cs);
5340# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 }
5342 else
5343 handle_swap_exists(NULL);
5344#endif
5345 }
5346
5347 ui_breakcheck();
5348 if (got_int)
5349 {
5350 (void)vgetc(); /* only break the file loading, not the rest */
5351 break;
5352 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005353#ifdef FEAT_EVAL
5354 /* Autocommands deleted the buffer or aborted script processing!!! */
5355 if (aborting())
5356 break;
5357#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005358 /* When ":tab" was used open a new tab for a new window repeatedly. */
5359 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5360 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365
5366 /*
5367 * Close superfluous windows.
5368 */
5369 for (wp = lastwin; open_wins > count; )
5370 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005371 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 if (!win_valid(wp))
5374 {
5375 /* BufWrite Autocommands made the window invalid, start over */
5376 wp = lastwin;
5377 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005378 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005380 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 --open_wins;
5382 wp = lastwin;
5383 }
5384 else
5385 {
5386 wp = wp->w_prev;
5387 if (wp == NULL)
5388 break;
5389 }
5390 }
5391}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005394static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005395
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396/*
5397 * do_modelines() - process mode lines for the current file
5398 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005399 * "flags" can be:
5400 * OPT_WINONLY only set options local to window
5401 * OPT_NOWIN don't set options local to window
5402 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 * Returns immediately if the "ml" option isn't set.
5404 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005406do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005408 linenr_T lnum;
5409 int nmlines;
5410 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411
5412 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5413 return;
5414
5415 /* Disallow recursive entry here. Can happen when executing a modeline
5416 * triggers an autocommand, which reloads modelines with a ":do". */
5417 if (entered)
5418 return;
5419
5420 ++entered;
5421 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5422 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005423 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 nmlines = 0;
5425
5426 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5427 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005428 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 nmlines = 0;
5430 --entered;
5431}
5432
5433#include "version.h" /* for version number */
5434
5435/*
5436 * chk_modeline() - check a single line for a mode string
5437 * Return FAIL if an error encountered.
5438 */
5439 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005440chk_modeline(
5441 linenr_T lnum,
5442 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443{
5444 char_u *s;
5445 char_u *e;
5446 char_u *linecopy; /* local copy of any modeline found */
5447 int prev;
5448 int vers;
5449 int end;
5450 int retval = OK;
5451 char_u *save_sourcing_name;
5452 linenr_T save_sourcing_lnum;
5453#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005454 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455#endif
5456
5457 prev = -1;
5458 for (s = ml_get(lnum); *s != NUL; ++s)
5459 {
5460 if (prev == -1 || vim_isspace(prev))
5461 {
5462 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5463 || STRNCMP(s, "vi:", (size_t)3) == 0)
5464 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005465 /* Accept both "vim" and "Vim". */
5466 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 {
5468 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5469 e = s + 4;
5470 else
5471 e = s + 3;
5472 vers = getdigits(&e);
5473 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005474 && (s[0] != 'V'
5475 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 && (s[3] == ':'
5477 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5478 || (VIM_VERSION_100 < vers && s[3] == '<')
5479 || (VIM_VERSION_100 > vers && s[3] == '>')
5480 || (VIM_VERSION_100 == vers && s[3] == '=')))
5481 break;
5482 }
5483 }
5484 prev = *s;
5485 }
5486
5487 if (*s)
5488 {
5489 do /* skip over "ex:", "vi:" or "vim:" */
5490 ++s;
5491 while (s[-1] != ':');
5492
5493 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5494 if (linecopy == NULL)
5495 return FAIL;
5496
5497 save_sourcing_lnum = sourcing_lnum;
5498 save_sourcing_name = sourcing_name;
5499 sourcing_lnum = lnum; /* prepare for emsg() */
5500 sourcing_name = (char_u *)"modelines";
5501
5502 end = FALSE;
5503 while (end == FALSE)
5504 {
5505 s = skipwhite(s);
5506 if (*s == NUL)
5507 break;
5508
5509 /*
5510 * Find end of set command: ':' or end of line.
5511 * Skip over "\:", replacing it with ":".
5512 */
5513 for (e = s; *e != ':' && *e != NUL; ++e)
5514 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005515 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 if (*e == NUL)
5517 end = TRUE;
5518
5519 /*
5520 * If there is a "set" command, require a terminating ':' and
5521 * ignore the stuff after the ':'.
5522 * "vi:set opt opt opt: foo" -- foo not interpreted
5523 * "vi:opt opt opt: foo" -- foo interpreted
5524 * Accept "se" for compatibility with Elvis.
5525 */
5526 if (STRNCMP(s, "set ", (size_t)4) == 0
5527 || STRNCMP(s, "se ", (size_t)3) == 0)
5528 {
5529 if (*e != ':') /* no terminating ':'? */
5530 break;
5531 end = TRUE;
5532 s = vim_strchr(s, ' ') + 1;
5533 }
5534 *e = NUL; /* truncate the set command */
5535
5536 if (*s != NUL) /* skip over an empty "::" */
5537 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005538 int secure_save = secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005540 save_current_sctx = current_sctx;
5541 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005542 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005543 current_sctx.sc_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544#endif
Bram Moolenaar5958f952018-11-20 04:25:21 +01005545 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82e8c922018-11-20 13:32:36 +01005546 ++secure;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005547
Bram Moolenaara3227e22006-03-08 21:32:40 +00005548 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005549
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005550 secure = secure_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005552 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553#endif
5554 if (retval == FAIL) /* stop if error found */
5555 break;
5556 }
5557 s = e + 1; /* advance to next part */
5558 }
5559
5560 sourcing_lnum = save_sourcing_lnum;
5561 sourcing_name = save_sourcing_name;
5562
5563 vim_free(linecopy);
5564 }
5565 return retval;
5566}
5567
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005568#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005570read_viminfo_bufferlist(
5571 vir_T *virp,
5572 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573{
5574 char_u *tab;
5575 linenr_T lnum;
5576 colnr_T col;
5577 buf_T *buf;
5578 char_u *sfname;
5579 char_u *xline;
5580
5581 /* Handle long line and escaped characters. */
5582 xline = viminfo_readstring(virp, 1, FALSE);
5583
5584 /* don't read in if there are files on the command-line or if writing: */
5585 if (xline != NULL && !writing && ARGCOUNT == 0
5586 && find_viminfo_parameter('%') != NULL)
5587 {
5588 /* Format is: <fname> Tab <lnum> Tab <col>.
5589 * Watch out for a Tab in the file name, work from the end. */
5590 lnum = 0;
5591 col = 0;
5592 tab = vim_strrchr(xline, '\t');
5593 if (tab != NULL)
5594 {
5595 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005596 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 tab = vim_strrchr(xline, '\t');
5598 if (tab != NULL)
5599 {
5600 *tab++ = '\0';
5601 lnum = atol((char *)tab);
5602 }
5603 }
5604
5605 /* Expand "~/" in the file name at "line + 1" to a full path.
5606 * Then try shortening it by comparing with the current directory */
5607 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005608 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609
5610 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5611 if (buf != NULL) /* just in case... */
5612 {
5613 buf->b_last_cursor.lnum = lnum;
5614 buf->b_last_cursor.col = col;
5615 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5616 }
5617 }
5618 vim_free(xline);
5619
5620 return viminfo_readline(virp);
5621}
5622
5623 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005624write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625{
5626 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005628 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005630 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631
5632 if (find_viminfo_parameter('%') == NULL)
5633 return;
5634
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005635 /* Without a number -1 is returned: do all buffers. */
5636 max_buffers = get_viminfo_parameter('%');
5637
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005639#define LINE_BUF_LEN (MAXPATHL + 40)
5640 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 if (line == NULL)
5642 return;
5643
Bram Moolenaarf740b292006-02-16 22:11:02 +00005644 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005647 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005648 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 {
5650 if (buf->b_fname == NULL
5651 || !buf->b_p_bl
5652#ifdef FEAT_QUICKFIX
5653 || bt_quickfix(buf)
5654#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005655#ifdef FEAT_TERMINAL
5656 || bt_terminal(buf)
5657#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 || removable(buf->b_ffname))
5659 continue;
5660
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005661 if (max_buffers-- == 0)
5662 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 putc('%', fp);
5664 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005665 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 (long)buf->b_last_cursor.lnum,
5667 buf->b_last_cursor.col);
5668 viminfo_writestring(fp, line);
5669 }
5670 vim_free(line);
5671}
5672#endif
5673
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005674/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005675 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5676 */
5677 int
5678bt_normal(buf_T *buf)
5679{
5680 return buf != NULL && buf->b_p_bt[0] == NUL;
5681}
5682
Bram Moolenaar113e1072019-01-20 15:30:40 +01005683#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005684/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005685 * Return TRUE if "buf" is the quickfix buffer.
5686 */
5687 int
5688bt_quickfix(buf_T *buf)
5689{
5690 return buf != NULL && buf->b_p_bt[0] == 'q';
5691}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005692#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005693
Bram Moolenaar113e1072019-01-20 15:30:40 +01005694#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005695/*
5696 * Return TRUE if "buf" is a terminal buffer.
5697 */
5698 int
5699bt_terminal(buf_T *buf)
5700{
5701 return buf != NULL && buf->b_p_bt[0] == 't';
5702}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005703#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005704
5705/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005706 * Return TRUE if "buf" is a help buffer.
5707 */
5708 int
5709bt_help(buf_T *buf)
5710{
5711 return buf != NULL && buf->b_help;
5712}
5713
5714/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005715 * Return TRUE if "buf" is a prompt buffer.
5716 */
5717 int
5718bt_prompt(buf_T *buf)
5719{
5720 return buf != NULL && buf->b_p_bt[0] == 'p';
5721}
5722
5723/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005724 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5725 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005726 */
5727 int
5728bt_nofile(buf_T *buf)
5729{
5730 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5731 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005732 || buf->b_p_bt[0] == 't'
5733 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005734}
5735
5736/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005737 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5738 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005739 */
5740 int
5741bt_dontwrite(buf_T *buf)
5742{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005743 return buf != NULL && (buf->b_p_bt[0] == 'n'
5744 || buf->b_p_bt[0] == 't'
5745 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005746}
5747
Bram Moolenaar113e1072019-01-20 15:30:40 +01005748#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005749 int
5750bt_dontwrite_msg(buf_T *buf)
5751{
5752 if (bt_dontwrite(buf))
5753 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005754 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005755 return TRUE;
5756 }
5757 return FALSE;
5758}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005759#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005760
5761/*
5762 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5763 * and 'bufhidden'.
5764 */
5765 int
5766buf_hide(buf_T *buf)
5767{
5768 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5769 switch (buf->b_p_bh[0])
5770 {
5771 case 'u': /* "unload" */
5772 case 'w': /* "wipe" */
5773 case 'd': return FALSE; /* "delete" */
5774 case 'h': return TRUE; /* "hide" */
5775 }
5776 return (p_hid || cmdmod.hide);
5777}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778
5779/*
5780 * Return special buffer name.
5781 * Returns NULL when the buffer has a normal file name.
5782 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005783 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005784buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005786#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005788 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005789 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005790 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005791
5792 /*
5793 * For location list window, w_llist_ref points to the location list.
5794 * For quickfix window, w_llist_ref is NULL.
5795 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005796 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005797 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005798 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005799 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005802
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005804 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 if (bt_nofile(buf))
5806 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005807#ifdef FEAT_TERMINAL
5808 if (buf->b_term != NULL)
5809 return term_get_status_text(buf->b_term);
5810#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005811 if (buf->b_fname != NULL)
5812 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005813#ifdef FEAT_JOB_CHANNEL
5814 if (bt_prompt(buf))
5815 return (char_u *)_("[Prompt]");
5816#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005817 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005819
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005821 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 return NULL;
5823}
5824
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005825#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005826 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5827 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005828# define SWITCH_TO_WIN
5829
5830/*
5831 * Find a window that contains "buf" and switch to it.
5832 * If there is no such window, use the current window and change "curbuf".
5833 * Caller must initialize save_curbuf to NULL.
5834 * restore_win_for_buf() MUST be called later!
5835 */
5836 void
5837switch_to_win_for_buf(
5838 buf_T *buf,
5839 win_T **save_curwinp,
5840 tabpage_T **save_curtabp,
5841 bufref_T *save_curbuf)
5842{
5843 win_T *wp;
5844 tabpage_T *tp;
5845
5846 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5847 switch_buffer(save_curbuf, buf);
5848 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5849 {
5850 restore_win(*save_curwinp, *save_curtabp, TRUE);
5851 switch_buffer(save_curbuf, buf);
5852 }
5853}
5854
5855 void
5856restore_win_for_buf(
5857 win_T *save_curwin,
5858 tabpage_T *save_curtab,
5859 bufref_T *save_curbuf)
5860{
5861 if (save_curbuf->br_buf == NULL)
5862 restore_win(save_curwin, save_curtab, TRUE);
5863 else
5864 restore_buffer(save_curbuf);
5865}
5866#endif
5867
Bram Moolenaar4033c552017-09-16 20:54:51 +02005868#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005869/*
5870 * Find a window for buffer "buf".
5871 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5872 * If not found FAIL is returned.
5873 */
5874 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005875find_win_for_buf(
5876 buf_T *buf,
5877 win_T **wp,
5878 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005879{
5880 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5881 if ((*wp)->w_buffer == buf)
5882 goto win_found;
5883 return FAIL;
5884win_found:
5885 return OK;
5886}
5887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889/*
5890 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5891 */
5892 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005893set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894{
5895 if (on != curbuf->b_p_bl)
5896 {
5897 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 if (on)
5899 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5900 else
5901 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 }
5903}
5904
5905/*
5906 * Read the file for "buf" again and check if the contents changed.
5907 * Return TRUE if it changed or this could not be checked.
5908 */
5909 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005910buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911{
5912 buf_T *newbuf;
5913 int differ = TRUE;
5914 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 exarg_T ea;
5917
5918 /* Allocate a buffer without putting it in the buffer list. */
5919 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5920 if (newbuf == NULL)
5921 return TRUE;
5922
5923 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5924 if (prep_exarg(&ea, buf) == FAIL)
5925 {
5926 wipe_buffer(newbuf, FALSE);
5927 return TRUE;
5928 }
5929
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 /* set curwin/curbuf to buf and save a few things */
5931 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932
Bram Moolenaar4770d092006-01-12 23:22:24 +00005933 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 && readfile(buf->b_ffname, buf->b_fname,
5935 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5936 &ea, READ_NEW | READ_DUMMY) == OK)
5937 {
5938 /* compare the two files line by line */
5939 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5940 {
5941 differ = FALSE;
5942 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5943 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5944 {
5945 differ = TRUE;
5946 break;
5947 }
5948 }
5949 }
5950 vim_free(ea.cmd);
5951
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952 /* restore curwin/curbuf and a few other things */
5953 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954
5955 if (curbuf != newbuf) /* safety check */
5956 wipe_buffer(newbuf, FALSE);
5957
5958 return differ;
5959}
5960
5961/*
5962 * Wipe out a buffer and decrement the last buffer number if it was used for
5963 * this buffer. Call this to wipe out a temp buffer that does not contain any
5964 * marks.
5965 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005967wipe_buffer(
5968 buf_T *buf,
5969 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970{
5971 if (buf->b_fnum == top_file_num - 1)
5972 --top_file_num;
5973
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005975 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005976
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005977 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005978
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005980 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981}