blob: 78801a8121d4dfedb0deb5792d1da20ca666fee5 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020030static void enter_buffer(buf_T *buf);
31static void buflist_getfpos(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010033static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020035static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
36static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
37static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#endif
41#ifdef FEAT_TITLE
Bram Moolenaar84a93082018-06-16 22:58:15 +020042static int value_changed(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010044static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
45static void free_buffer(buf_T *);
46static void free_buffer_stuff(buf_T *buf, int free_options);
47static void clear_wininfo(buf_T *buf);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020048#if defined(FEAT_JOB_CHANNEL) \
49 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
50static int find_win_for_buf(buf_T *buf, win_T **wp, tabpage_T **tp);
51#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef UNIX
54# define dev_T dev_t
55#else
56# define dev_T unsigned
57#endif
58
Bram Moolenaar4033c552017-09-16 20:54:51 +020059#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020060static char *msg_loclist = N_("[Location List]");
61static char *msg_qflist = N_("[Quickfix List]");
62#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010063static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020064
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020065/* Number of times free_buffer() was called. */
66static int buf_free_count = 0;
67
Bram Moolenaarc024b462019-06-08 18:07:21 +020068/*
69 * Read data from buffer for retrying.
70 */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020071 static int
72read_buffer(
73 int read_stdin, /* read file from stdin, otherwise fifo */
74 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
75 int flags) /* extra flags for readfile() */
76{
77 int retval = OK;
78 linenr_T line_count;
79
80 /*
81 * Read from the buffer which the text is already filled in and append at
82 * the end. This makes it possible to retry when 'fileformat' or
83 * 'fileencoding' was guessed wrong.
84 */
85 line_count = curbuf->b_ml.ml_line_count;
86 retval = readfile(
87 read_stdin ? NULL : curbuf->b_ffname,
88 read_stdin ? NULL : curbuf->b_fname,
89 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
90 flags | READ_BUFFER);
91 if (retval == OK)
92 {
93 /* Delete the binary lines. */
94 while (--line_count >= 0)
95 ml_delete((linenr_T)1, FALSE);
96 }
97 else
98 {
99 /* Delete the converted lines. */
100 while (curbuf->b_ml.ml_line_count > line_count)
101 ml_delete(line_count, FALSE);
102 }
103 /* Put the cursor on the first line. */
104 curwin->w_cursor.lnum = 1;
105 curwin->w_cursor.col = 0;
106
107 if (read_stdin)
108 {
109 /* Set or reset 'modified' before executing autocommands, so that
110 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100111 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200112 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100113 else if (retval == OK)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200114 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200115
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100116 if (retval == OK)
117 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100118#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100119 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100120 curbuf, &retval);
121#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100122 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200123#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100124 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200125 }
126 return retval;
127}
128
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129/*
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +0200130 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action.
131 */
132 void
133buffer_ensure_loaded(buf_T *buf)
134{
135 if (buf->b_ml.ml_mfp == NULL)
136 {
137 aco_save_T aco;
138
139 aucmd_prepbuf(&aco, buf);
140 swap_exists_action = SEA_NONE;
141 open_buffer(FALSE, NULL, 0);
142 aucmd_restbuf(&aco);
143 }
144}
145
146/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200147 * Open current buffer, that is: open the memfile and read the file into
148 * memory.
149 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 */
151 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100152open_buffer(
153 int read_stdin, /* read file from stdin */
154 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
155 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156{
157 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200158 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100159#ifdef FEAT_SYN_HL
160 long old_tw = curbuf->b_p_tw;
161#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200162 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163
164 /*
165 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
166 * When re-entering the same buffer, it should not change, because the
167 * user may have reset the flag by hand.
168 */
169 if (readonlymode && curbuf->b_ffname != NULL
170 && (curbuf->b_flags & BF_NEVERLOADED))
171 curbuf->b_p_ro = TRUE;
172
Bram Moolenaar4770d092006-01-12 23:22:24 +0000173 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 {
175 /*
176 * There MUST be a memfile, otherwise we can't do anything
177 * If we can't create one for the current buffer, take another buffer
178 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100179 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200180 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (curbuf->b_ml.ml_mfp != NULL)
182 break;
183 /*
184 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000185 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 */
187 if (curbuf == NULL)
188 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100189 emsg(_("E82: Cannot allocate any buffer, exiting..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 getout(2);
191 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100192 emsg(_("E83: Cannot allocate buffer, using other one..."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100194#ifdef FEAT_SYN_HL
195 if (old_tw != curbuf->b_p_tw)
196 check_colorcolumn(curwin);
197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 return FAIL;
199 }
200
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 /* The autocommands in readfile() may change the buffer, but only AFTER
202 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200203 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205
206 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100207 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208
209 if (curbuf->b_ffname != NULL
210#ifdef FEAT_NETBEANS_INTG
211 && netbeansReadFile
212#endif
213 )
214 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100215 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200216#ifdef UNIX
217 int save_bin = curbuf->b_p_bin;
218 int perm;
219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220#ifdef FEAT_NETBEANS_INTG
221 int oldFire = netbeansFireChanges;
222
223 netbeansFireChanges = 0;
224#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200225#ifdef UNIX
226 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200227 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200228 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200229# ifdef OPEN_CHR_FILES
230 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
231# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200232 ))
233 read_fifo = TRUE;
234 if (read_fifo)
235 curbuf->b_p_bin = TRUE;
236#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100237 if (shortmess(SHM_FILEINFO))
238 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200240 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200241 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
242#ifdef UNIX
243 if (read_fifo)
244 {
245 curbuf->b_p_bin = save_bin;
246 if (retval == OK)
247 retval = read_buffer(FALSE, eap, flags);
248 }
249#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100250 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#ifdef FEAT_NETBEANS_INTG
252 netbeansFireChanges = oldFire;
253#endif
254 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200255 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 fix_help_buffer();
257 }
258 else if (read_stdin)
259 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200260 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261
262 /*
263 * First read the text in binary mode into the buffer.
264 * Then read from that same buffer and append at the end. This makes
265 * it possible to retry when 'fileformat' or 'fileencoding' was
266 * guessed wrong.
267 */
268 curbuf->b_p_bin = TRUE;
269 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200270 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
271 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 curbuf->b_p_bin = save_bin;
273 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200274 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 }
276
277 /* if first time loading this buffer, init b_chartab[] */
278 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100279 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100281#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100282 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100283#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100284 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285
286 /*
287 * Set/reset the Changed flag first, autocmds may change the buffer.
288 * Apply the automatic commands, before processing the modelines.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200289 * So the modelines have priority over autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 */
291 /* When reading stdin, the buffer contents always needs writing, so set
292 * the changed flag. Unless in readonly mode: "ls | gview -".
293 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000294 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100296#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000299 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100301 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaarc024b462019-06-08 18:07:21 +0200302 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 save_file_ff(curbuf); /* keep this fileformat */
304
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100305 /* Set last_changedtick to avoid triggering a TextChanged autocommand right
306 * after it was added. */
307 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
308#ifdef FEAT_INS_EXPAND
309 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
310#endif
311
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 /* require "!" to overwrite the file, because it wasn't read completely */
313#ifdef FEAT_EVAL
314 if (aborting())
315#else
316 if (got_int)
317#endif
318 curbuf->b_flags |= BF_READERR;
319
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000320#ifdef FEAT_FOLDING
321 /* Need to update automatic folding. Do this before the autocommands,
322 * they may use the fold info. */
323 foldUpdateAll(curwin);
324#endif
325
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 /* need to set w_topline, unless some autocommand already did that. */
327 if (!(curwin->w_valid & VALID_TOPLINE))
328 {
329 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100330#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100334#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100336#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#endif
339
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100340 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 /*
343 * The autocommands may have changed the current buffer. Apply the
344 * modelines to the correct buffer, if it still exists and is loaded.
345 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200346 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 {
348 aco_save_T aco;
349
350 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200351 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000352 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
354
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100355#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100357 &retval);
358#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
362 /* restore curwin/curbuf and a few other things */
363 aucmd_restbuf(&aco);
364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 }
366
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 return retval;
368}
369
370/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200371 * Store "buf" in "bufref" and set the free count.
372 */
373 void
374set_bufref(bufref_T *bufref, buf_T *buf)
375{
376 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200377 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200378 bufref->br_buf_free_count = buf_free_count;
379}
380
381/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200382 * Return TRUE if "bufref->br_buf" points to the same buffer as when
383 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200384 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200385 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
386 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200387 */
388 int
389bufref_valid(bufref_T *bufref)
390{
391 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200392 ? TRUE : buf_valid(bufref->br_buf)
393 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200394}
395
396/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200398 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 */
400 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100401buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402{
403 buf_T *bp;
404
Bram Moolenaar82404332016-07-10 17:00:38 +0200405 /* Assume that we more often have a recent buffer, start with the last
406 * one. */
407 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 if (bp == buf)
409 return TRUE;
410 return FALSE;
411}
412
413/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200414 * A hash table used to quickly lookup a buffer by its number.
415 */
416static hashtab_T buf_hashtab;
417
418 static void
419buf_hashtab_add(buf_T *buf)
420{
421 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
422 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100423 emsg(_("E931: Buffer cannot be registered"));
Bram Moolenaar480778b2016-07-14 22:09:39 +0200424}
425
426 static void
427buf_hashtab_remove(buf_T *buf)
428{
429 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
430
431 if (!HASHITEM_EMPTY(hi))
432 hash_remove(&buf_hashtab, hi);
433}
434
Bram Moolenaar94f01952018-09-01 15:30:03 +0200435/*
436 * Return TRUE when buffer "buf" can be unloaded.
437 * Give an error message and return FALSE when the buffer is locked or the
438 * screen is being redrawn and the buffer is in a window.
439 */
440 static int
441can_unload_buffer(buf_T *buf)
442{
443 int can_unload = !buf->b_locked;
444
445 if (can_unload && updating_screen)
446 {
447 win_T *wp;
448
449 FOR_ALL_WINDOWS(wp)
450 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200451 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200452 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200453 break;
454 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200455 }
456 if (!can_unload)
Bram Moolenaardefa0672019-07-21 19:25:37 +0200457 semsg(_("E937: Attempt to delete a buffer that is in use: %s"),
458 buf->b_fname);
Bram Moolenaar94f01952018-09-01 15:30:03 +0200459 return can_unload;
460}
Bram Moolenaara997b452018-04-17 23:24:06 +0200461
Bram Moolenaar480778b2016-07-14 22:09:39 +0200462/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 * Close the link to a buffer.
464 * "action" is used when there is no longer a window for the buffer.
465 * It can be:
466 * 0 buffer becomes hidden
467 * DOBUF_UNLOAD buffer is unloaded
468 * DOBUF_DELETE buffer is unloaded and removed from buffer list
469 * DOBUF_WIPE buffer is unloaded and really deleted
470 * When doing all but the first one on the current buffer, the caller should
471 * get a new buffer very soon!
472 *
473 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100474 *
475 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
476 * cause there to be only one window with this buffer. e.g. when ":quit" is
477 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 */
479 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100480close_buffer(
481 win_T *win, /* if not NULL, set b_last_cursor */
482 buf_T *buf,
483 int action,
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200484 int abort_if_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100487 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200488 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100489 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200490 win_T *the_curwin = curwin;
491 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 int unload_buf = (action != 0);
493 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
494 int wipe_buf = (action == DOBUF_WIPE);
495
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200496 /*
497 * Force unloading or deleting when 'bufhidden' says so.
498 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
499 * "hide" (otherwise we could never free or delete a buffer).
500 */
501 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
502 {
503 del_buf = TRUE;
504 unload_buf = TRUE;
505 }
506 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
507 {
508 del_buf = TRUE;
509 unload_buf = TRUE;
510 wipe_buf = TRUE;
511 }
512 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
513 unload_buf = TRUE;
514
Bram Moolenaar94053a52017-08-01 21:44:33 +0200515#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200516 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200517 {
518 if (term_job_running(buf->b_term))
519 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200520 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200521 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200522 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +0200523 return;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200524
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200525 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200526 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200527 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200528 else
529 {
530 /* The job keeps running, hide the buffer. */
531 del_buf = FALSE;
532 unload_buf = FALSE;
533 }
534 }
535 else
536 {
537 /* A terminal buffer is wiped out if the job has finished. */
538 del_buf = TRUE;
539 unload_buf = TRUE;
540 wipe_buf = TRUE;
541 }
542 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200543#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200545 /* Disallow deleting the buffer when it is locked (already being closed or
546 * halfway a command that relies on it). Unloading is allowed. */
Bram Moolenaar94f01952018-09-01 15:30:03 +0200547 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200548 return;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200549
Bram Moolenaar4033c552017-09-16 20:54:51 +0200550 /* check no autocommands closed the window */
551 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 {
553 /* Set b_last_cursor when closing the last window for the buffer.
554 * Remember the last cursor position and window options of the buffer.
555 * This used to be only for the current window, but then options like
556 * 'foldmethod' may be lost with a ":only" command. */
557 if (buf->b_nwindows == 1)
558 set_last_cursor(win);
559 buflist_setfpos(buf, win,
560 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
561 win->w_cursor.col, TRUE);
562 }
563
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200564 set_bufref(&bufref, buf);
565
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 /* When the buffer is no longer in a window, trigger BufWinLeave */
567 if (buf->b_nwindows == 1)
568 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200570 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
571 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200572 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100573 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200574 /* Autocommands deleted the buffer. */
575aucmd_abort:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100576 emsg(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100578 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200579 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200580 if (abort_if_last && one_window())
581 /* Autocommands made this the only window. */
582 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583
584 /* When the buffer becomes hidden, but is not unloaded, trigger
585 * BufHidden */
586 if (!unload_buf)
587 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200588 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200589 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
590 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200591 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200592 /* Autocommands deleted the buffer. */
593 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200594 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200595 if (abort_if_last && one_window())
596 /* Autocommands made this the only window. */
597 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100599#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 if (aborting()) /* autocmds may abort script processing */
601 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100602#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200604
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200605 /* If the buffer was in curwin and the window has changed, go back to that
606 * window, if it still exists. This avoids that ":edit x" triggering a
607 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
608 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
609 {
610 block_autocmds();
611 goto_tabpage_win(the_curtab, the_curwin);
612 unblock_autocmds();
613 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200614
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
617 /* decrease the link count from windows (unless not in any window) */
618 if (buf->b_nwindows > 0)
619 --buf->b_nwindows;
620
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100621#ifdef FEAT_DIFF
622 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100623 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100624#endif
625
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 /* Return when a window is displaying the buffer or when it's not
627 * unloaded. */
628 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630
631 /* Always remove the buffer when there is no file name. */
632 if (buf->b_ffname == NULL)
633 del_buf = TRUE;
634
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200635 /* When closing the current buffer stop Visual mode before freeing
636 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200637 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200638#if defined(EXITFREE)
639 && !entered_free_all_mem
640#endif
641 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200642 end_visual_mode();
643
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 /*
645 * Free all things allocated for this buffer.
646 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
647 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 /* Remember if we are closing the current buffer. Restore the number of
649 * windows, so that autocommands in buf_freeall() don't get confused. */
650 is_curbuf = (buf == curbuf);
651 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200653 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200656 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100658#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000659 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 /*
664 * It's possible that autocommands change curbuf to the one being deleted.
665 * This might cause the previous curbuf to be deleted unexpectedly. But
666 * in some cases it's OK to delete the curbuf, because a new one is
667 * obtained anyway. Therefore only return if curbuf changed to the
668 * deleted buffer.
669 */
670 if (buf == curbuf && !is_curbuf)
671 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200672
Bram Moolenaar4033c552017-09-16 20:54:51 +0200673 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200674 win->w_buffer = NULL; /* make sure we don't use the buffer now */
675
676 /* Autocommands may have opened or closed windows for this buffer.
677 * Decrement the count for the close we do here. */
678 if (buf->b_nwindows > 0)
679 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 /*
682 * Remove the buffer from the list.
683 */
684 if (wipe_buf)
685 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +0200686 if (buf->b_sfname != buf->b_ffname)
687 VIM_CLEAR(buf->b_sfname);
688 else
689 buf->b_sfname = NULL;
690 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 if (buf->b_prev == NULL)
692 firstbuf = buf->b_next;
693 else
694 buf->b_prev->b_next = buf->b_next;
695 if (buf->b_next == NULL)
696 lastbuf = buf->b_prev;
697 else
698 buf->b_next->b_prev = buf->b_prev;
699 free_buffer(buf);
700 }
701 else
702 {
703 if (del_buf)
704 {
705 /* Free all internal variables and reset option values, to make
706 * ":bdel" compatible with Vim 5.7. */
707 free_buffer_stuff(buf, TRUE);
708
709 /* Make it look like a new buffer. */
710 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
711
712 /* Init the options when loaded again. */
713 buf->b_p_initialized = FALSE;
714 }
715 buf_clear_file(buf);
716 if (del_buf)
717 buf->b_p_bl = FALSE;
718 }
719}
720
721/*
722 * Make buffer not contain a file.
723 */
724 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100725buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
727 buf->b_ml.ml_line_count = 1;
Bram Moolenaarc024b462019-06-08 18:07:21 +0200728 unchanged(buf, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 buf->b_p_eol = TRUE;
731 buf->b_start_eol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000733 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 buf->b_ml.ml_mfp = NULL;
735 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
736#ifdef FEAT_NETBEANS_INTG
737 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738#endif
739}
740
741/*
742 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200743 * the file. Careful: get here with "curwin" NULL when exiting.
744 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200745 * BFA_DEL buffer is going to be deleted
746 * BFA_WIPE buffer is going to be wiped out
747 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100750buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200753 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200754 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200755 win_T *the_curwin = curwin;
756 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757
Bram Moolenaar5a497892016-09-03 16:29:04 +0200758 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200759 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200760 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200761 if (buf->b_ml.ml_mfp != NULL)
762 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200763 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
764 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200765 && !bufref_valid(&bufref))
766 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200767 return;
768 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200769 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200771 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
772 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200773 && !bufref_valid(&bufref))
774 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 return;
776 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200777 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200779 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
780 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200781 && !bufref_valid(&bufref))
782 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 return;
784 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200785 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200786
Bram Moolenaar5a497892016-09-03 16:29:04 +0200787 /* If the buffer was in curwin and the window has changed, go back to that
788 * window, if it still exists. This avoids that ":edit x" triggering a
789 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
790 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
791 {
792 block_autocmds();
793 goto_tabpage_win(the_curtab, the_curwin);
794 unblock_autocmds();
795 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200796
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100797#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000798 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100800#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801
802 /*
803 * It's possible that autocommands change curbuf to the one being deleted.
804 * This might cause curbuf to be deleted unexpectedly. But in some cases
805 * it's OK to delete the curbuf, because a new one is obtained anyway.
806 * Therefore only return if curbuf changed to the deleted buffer.
807 */
808 if (buf == curbuf && !is_curbuf)
809 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810#ifdef FEAT_DIFF
811 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
812#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200813#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100814 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200815 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100816 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200817#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000818
819#ifdef FEAT_FOLDING
820 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000821 {
822 win_T *win;
823 tabpage_T *tp;
824
825 FOR_ALL_TAB_WINDOWS(tp, win)
826 if (win->w_buffer == buf)
827 clearFolding(win);
828 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000829#endif
830
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#ifdef FEAT_TCL
832 tcl_buffer_free(buf);
833#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 ml_close(buf, TRUE); /* close and delete the memline/memfile */
835 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200836 if ((flags & BFA_KEEP_UNDO) == 0)
837 {
838 u_blockfree(buf); /* free the memory allocated for undo */
839 u_clearall(buf); /* reset all undo information */
840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200842 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100844#ifdef FEAT_TEXT_PROP
845 clear_buf_prop_types(buf);
846#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000847 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848}
849
850/*
851 * Free a buffer structure and the things it contains related to the buffer
852 * itself (not the file, that must have been done already).
853 */
854 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100855free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200857 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200859#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200860 /* b:changedtick uses an item in buf_T, remove it now */
861 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200862 unref_var_dict(buf->b_vars);
863#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200864#ifdef FEAT_LUA
865 lua_buffer_free(buf);
866#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000867#ifdef FEAT_MZSCHEME
868 mzscheme_buffer_free(buf);
869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870#ifdef FEAT_PERL
871 perl_buf_free(buf);
872#endif
873#ifdef FEAT_PYTHON
874 python_buffer_free(buf);
875#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200876#ifdef FEAT_PYTHON3
877 python3_buffer_free(buf);
878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#ifdef FEAT_RUBY
880 ruby_buffer_free(buf);
881#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200882#ifdef FEAT_JOB_CHANNEL
883 channel_buffer_free(buf);
884#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200885#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200886 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200887#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200888#ifdef FEAT_JOB_CHANNEL
889 vim_free(buf->b_prompt_text);
Bram Moolenaar3a97bb32019-06-01 13:28:35 +0200890 free_callback(&buf->b_prompt_callback);
Bram Moolenaarf2732452018-06-03 14:47:35 +0200891#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200892
893 buf_hashtab_remove(buf);
894
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200895 aubuflocal_remove(buf);
896
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200897 if (autocmd_busy)
898 {
899 /* Do not free the buffer structure while autocommands are executing,
900 * it's still needed. Free it when autocmd_busy is reset. */
901 buf->b_next = au_pending_free_buf;
902 au_pending_free_buf = buf;
903 }
904 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200905 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906}
907
908/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100909 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100910 */
911 static void
912init_changedtick(buf_T *buf)
913{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100914 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100915
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100916 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
917 di->di_tv.v_type = VAR_NUMBER;
918 di->di_tv.v_lock = VAR_FIXED;
919 di->di_tv.vval.v_number = 0;
920
Bram Moolenaar92769c32017-02-25 15:41:37 +0100921#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100922 STRCPY(buf->b_ct_di.di_key, "changedtick");
923 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100924#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100925}
926
927/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
929 */
930 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100931free_buffer_stuff(
932 buf_T *buf,
933 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934{
935 if (free_options)
936 {
937 clear_wininfo(buf); /* including window-local options */
938 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200939#ifdef FEAT_SPELL
940 ga_clear(&buf->b_s.b_langp);
941#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 }
943#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100944 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100945 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100946
947 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
948 hash_init(&buf->b_vars->dv_hashtab);
949 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100950 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952#endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200953 uc_clear(&buf->b_ucmds); // clear local user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954#ifdef FEAT_SIGNS
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200955 buf_delete_signs(buf, (char_u *)"*"); // delete any signs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000957#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200958 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000959#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
961 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
Bram Moolenaard23a8232018-02-10 18:45:26 +0100962 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963}
964
965/*
966 * Free the b_wininfo list for buffer "buf".
967 */
968 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100969clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
971 wininfo_T *wip;
972
973 while (buf->b_wininfo != NULL)
974 {
975 wip = buf->b_wininfo;
976 buf->b_wininfo = wip->wi_next;
977 if (wip->wi_optset)
978 {
979 clear_winopt(&wip->wi_opt);
980#ifdef FEAT_FOLDING
981 deleteFoldRecurse(&wip->wi_folds);
982#endif
983 }
984 vim_free(wip);
985 }
986}
987
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988/*
989 * Go to another buffer. Handles the result of the ATTENTION dialog.
990 */
991 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100992goto_buffer(
993 exarg_T *eap,
994 int start,
995 int dir,
996 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200998 bufref_T old_curbuf;
999
1000 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001
1002 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1004 start, dir, count, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1006 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001007#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001008 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001009
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001010 /* Reset the error/interrupt/exception state here so that
1011 * aborting() returns FALSE when closing a window. */
1012 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001013#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001014
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001015 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 win_close(curwin, TRUE);
1017 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001018 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001019
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001020#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001021 /* Restore the error/interrupt/exception state if not discarded by a
1022 * new aborting error, interrupt, or uncaught exception. */
1023 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001024#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 }
1026 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001027 handle_swap_exists(&old_curbuf);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001028}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030/*
1031 * Handle the situation of swap_exists_action being set.
1032 * It is allowed for "old_curbuf" to be NULL or invalid.
1033 */
1034 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001035handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036{
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001037#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001038 cleanup_T cs;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001039#endif
1040#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001041 long old_tw = curbuf->b_p_tw;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001042#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001043 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001044
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 if (swap_exists_action == SEA_QUIT)
1046 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001047#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001048 /* Reset the error/interrupt/exception state here so that
1049 * aborting() returns FALSE when closing a buffer. */
1050 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001051#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001052
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 /* User selected Quit at ATTENTION prompt. Go back to previous
1054 * buffer. If that buffer is gone or the same as the current one,
1055 * open a new, empty buffer. */
1056 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001057 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001058 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001059 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1060 || old_curbuf->br_buf == curbuf)
1061 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1062 else
1063 buf = old_curbuf->br_buf;
1064 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001065 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001066 int old_msg_silent = msg_silent;
1067
1068 if (shortmess(SHM_FILEINFO))
1069 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001070 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001071 // restore msg_silent, so that the command line will be shown
1072 msg_silent = old_msg_silent;
1073
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001074#ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001075 if (old_tw != curbuf->b_p_tw)
1076 check_colorcolumn(curwin);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001077#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001080
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001081#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001082 /* Restore the error/interrupt/exception state if not discarded by a
1083 * new aborting error, interrupt, or uncaught exception. */
1084 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001085#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 }
1087 else if (swap_exists_action == SEA_RECOVER)
1088 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001089#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001090 /* Reset the error/interrupt/exception state here so that
1091 * aborting() returns FALSE when closing a buffer. */
1092 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001093#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001094
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 /* User selected Recover at ATTENTION prompt. */
1096 msg_scroll = TRUE;
Bram Moolenaar99499b12019-05-23 21:35:48 +02001097 ml_recover(FALSE);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001098 msg_puts("\n"); /* don't overwrite the last message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001100 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001101
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001102#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001103 /* Restore the error/interrupt/exception state if not discarded by a
1104 * new aborting error, interrupt, or uncaught exception. */
1105 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001106#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 }
1108 swap_exists_action = SEA_NONE;
1109}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111/*
1112 * do_bufdel() - delete or unload buffer(s)
1113 *
1114 * addr_count == 0: ":bdel" - delete current buffer
1115 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1116 * buffer "end_bnr", then any other arguments.
1117 * addr_count == 2: ":N,N bdel" - delete buffers in range
1118 *
1119 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1120 * DOBUF_DEL (":bdel")
1121 *
1122 * Returns error message or NULL
1123 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001124 char *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001125do_bufdel(
1126 int command,
1127 char_u *arg, /* pointer to extra arguments */
1128 int addr_count,
1129 int start_bnr, /* first buffer number in a range */
1130 int end_bnr, /* buffer nr or last buffer nr in a range */
1131 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132{
1133 int do_current = 0; /* delete current buffer? */
1134 int deleted = 0; /* number of buffers deleted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001135 char *errormsg = NULL; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 int bnr; /* buffer number */
1137 char_u *p;
1138
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 if (addr_count == 0)
1140 {
1141 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1142 }
1143 else
1144 {
1145 if (addr_count == 2)
1146 {
1147 if (*arg) /* both range and argument is not allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001148 return _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 bnr = start_bnr;
1150 }
1151 else /* addr_count == 1 */
1152 bnr = end_bnr;
1153
1154 for ( ;!got_int; ui_breakcheck())
1155 {
1156 /*
1157 * delete the current buffer last, otherwise when the
1158 * current buffer is deleted, the next buffer becomes
1159 * the current one and will be loaded, which may then
1160 * also be deleted, etc.
1161 */
1162 if (bnr == curbuf->b_fnum)
1163 do_current = bnr;
1164 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1165 forceit) == OK)
1166 ++deleted;
1167
1168 /*
1169 * find next buffer number to delete/unload
1170 */
1171 if (addr_count == 2)
1172 {
1173 if (++bnr > end_bnr)
1174 break;
1175 }
1176 else /* addr_count == 1 */
1177 {
1178 arg = skipwhite(arg);
1179 if (*arg == NUL)
1180 break;
1181 if (!VIM_ISDIGIT(*arg))
1182 {
1183 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001184 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1185 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 if (bnr < 0) /* failed */
1187 break;
1188 arg = p;
1189 }
1190 else
1191 bnr = getdigits(&arg);
1192 }
1193 }
1194 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1195 FORWARD, do_current, forceit) == OK)
1196 ++deleted;
1197
1198 if (deleted == 0)
1199 {
1200 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001201 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001203 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001205 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001206 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 }
1208 else if (deleted >= p_report)
1209 {
1210 if (command == DOBUF_UNLOAD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001211 smsg(NGETTEXT("%d buffer unloaded",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001212 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 else if (command == DOBUF_DEL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001214 smsg(NGETTEXT("%d buffer deleted",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001215 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001217 smsg(NGETTEXT("%d buffer wiped out",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001218 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 }
1220 }
1221
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222
1223 return errormsg;
1224}
1225
Bram Moolenaara02471e2014-01-10 16:43:14 +01001226/*
1227 * Make the current buffer empty.
1228 * Used when it is wiped out and it's the last buffer.
1229 */
1230 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001231empty_curbuf(
1232 int close_others,
1233 int forceit,
1234 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001235{
1236 int retval;
1237 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001238 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001239
1240 if (action == DOBUF_UNLOAD)
1241 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001242 emsg(_("E90: Cannot unload last buffer"));
Bram Moolenaara02471e2014-01-10 16:43:14 +01001243 return FAIL;
1244 }
1245
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001246 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001247 if (close_others)
1248 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001249 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001250
1251 setpcmark();
1252 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1253 forceit ? ECMD_FORCEIT : 0, curwin);
1254
1255 /*
1256 * do_ecmd() may create a new buffer, then we have to delete
1257 * the old one. But do_ecmd() may have done that already, check
1258 * if the buffer still exists.
1259 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001260 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001261 close_buffer(NULL, buf, action, FALSE);
1262 if (!close_others)
1263 need_fileinfo = FALSE;
1264 return retval;
1265}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001266
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267/*
1268 * Implementation of the commands for the buffer list.
1269 *
1270 * action == DOBUF_GOTO go to specified buffer
1271 * action == DOBUF_SPLIT split window and go to specified buffer
1272 * action == DOBUF_UNLOAD unload specified buffer(s)
1273 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1274 * action == DOBUF_WIPE delete specified buffer(s) really
1275 *
1276 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1277 * start == DOBUF_FIRST go to "count" buffer from first buffer
1278 * start == DOBUF_LAST go to "count" buffer from last buffer
1279 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1280 *
1281 * Return FAIL or OK.
1282 */
1283 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001284do_buffer(
1285 int action,
1286 int start,
1287 int dir, /* FORWARD or BACKWARD */
1288 int count, /* buffer number or number of buffers */
1289 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290{
1291 buf_T *buf;
1292 buf_T *bp;
1293 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1294 || action == DOBUF_WIPE);
1295
1296 switch (start)
1297 {
1298 case DOBUF_FIRST: buf = firstbuf; break;
1299 case DOBUF_LAST: buf = lastbuf; break;
1300 default: buf = curbuf; break;
1301 }
1302 if (start == DOBUF_MOD) /* find next modified buffer */
1303 {
1304 while (count-- > 0)
1305 {
1306 do
1307 {
1308 buf = buf->b_next;
1309 if (buf == NULL)
1310 buf = firstbuf;
1311 }
1312 while (buf != curbuf && !bufIsChanged(buf));
1313 }
1314 if (!bufIsChanged(buf))
1315 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001316 emsg(_("E84: No modified buffer found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 return FAIL;
1318 }
1319 }
1320 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1321 {
1322 while (buf != NULL && buf->b_fnum != count)
1323 buf = buf->b_next;
1324 }
1325 else
1326 {
1327 bp = NULL;
1328 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1329 {
1330 /* remember the buffer where we start, we come back there when all
1331 * buffers are unlisted. */
1332 if (bp == NULL)
1333 bp = buf;
1334 if (dir == FORWARD)
1335 {
1336 buf = buf->b_next;
1337 if (buf == NULL)
1338 buf = firstbuf;
1339 }
1340 else
1341 {
1342 buf = buf->b_prev;
1343 if (buf == NULL)
1344 buf = lastbuf;
1345 }
1346 /* don't count unlisted buffers */
1347 if (unload || buf->b_p_bl)
1348 {
1349 --count;
1350 bp = NULL; /* use this buffer as new starting point */
1351 }
1352 if (bp == buf)
1353 {
1354 /* back where we started, didn't find anything. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001355 emsg(_("E85: There is no listed buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 return FAIL;
1357 }
1358 }
1359 }
1360
1361 if (buf == NULL) /* could not find it */
1362 {
1363 if (start == DOBUF_FIRST)
1364 {
1365 /* don't warn when deleting */
1366 if (!unload)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001367 semsg(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 }
1369 else if (dir == FORWARD)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001370 emsg(_("E87: Cannot go beyond last buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001372 emsg(_("E88: Cannot go before first buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 return FAIL;
1374 }
1375
1376#ifdef FEAT_GUI
1377 need_mouse_correct = TRUE;
1378#endif
1379
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 /*
1381 * delete buffer buf from memory and/or the list
1382 */
1383 if (unload)
1384 {
1385 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001386 bufref_T bufref;
1387
Bram Moolenaar94f01952018-09-01 15:30:03 +02001388 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001389 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001390
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001391 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392
1393 /* When unloading or deleting a buffer that's already unloaded and
1394 * unlisted: fail silently. */
1395 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1396 return FAIL;
1397
1398 if (!forceit && bufIsChanged(buf))
1399 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001400#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 if ((p_confirm || cmdmod.confirm) && p_write)
1402 {
1403 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001404 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 /* Autocommand deleted buffer, oops! It's not changed
1406 * now. */
1407 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001408 /* If it's still changed fail silently, the dialog already
1409 * mentioned why it fails. */
1410 if (bufIsChanged(buf))
1411 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001413 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001416 semsg(_("E89: No write since last change for buffer %d (add ! to override)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 buf->b_fnum);
1418 return FAIL;
1419 }
1420 }
1421
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001422 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001423 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001424 end_visual_mode();
1425
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 /*
1427 * If deleting the last (listed) buffer, make it empty.
1428 * The last (listed) buffer cannot be unloaded.
1429 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001430 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 if (bp->b_p_bl && bp != buf)
1432 break;
1433 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001434 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 /*
1437 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001438 * (unless it's the only window). Repeat this so long as we end up in
1439 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001441 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001442 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001443 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001444 {
1445 if (win_close(curwin, FALSE) == FAIL)
1446 break;
1447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
1449 /*
1450 * If the buffer to be deleted is not the current one, delete it here.
1451 */
1452 if (buf != curbuf)
1453 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001454 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001455 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001456 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 return OK;
1458 }
1459
1460 /*
1461 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001462 * There should be another, otherwise it would have been handled
1463 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001464 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 * Then prefer the buffer we most recently visited.
1466 * Else try to find one that is loaded, after the current buffer,
1467 * then before the current buffer.
1468 * Finally use any buffer.
1469 */
1470 buf = NULL; /* selected buffer */
1471 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001472 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1473 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001475 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 {
1477 int jumpidx;
1478
1479 jumpidx = curwin->w_jumplistidx - 1;
1480 if (jumpidx < 0)
1481 jumpidx = curwin->w_jumplistlen - 1;
1482
1483 forward = jumpidx;
1484 while (jumpidx != curwin->w_jumplistidx)
1485 {
1486 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1487 if (buf != NULL)
1488 {
1489 if (buf == curbuf || !buf->b_p_bl)
1490 buf = NULL; /* skip current and unlisted bufs */
1491 else if (buf->b_ml.ml_mfp == NULL)
1492 {
1493 /* skip unloaded buf, but may keep it for later */
1494 if (bp == NULL)
1495 bp = buf;
1496 buf = NULL;
1497 }
1498 }
1499 if (buf != NULL) /* found a valid buffer: stop searching */
1500 break;
1501 /* advance to older entry in jump list */
1502 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1503 break;
1504 if (--jumpidx < 0)
1505 jumpidx = curwin->w_jumplistlen - 1;
1506 if (jumpidx == forward) /* List exhausted for sure */
1507 break;
1508 }
1509 }
1510#endif
1511
1512 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1513 {
1514 forward = TRUE;
1515 buf = curbuf->b_next;
1516 for (;;)
1517 {
1518 if (buf == NULL)
1519 {
1520 if (!forward) /* tried both directions */
1521 break;
1522 buf = curbuf->b_prev;
1523 forward = FALSE;
1524 continue;
1525 }
1526 /* in non-help buffer, try to skip help buffers, and vv */
1527 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1528 {
1529 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1530 break;
1531 if (bp == NULL) /* remember unloaded buf for later */
1532 bp = buf;
1533 }
1534 if (forward)
1535 buf = buf->b_next;
1536 else
1537 buf = buf->b_prev;
1538 }
1539 }
1540 if (buf == NULL) /* No loaded buffer, use unloaded one */
1541 buf = bp;
1542 if (buf == NULL) /* No loaded buffer, find listed one */
1543 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001544 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (buf->b_p_bl && buf != curbuf)
1546 break;
1547 }
1548 if (buf == NULL) /* Still no buffer, just take one */
1549 {
1550 if (curbuf->b_next != NULL)
1551 buf = curbuf->b_next;
1552 else
1553 buf = curbuf->b_prev;
1554 }
1555 }
1556
Bram Moolenaara02471e2014-01-10 16:43:14 +01001557 if (buf == NULL)
1558 {
1559 /* Autocommands must have wiped out all other buffers. Only option
1560 * now is to make the current buffer empty. */
1561 return empty_curbuf(FALSE, forceit, action);
1562 }
1563
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 /*
1565 * make buf current buffer
1566 */
1567 if (action == DOBUF_SPLIT) /* split window first */
1568 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001569 /* If 'switchbuf' contains "useopen": jump to first window containing
1570 * "buf" if one exists */
1571 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001572 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001573 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001574 * page containing "buf" if one exists */
1575 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 return OK;
1577 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 return FAIL;
1579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580
1581 /* go to current buffer - nothing to do */
1582 if (buf == curbuf)
1583 return OK;
1584
1585 /*
1586 * Check if the current buffer may be abandoned.
1587 */
1588 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1589 {
1590#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1591 if ((p_confirm || cmdmod.confirm) && p_write)
1592 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001593 bufref_T bufref;
1594
1595 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001597 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 /* Autocommand deleted buffer, oops! */
1599 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 }
1601 if (bufIsChanged(curbuf))
1602#endif
1603 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001604 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 return FAIL;
1606 }
1607 }
1608
1609 /* Go to the other buffer. */
1610 set_curbuf(buf, action);
1611
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001613 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001615#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 if (aborting()) /* autocmds may abort script processing */
1617 return FAIL;
1618#endif
1619
1620 return OK;
1621}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622
1623/*
1624 * Set current buffer to "buf". Executes autocommands and closes current
1625 * buffer. "action" tells how to close the current buffer:
1626 * DOBUF_GOTO free or hide it
1627 * DOBUF_SPLIT nothing
1628 * DOBUF_UNLOAD unload it
1629 * DOBUF_DEL delete it
1630 * DOBUF_WIPE wipe it out
1631 */
1632 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001633set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634{
1635 buf_T *prevbuf;
1636 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1637 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001638#ifdef FEAT_SYN_HL
1639 long old_tw = curbuf->b_p_tw;
1640#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001641 bufref_T newbufref;
1642 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643
1644 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001645 if (!cmdmod.keepalt)
1646 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001647 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 /* Don't restart Select mode after switching to another buffer. */
1650 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001652 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1653 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001655 set_bufref(&prevbufref, prevbuf);
1656 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001658 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1659 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001660 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001661 || (bufref_valid(&prevbufref)
1662 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001663#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001664 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001666 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001668#ifdef FEAT_SYN_HL
1669 if (prevbuf == curwin->w_buffer)
1670 reset_synblock(curwin);
1671#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001673 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001674#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001675 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001677 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001679 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001680 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001681 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001682 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1684 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001685 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001686 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001687 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001688 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001689 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001692 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001693 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001694 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1695 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001696#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001697 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001699 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001700 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001702#ifdef FEAT_SYN_HL
1703 if (old_tw != curbuf->b_p_tw)
1704 check_colorcolumn(curwin);
1705#endif
1706 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707}
1708
1709/*
1710 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001711 * Old curbuf must have been abandoned already! This also means "curbuf" may
1712 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001714 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001715enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716{
1717 /* Copy buffer and window local option values. Not for a help buffer. */
1718 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1719 if (!buf->b_help)
1720 get_winopts(buf);
1721#ifdef FEAT_FOLDING
1722 else
1723 /* Remove all folds in the window. */
1724 clearFolding(curwin);
1725 foldUpdateAll(curwin); /* update folds (later). */
1726#endif
1727
1728 /* Get the buffer in the current window. */
1729 curwin->w_buffer = buf;
1730 curbuf = buf;
1731 ++curbuf->b_nwindows;
1732
1733#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001734 if (curwin->w_p_diff)
1735 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736#endif
1737
Bram Moolenaara971b822011-09-14 14:43:25 +02001738#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001739 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001740#endif
1741
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 /* Cursor on first line by default. */
1743 curwin->w_cursor.lnum = 1;
1744 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001747 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001749 /* mark cursor position as being invalid */
1750 curwin->w_valid = 0;
1751
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001752 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1753 curbuf->b_last_cursor.col, TRUE);
1754
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 /* Make sure the buffer is loaded. */
1756 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001757 {
1758 /* If there is no filetype, allow for detecting one. Esp. useful for
1759 * ":ball" used in a autocommand. If there already is a filetype we
1760 * might prefer to keep it. */
1761 if (*curbuf->b_p_ft == NUL)
1762 did_filetype = FALSE;
1763
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001764 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 else
1767 {
Bram Moolenaareda65222019-05-16 20:29:44 +02001768 if (!msg_silent && !shortmess(SHM_FILEINFO))
1769 need_fileinfo = TRUE; // display file info after redraw
1770
1771 // check if file changed
1772 (void)buf_check_timestamp(curbuf, FALSE);
1773
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001775#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1779 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 }
1781
1782 /* If autocommands did not change the cursor position, restore cursor lnum
1783 * and possibly cursor col. */
1784 if (curwin->w_cursor.lnum == 1 && inindent(0))
1785 buflist_getfpos();
1786
1787 check_arg_idx(curwin); /* check for valid arg_idx */
1788#ifdef FEAT_TITLE
1789 maketitle();
1790#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001791 /* when autocmds didn't change it */
1792 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1794
Bram Moolenaar009b2592004-10-24 19:18:58 +00001795#ifdef FEAT_NETBEANS_INTG
1796 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001797 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001798#endif
1799
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001800 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001801 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802
1803#ifdef FEAT_KEYMAP
1804 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001805 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001807#ifdef FEAT_SPELL
1808 /* May need to set the spell language. Can only do this after the buffer
1809 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001810 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1811 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001812#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001813#ifdef FEAT_VIMINFO
1814 curbuf->b_last_used = vim_time();
1815#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001816
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 redraw_later(NOT_VALID);
1818}
1819
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001820#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1821/*
1822 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001823 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001824 */
1825 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001826do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001827{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001828 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001829 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001830 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001831 shorten_fnames(TRUE);
1832}
1833#endif
1834
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001835 void
1836no_write_message(void)
1837{
1838#ifdef FEAT_TERMINAL
1839 if (term_job_running(curbuf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001840 emsg(_("E948: Job still running (add ! to end the job)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001841 else
1842#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001843 emsg(_("E37: No write since last change (add ! to override)"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001844}
1845
1846 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001847no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001848{
1849#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001850 if (term_job_running(buf->b_term))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001851 emsg(_("E948: Job still running"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001852 else
1853#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001854 emsg(_("E37: No write since last change"));
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001855}
1856
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857/*
1858 * functions for dealing with the buffer list
1859 */
1860
Bram Moolenaar480778b2016-07-14 22:09:39 +02001861static int top_file_num = 1; /* highest file number */
1862
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001864 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1865 * only one window. That means it can be re-used.
1866 */
1867 int
1868curbuf_reusable(void)
1869{
1870 return (curbuf != NULL
1871 && curbuf->b_ffname == NULL
1872 && curbuf->b_nwindows <= 1
1873 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
Bram Moolenaard85c3962019-04-07 14:19:14 +02001874#if defined(FEAT_QUICKFIX)
Bram Moolenaar39803d82019-04-07 12:04:51 +02001875 && !bt_quickfix(curbuf)
Bram Moolenaard85c3962019-04-07 14:19:14 +02001876#endif
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001877 && !curbufIsChanged());
1878}
1879
1880/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 * Add a file name to the buffer list. Return a pointer to the buffer.
1882 * If the same file name already exists return a pointer to that buffer.
1883 * If it does not exist, or if fname == NULL, a new entry is created.
1884 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1885 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1886 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001887 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001888 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1889 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 * This is the ONLY way to create a new buffer.
1891 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001893buflist_new(
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001894 char_u *ffname_arg, // full path of fname or relative
1895 char_u *sfname_arg, // short fname or NULL
1896 linenr_T lnum, // preferred cursor line
1897 int flags) // BLN_ defines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001899 char_u *ffname = ffname_arg;
1900 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 buf_T *buf;
1902#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001903 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904#endif
1905
Bram Moolenaar480778b2016-07-14 22:09:39 +02001906 if (top_file_num == 1)
1907 hash_init(&buf_hashtab);
1908
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02001909 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910
1911 /*
1912 * If file name already exists in the list, update the entry.
1913 */
1914#ifdef UNIX
1915 /* On Unix we can use inode numbers when the file exists. Works better
1916 * for hard links. */
1917 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1918 st.st_dev = (dev_T)-1;
1919#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001920 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921#ifdef UNIX
1922 buflist_findname_stat(ffname, &st)
1923#else
1924 buflist_findname(ffname)
1925#endif
1926 ) != NULL)
1927 {
1928 vim_free(ffname);
1929 if (lnum != 0)
1930 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001931
1932 if ((flags & BLN_NOOPT) == 0)
1933 /* copy the options now, if 'cpo' doesn't have 's' and not done
1934 * already */
1935 buf_copy_options(buf, 0);
1936
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1938 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001939 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001940
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001942 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001944 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001945 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001946 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001947 return NULL;
1948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 }
1950 return buf;
1951 }
1952
1953 /*
1954 * If the current buffer has no name and no contents, use the current
1955 * buffer. Otherwise: Need to allocate a new buffer structure.
1956 *
1957 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001958 * (A spell file buffer is allocated in spell.c, but that's not a normal
1959 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 */
1961 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001962 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 {
1964 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 /* It's like this buffer is deleted. Watch out for autocommands that
1966 * change curbuf! If that happens, allocate a new buffer anyway. */
1967 if (curbuf->b_p_bl)
1968 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1969 if (buf == curbuf)
1970 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001971#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001972 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 {
1977 /* Make sure 'bufhidden' and 'buftype' are empty */
1978 clear_string_option(&buf->b_p_bh);
1979 clear_string_option(&buf->b_p_bt);
1980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 }
1982 if (buf != curbuf || curbuf == NULL)
1983 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001984 buf = ALLOC_CLEAR_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 if (buf == NULL)
1986 {
1987 vim_free(ffname);
1988 return NULL;
1989 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001990#ifdef FEAT_EVAL
1991 /* init b: variables */
1992 buf->b_vars = dict_alloc();
1993 if (buf->b_vars == NULL)
1994 {
1995 vim_free(ffname);
1996 vim_free(buf);
1997 return NULL;
1998 }
1999 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2000#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002001 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 }
2003
2004 if (ffname != NULL)
2005 {
2006 buf->b_ffname = ffname;
2007 buf->b_sfname = vim_strsave(sfname);
2008 }
2009
2010 clear_wininfo(buf);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002011 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012
2013 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2014 || buf->b_wininfo == NULL)
2015 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02002016 if (buf->b_sfname != buf->b_ffname)
2017 VIM_CLEAR(buf->b_sfname);
2018 else
2019 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01002020 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if (buf != curbuf)
2022 free_buffer(buf);
2023 return NULL;
2024 }
2025
2026 if (buf == curbuf)
2027 {
2028 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002029 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (buf != curbuf) /* autocommands deleted the buffer! */
2031 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002032#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002033 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 return NULL;
2035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002037
2038 /* Init the options. */
2039 buf->b_p_initialized = FALSE;
2040 buf_copy_options(buf, BCO_ENTER);
2041
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042#ifdef FEAT_KEYMAP
2043 /* need to reload lmaps and set b:keymap_name */
2044 curbuf->b_kmap_state |= KEYMAP_INIT;
2045#endif
2046 }
2047 else
2048 {
2049 /*
2050 * put new buffer at the end of the buffer list
2051 */
2052 buf->b_next = NULL;
2053 if (firstbuf == NULL) /* buffer list is empty */
2054 {
2055 buf->b_prev = NULL;
2056 firstbuf = buf;
2057 }
2058 else /* append new buffer at end of list */
2059 {
2060 lastbuf->b_next = buf;
2061 buf->b_prev = lastbuf;
2062 }
2063 lastbuf = buf;
2064
2065 buf->b_fnum = top_file_num++;
2066 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2067 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002068 emsg(_("W14: Warning: List of file names overflow"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 if (emsg_silent == 0)
2070 {
2071 out_flush();
2072 ui_delay(3000L, TRUE); /* make sure it is noticed */
2073 }
2074 top_file_num = 1;
2075 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002076 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
2078 /*
2079 * Always copy the options from the current buffer.
2080 */
2081 buf_copy_options(buf, BCO_ALWAYS);
2082 }
2083
2084 buf->b_wininfo->wi_fpos.lnum = lnum;
2085 buf->b_wininfo->wi_win = curwin;
2086
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002087#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002088 hash_init(&buf->b_s.b_keywtab);
2089 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090#endif
2091
2092 buf->b_fname = buf->b_sfname;
2093#ifdef UNIX
2094 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002095 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 else
2097 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002098 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 buf->b_dev = st.st_dev;
2100 buf->b_ino = st.st_ino;
2101 }
2102#endif
2103 buf->b_u_synced = TRUE;
2104 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002105 if (flags & BLN_DUMMY)
2106 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 buf_clear_file(buf);
2108 clrallmarks(buf); /* clear marks */
2109 fmarks_check_names(buf); /* check file marks for this file */
2110 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 if (!(flags & BLN_DUMMY))
2112 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002113 bufref_T bufref;
2114
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002115 /* Tricky: these autocommands may change the buffer list. They could
2116 * also split the window with re-using the one empty buffer. This may
2117 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002118 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002119 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002120 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002121 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002123 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002124 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002125 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002126 return NULL;
2127 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002128#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002129 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002132 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
2134 return buf;
2135}
2136
2137/*
2138 * Free the memory for the options of a buffer.
2139 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2140 * 'fileencoding'.
2141 */
2142 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002143free_buf_options(
2144 buf_T *buf,
2145 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146{
2147 if (free_p_ff)
2148 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 clear_string_option(&buf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 clear_string_option(&buf->b_p_bh);
2152 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 }
2154#ifdef FEAT_FIND_ID
2155 clear_string_option(&buf->b_p_def);
2156 clear_string_option(&buf->b_p_inc);
2157# ifdef FEAT_EVAL
2158 clear_string_option(&buf->b_p_inex);
2159# endif
2160#endif
2161#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2162 clear_string_option(&buf->b_p_inde);
2163 clear_string_option(&buf->b_p_indk);
2164#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002165#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2166 clear_string_option(&buf->b_p_bexpr);
2167#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002168#if defined(FEAT_CRYPT)
2169 clear_string_option(&buf->b_p_cm);
2170#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002171 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002172#if defined(FEAT_EVAL)
2173 clear_string_option(&buf->b_p_fex);
2174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175#ifdef FEAT_CRYPT
2176 clear_string_option(&buf->b_p_key);
2177#endif
2178 clear_string_option(&buf->b_p_kp);
2179 clear_string_option(&buf->b_p_mps);
2180 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002181 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002183#ifdef FEAT_VARTABS
2184 clear_string_option(&buf->b_p_vsts);
Bram Moolenaarbdace832019-03-02 10:13:42 +01002185 vim_free(buf->b_p_vsts_nopaste);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002186 buf->b_p_vsts_nopaste = NULL;
Bram Moolenaarbdace832019-03-02 10:13:42 +01002187 vim_free(buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002188 buf->b_p_vsts_array = NULL;
2189 clear_string_option(&buf->b_p_vts);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002190 VIM_CLEAR(buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002191#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192#ifdef FEAT_KEYMAP
2193 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002194 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 ga_clear(&buf->b_kmap_ga);
2196#endif
2197#ifdef FEAT_COMMENTS
2198 clear_string_option(&buf->b_p_com);
2199#endif
2200#ifdef FEAT_FOLDING
2201 clear_string_option(&buf->b_p_cms);
2202#endif
2203 clear_string_option(&buf->b_p_nf);
2204#ifdef FEAT_SYN_HL
2205 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002206 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002207#endif
2208#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002209 clear_string_option(&buf->b_s.b_p_spc);
2210 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002211 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002212 buf->b_s.b_cap_prog = NULL;
2213 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214#endif
2215#ifdef FEAT_SEARCHPATH
2216 clear_string_option(&buf->b_p_sua);
2217#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219#ifdef FEAT_CINDENT
2220 clear_string_option(&buf->b_p_cink);
2221 clear_string_option(&buf->b_p_cino);
2222#endif
2223#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2224 clear_string_option(&buf->b_p_cinw);
2225#endif
2226#ifdef FEAT_INS_EXPAND
2227 clear_string_option(&buf->b_p_cpt);
2228#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002229#ifdef FEAT_COMPL_FUNC
2230 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002231 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233#ifdef FEAT_QUICKFIX
2234 clear_string_option(&buf->b_p_gp);
2235 clear_string_option(&buf->b_p_mp);
2236 clear_string_option(&buf->b_p_efm);
2237#endif
2238 clear_string_option(&buf->b_p_ep);
2239 clear_string_option(&buf->b_p_path);
2240 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002241 clear_string_option(&buf->b_p_tc);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02002242#ifdef FEAT_EVAL
2243 clear_string_option(&buf->b_p_tfu);
2244#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245#ifdef FEAT_INS_EXPAND
2246 clear_string_option(&buf->b_p_dict);
2247 clear_string_option(&buf->b_p_tsr);
2248#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002249#ifdef FEAT_TEXTOBJ
2250 clear_string_option(&buf->b_p_qe);
2251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002253 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002254#ifdef FEAT_LISP
2255 clear_string_option(&buf->b_p_lw);
2256#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002257 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002258 clear_string_option(&buf->b_p_menc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259}
2260
2261/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002262 * Get alternate file "n".
2263 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2264 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 * if (options & GETF_SETMARK) call setpcmark()
2266 * if (options & GETF_ALT) we are jumping to an alternate file.
2267 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2268 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002269 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 */
2271 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002272buflist_getfile(
2273 int n,
2274 linenr_T lnum,
2275 int options,
2276 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277{
2278 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 pos_T *fpos;
2281 colnr_T col;
2282
2283 buf = buflist_findnr(n);
2284 if (buf == NULL)
2285 {
2286 if ((options & GETF_ALT) && n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002287 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 else
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002289 semsg(_("E92: Buffer %d not found"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 return FAIL;
2291 }
2292
2293 /* if alternate file is the current buffer, nothing to do */
2294 if (buf == curbuf)
2295 return OK;
2296
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002297 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002298 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002299 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002301 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002302 if (curbuf_locked())
2303 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304
2305 /* altfpos may be changed by getfile(), get it now */
2306 if (lnum == 0)
2307 {
2308 fpos = buflist_findfpos(buf);
2309 lnum = fpos->lnum;
2310 col = fpos->col;
2311 }
2312 else
2313 col = 0;
2314
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 if (options & GETF_SWITCH)
2316 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002317 /* If 'switchbuf' contains "useopen": jump to first window containing
2318 * "buf" if one exists */
2319 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002321
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002322 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002323 * page containing "buf" if one exists */
2324 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002325 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002326
2327 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2328 * current buffer isn't empty: open new tab or window */
2329 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002330 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002332 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002333 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002334 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2335 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002337 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 }
2339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340
2341 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002342 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2343 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 {
2345 --RedrawingDisabled;
2346
2347 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2348 if (!p_sol && col != 0)
2349 {
2350 curwin->w_cursor.col = col;
2351 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 curwin->w_set_curswant = TRUE;
2354 }
2355 return OK;
2356 }
2357 --RedrawingDisabled;
2358 return FAIL;
2359}
2360
2361/*
2362 * go to the last know line number for the current buffer
2363 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002364 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002365buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366{
2367 pos_T *fpos;
2368
2369 fpos = buflist_findfpos(curbuf);
2370
2371 curwin->w_cursor.lnum = fpos->lnum;
2372 check_cursor_lnum();
2373
2374 if (p_sol)
2375 curwin->w_cursor.col = 0;
2376 else
2377 {
2378 curwin->w_cursor.col = fpos->col;
2379 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 curwin->w_set_curswant = TRUE;
2382 }
2383}
2384
Bram Moolenaar81695252004-12-29 20:58:21 +00002385#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2386/*
2387 * Find file in buffer list by name (it has to be for the current window).
2388 * Returns NULL if not found.
2389 */
2390 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002391buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002392{
2393 char_u *ffname;
2394 buf_T *buf = NULL;
2395
2396 /* First make the name into a full path name */
2397 ffname = FullName_save(fname,
2398#ifdef UNIX
2399 TRUE /* force expansion, get rid of symbolic links */
2400#else
2401 FALSE
2402#endif
2403 );
2404 if (ffname != NULL)
2405 {
2406 buf = buflist_findname(ffname);
2407 vim_free(ffname);
2408 }
2409 return buf;
2410}
2411#endif
2412
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413/*
2414 * Find file in buffer list by name (it has to be for the current window).
2415 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002416 * Skips dummy buffers.
2417 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 */
2419 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002420buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002423 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424
2425 if (mch_stat((char *)ffname, &st) < 0)
2426 st.st_dev = (dev_T)-1;
2427 return buflist_findname_stat(ffname, &st);
2428}
2429
2430/*
2431 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2432 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002433 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 */
2435 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002436buflist_findname_stat(
2437 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002438 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439{
2440#endif
2441 buf_T *buf;
2442
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002443 /* Start at the last buffer, expect to find a match sooner. */
2444 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002445 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446#ifdef UNIX
2447 , stp
2448#endif
2449 ))
2450 return buf;
2451 return NULL;
2452}
2453
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454/*
2455 * Find file in buffer list by a regexp pattern.
2456 * Return fnum of the found buffer.
2457 * Return < 0 for error.
2458 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002460buflist_findpat(
2461 char_u *pattern,
2462 char_u *pattern_end, /* pointer to first char after pattern */
2463 int unlisted, /* find unlisted buffers */
2464 int diffmode UNUSED, /* find diff-mode buffers only */
2465 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466{
2467 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 int match = -1;
2469 int find_listed;
2470 char_u *pat;
2471 char_u *patend;
2472 int attempt;
2473 char_u *p;
2474 int toggledollar;
2475
2476 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2477 {
2478 if (*pattern == '%')
2479 match = curbuf->b_fnum;
2480 else
2481 match = curwin->w_alt_fnum;
2482#ifdef FEAT_DIFF
2483 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2484 match = -1;
2485#endif
2486 }
2487
2488 /*
2489 * Try four ways of matching a listed buffer:
2490 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002491 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 * attempt == 2: with '$' at end (only match at end)
2493 * attempt == 3: with '^' at start and '$' at end (only full match)
2494 * Repeat this for finding an unlisted buffer if there was no matching
2495 * listed buffer.
2496 */
2497 else
2498 {
2499 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2500 if (pat == NULL)
2501 return -1;
2502 patend = pat + STRLEN(pat) - 1;
2503 toggledollar = (patend > pat && *patend == '$');
2504
2505 /* First try finding a listed buffer. If not found and "unlisted"
2506 * is TRUE, try finding an unlisted buffer. */
2507 find_listed = TRUE;
2508 for (;;)
2509 {
2510 for (attempt = 0; attempt <= 3; ++attempt)
2511 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002512 regmatch_T regmatch;
2513
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 /* may add '^' and '$' */
2515 if (toggledollar)
2516 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2517 p = pat;
2518 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2519 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002520 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2521 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 {
2523 vim_free(pat);
2524 return -1;
2525 }
2526
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002527 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (buf->b_p_bl == find_listed
2529#ifdef FEAT_DIFF
2530 && (!diffmode || diff_mode_buf(buf))
2531#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002532 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002534 if (curtab_only)
2535 {
2536 /* Ignore the match if the buffer is not open in
2537 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002538 win_T *wp;
2539
Bram Moolenaar29323592016-07-24 22:04:11 +02002540 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002541 if (wp->w_buffer == buf)
2542 break;
2543 if (wp == NULL)
2544 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 if (match >= 0) /* already found a match */
2547 {
2548 match = -2;
2549 break;
2550 }
2551 match = buf->b_fnum; /* remember first match */
2552 }
2553
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002554 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 if (match >= 0) /* found one match */
2556 break;
2557 }
2558
2559 /* Only search for unlisted buffers if there was no match with
2560 * a listed buffer. */
2561 if (!unlisted || !find_listed || match != -1)
2562 break;
2563 find_listed = FALSE;
2564 }
2565
2566 vim_free(pat);
2567 }
2568
2569 if (match == -2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002570 semsg(_("E93: More than one match for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 else if (match < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002572 semsg(_("E94: No matching buffer for %s"), pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 return match;
2574}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576/*
2577 * Find all buffer names that match.
2578 * For command line expansion of ":buf" and ":sbuf".
2579 * Return OK if matches found, FAIL otherwise.
2580 */
2581 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002582ExpandBufnames(
2583 char_u *pat,
2584 int *num_file,
2585 char_u ***file,
2586 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587{
2588 int count = 0;
2589 buf_T *buf;
2590 int round;
2591 char_u *p;
2592 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002593 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594
2595 *num_file = 0; /* return values in case of FAIL */
2596 *file = NULL;
2597
Bram Moolenaar05159a02005-02-26 23:04:13 +00002598 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2599 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002601 patc = alloc(STRLEN(pat) + 11);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002602 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002604 STRCPY(patc, "\\(^\\|[\\/]\\)");
2605 STRCPY(patc + 11, pat + 1);
2606 }
2607 else
2608 patc = pat;
2609
2610 /*
2611 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002612 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002613 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002614 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002615 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002616 regmatch_T regmatch;
2617
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002618 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002619 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002620 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2621 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002622 {
2623 if (patc != pat)
2624 vim_free(patc);
2625 return FAIL;
2626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627
2628 /*
2629 * round == 1: Count the matches.
2630 * round == 2: Build the array to keep the matches.
2631 */
2632 for (round = 1; round <= 2; ++round)
2633 {
2634 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002635 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 {
2637 if (!buf->b_p_bl) /* skip unlisted buffers */
2638 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002639 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 if (p != NULL)
2641 {
2642 if (round == 1)
2643 ++count;
2644 else
2645 {
2646 if (options & WILD_HOME_REPLACE)
2647 p = home_replace_save(buf, p);
2648 else
2649 p = vim_strsave(p);
2650 (*file)[count++] = p;
2651 }
2652 }
2653 }
2654 if (count == 0) /* no match found, break here */
2655 break;
2656 if (round == 1)
2657 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002658 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 if (*file == NULL)
2660 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002661 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002662 if (patc != pat)
2663 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 return FAIL;
2665 }
2666 }
2667 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002668 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 if (count) /* match(es) found, break here */
2670 break;
2671 }
2672
Bram Moolenaar05159a02005-02-26 23:04:13 +00002673 if (patc != pat)
2674 vim_free(patc);
2675
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 *num_file = count;
2677 return (count == 0 ? FAIL : OK);
2678}
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 */
Bram Moolenaardefa0672019-07-21 19:25:37 +02002777 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 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002793 wip = ALLOC_CLEAR_ONE(wininfo_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 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 Moolenaar29ddebe2019-01-26 17:28:26 +01002969 static pos_T no_position = {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
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 IObuff[len++] = ' ';
Bram Moolenaarabab0b02019-03-30 18:47:01 +01003076 while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003077 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3078 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003079 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 msg_outtrans(IObuff);
3081 out_flush(); /* output one line at a time */
3082 ui_breakcheck();
3083 }
3084}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085
3086/*
3087 * Get file name and line number for file 'fnum'.
3088 * Used by DoOneCmd() for translating '%' and '#'.
3089 * Used by insert_reg() and cmdline_paste() for '#' register.
3090 * Return FAIL if not found, OK for success.
3091 */
3092 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003093buflist_name_nr(
3094 int fnum,
3095 char_u **fname,
3096 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097{
3098 buf_T *buf;
3099
3100 buf = buflist_findnr(fnum);
3101 if (buf == NULL || buf->b_fname == NULL)
3102 return FAIL;
3103
3104 *fname = buf->b_fname;
3105 *lnum = buflist_findlnum(buf);
3106
3107 return OK;
3108}
3109
3110/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003111 * Set the file name for "buf"' to "ffname_arg", short file name to
3112 * "sfname_arg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 * The file name with the full path is also remembered, for when :cd is used.
3114 * Returns FAIL for failure (file name already in use by other buffer)
3115 * OK otherwise.
3116 */
3117 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003118setfname(
3119 buf_T *buf,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003120 char_u *ffname_arg,
3121 char_u *sfname_arg,
Bram Moolenaar7454a062016-01-30 15:14:10 +01003122 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003124 char_u *ffname = ffname_arg;
3125 char_u *sfname = sfname_arg;
Bram Moolenaar81695252004-12-29 20:58:21 +00003126 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003128 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129#endif
3130
3131 if (ffname == NULL || *ffname == NUL)
3132 {
3133 /* Removing the name. */
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003134 if (buf->b_sfname != buf->b_ffname)
3135 VIM_CLEAR(buf->b_sfname);
3136 else
3137 buf->b_sfname = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003138 VIM_CLEAR(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139#ifdef UNIX
3140 st.st_dev = (dev_T)-1;
3141#endif
3142 }
3143 else
3144 {
3145 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3146 if (ffname == NULL) /* out of memory */
3147 return FAIL;
3148
3149 /*
3150 * if the file name is already used in another buffer:
3151 * - if the buffer is loaded, fail
3152 * - if the buffer is not loaded, delete it from the list
3153 */
3154#ifdef UNIX
3155 if (mch_stat((char *)ffname, &st) < 0)
3156 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003157#endif
3158 if (!(buf->b_flags & BF_DUMMY))
3159#ifdef UNIX
3160 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003162 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163#endif
3164 if (obuf != NULL && obuf != buf)
3165 {
3166 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3167 {
3168 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003169 emsg(_("E95: Buffer with this name already exists"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 vim_free(ffname);
3171 return FAIL;
3172 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003173 /* delete from the list */
3174 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 }
3176 sfname = vim_strsave(sfname);
3177 if (ffname == NULL || sfname == NULL)
3178 {
3179 vim_free(sfname);
3180 vim_free(ffname);
3181 return FAIL;
3182 }
3183#ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01003184 fname_case(sfname, 0); /* set correct case for short file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185#endif
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003186 if (buf->b_sfname != buf->b_ffname)
3187 vim_free(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 vim_free(buf->b_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 buf->b_ffname = ffname;
3190 buf->b_sfname = sfname;
3191 }
3192 buf->b_fname = buf->b_sfname;
3193#ifdef UNIX
3194 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003195 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 else
3197 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003198 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 buf->b_dev = st.st_dev;
3200 buf->b_ino = st.st_ino;
3201 }
3202#endif
3203
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205
3206 buf_name_changed(buf);
3207 return OK;
3208}
3209
3210/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003211 * Crude way of changing the name of a buffer. Use with care!
3212 * The name should be relative to the current directory.
3213 */
3214 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003215buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003216{
3217 buf_T *buf;
3218
3219 buf = buflist_findnr(fnum);
3220 if (buf != NULL)
3221 {
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003222 if (buf->b_sfname != buf->b_ffname)
3223 vim_free(buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003224 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003225 buf->b_ffname = vim_strsave(name);
3226 buf->b_sfname = NULL;
3227 /* Allocate ffname and expand into full path. Also resolves .lnk
3228 * files on Win32. */
3229 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003230 buf->b_fname = buf->b_sfname;
3231 }
3232}
3233
3234/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 * Take care of what needs to be done when the name of buffer "buf" has
3236 * changed.
3237 */
3238 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003239buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240{
3241 /*
3242 * If the file name changed, also change the name of the swapfile
3243 */
3244 if (buf->b_ml.ml_mfp != NULL)
3245 ml_setname(buf);
3246
3247 if (curwin->w_buffer == buf)
3248 check_arg_idx(curwin); /* check file name for arg list */
3249#ifdef FEAT_TITLE
3250 maketitle(); /* set window title */
3251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 fmarks_check_names(buf); /* check named file marks */
3254 ml_timestamp(buf); /* reset timestamp */
3255}
3256
3257/*
3258 * set alternate file name for current window
3259 *
3260 * Used by do_one_cmd(), do_write() and do_ecmd().
3261 * Return the buffer.
3262 */
3263 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003264setaltfname(
3265 char_u *ffname,
3266 char_u *sfname,
3267 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268{
3269 buf_T *buf;
3270
3271 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3272 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003273 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 curwin->w_alt_fnum = buf->b_fnum;
3275 return buf;
3276}
3277
3278/*
3279 * Get alternate file name for current window.
3280 * Return NULL if there isn't any, and give error message if requested.
3281 */
3282 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003283getaltfname(
3284 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285{
3286 char_u *fname;
3287 linenr_T dummy;
3288
3289 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3290 {
3291 if (errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003292 emsg(_(e_noalt));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293 return NULL;
3294 }
3295 return fname;
3296}
3297
3298/*
3299 * Add a file name to the buflist and return its number.
3300 * Uses same flags as buflist_new(), except BLN_DUMMY.
3301 *
3302 * used by qf_init(), main() and doarglist()
3303 */
3304 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003305buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306{
3307 buf_T *buf;
3308
3309 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3310 if (buf != NULL)
3311 return buf->b_fnum;
3312 return 0;
3313}
3314
3315#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3316/*
3317 * Adjust slashes in file names. Called after 'shellslash' was set.
3318 */
3319 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003320buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321{
3322 buf_T *bp;
3323
Bram Moolenaar29323592016-07-24 22:04:11 +02003324 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 {
3326 if (bp->b_ffname != NULL)
3327 slash_adjust(bp->b_ffname);
3328 if (bp->b_sfname != NULL)
3329 slash_adjust(bp->b_sfname);
3330 }
3331}
3332#endif
3333
3334/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003335 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 * Also save the local window option values.
3337 */
3338 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003339buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003341 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342}
3343
3344/*
3345 * Return TRUE if 'ffname' is not the same file as current file.
3346 * Fname must have a full path (expanded by mch_FullName()).
3347 */
3348 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003349otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
3351 return otherfile_buf(curbuf, ffname
3352#ifdef UNIX
3353 , NULL
3354#endif
3355 );
3356}
3357
3358 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003359otherfile_buf(
3360 buf_T *buf,
3361 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003363 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003365 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366{
3367 /* no name is different */
3368 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3369 return TRUE;
3370 if (fnamecmp(ffname, buf->b_ffname) == 0)
3371 return FALSE;
3372#ifdef UNIX
3373 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003374 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375
Bram Moolenaar8767f522016-07-01 17:17:39 +02003376 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 if (stp == NULL)
3378 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003379 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 st.st_dev = (dev_T)-1;
3381 stp = &st;
3382 }
3383 /* Use dev/ino to check if the files are the same, even when the names
3384 * are different (possible with links). Still need to compare the
3385 * name above, for when the file doesn't exist yet.
3386 * Problem: The dev/ino changes when a file is deleted (and created
3387 * again) and remains the same when renamed/moved. We don't want to
3388 * mch_stat() each buffer each time, that would be too slow. Get the
3389 * dev/ino again when they appear to match, but not when they appear
3390 * to be different: Could skip a buffer when it's actually the same
3391 * file. */
3392 if (buf_same_ino(buf, stp))
3393 {
3394 buf_setino(buf);
3395 if (buf_same_ino(buf, stp))
3396 return FALSE;
3397 }
3398 }
3399#endif
3400 return TRUE;
3401}
3402
3403#if defined(UNIX) || defined(PROTO)
3404/*
3405 * Set inode and device number for a buffer.
3406 * Must always be called when b_fname is changed!.
3407 */
3408 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003409buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003411 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412
3413 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3414 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003415 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 buf->b_dev = st.st_dev;
3417 buf->b_ino = st.st_ino;
3418 }
3419 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003420 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421}
3422
3423/*
3424 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3425 */
3426 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003427buf_same_ino(
3428 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003429 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003431 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 && stp->st_dev == buf->b_dev
3433 && stp->st_ino == buf->b_ino);
3434}
3435#endif
3436
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003437/*
3438 * Print info about the current buffer.
3439 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003441fileinfo(
3442 int fullname, /* when non-zero print full path */
3443 int shorthelp,
3444 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445{
3446 char_u *name;
3447 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003448 char *p;
3449 char *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003450 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003452 buffer = alloc(IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 if (buffer == NULL)
3454 return;
3455
3456 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3457 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003458 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 p = buffer + STRLEN(buffer);
3460 }
3461 else
3462 p = buffer;
3463
3464 *p++ = '"';
3465 if (buf_spname(curbuf) != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003466 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 else
3468 {
3469 if (!fullname && curbuf->b_fname != NULL)
3470 name = curbuf->b_fname;
3471 else
3472 name = curbuf->b_ffname;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003473 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 (int)(IOSIZE - (p - buffer)), TRUE);
3475 }
3476
Bram Moolenaar32526b32019-01-19 17:43:09 +01003477 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 curbufIsChanged() ? (shortmess(SHM_MOD)
3479 ? " [+]" : _(" [Modified]")) : " ",
3480 (curbuf->b_flags & BF_NOTEDITED)
3481#ifdef FEAT_QUICKFIX
3482 && !bt_dontwrite(curbuf)
3483#endif
3484 ? _("[Not edited]") : "",
3485 (curbuf->b_flags & BF_NEW)
3486#ifdef FEAT_QUICKFIX
3487 && !bt_dontwrite(curbuf)
3488#endif
3489 ? _("[New file]") : "",
3490 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003491 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 : _("[readonly]")) : "",
3493 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3494 || curbuf->b_p_ro) ?
3495 " " : "");
3496 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3497 * causes an overflow, thus for large numbers divide instead. */
3498 if (curwin->w_cursor.lnum > 1000000L)
3499 n = (int)(((long)curwin->w_cursor.lnum) /
3500 ((long)curbuf->b_ml.ml_line_count / 100L));
3501 else
3502 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3503 (long)curbuf->b_ml.ml_line_count);
3504 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003505 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506#ifdef FEAT_CMDL_INFO
3507 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 /* Current line and column are already on the screen -- webb */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003509 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003510 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3511 curbuf->b_ml.ml_line_count),
3512 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513#endif
3514 else
3515 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003516 vim_snprintf_add(buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 _("line %ld of %ld --%d%%-- col "),
3518 (long)curwin->w_cursor.lnum,
3519 (long)curbuf->b_ml.ml_line_count,
3520 n);
3521 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003522 len = STRLEN(buffer);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003523 col_print((char_u *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3525 }
3526
Bram Moolenaar32526b32019-01-19 17:43:09 +01003527 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE,
3528 !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
3530 if (dont_truncate)
3531 {
3532 /* Temporarily set msg_scroll to avoid the message being truncated.
3533 * First call msg_start() to get the message in the right place. */
3534 msg_start();
3535 n = msg_scroll;
3536 msg_scroll = TRUE;
3537 msg(buffer);
3538 msg_scroll = n;
3539 }
3540 else
3541 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003542 p = (char *)msg_trunc_attr(buffer, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 /* Need to repeat the message after redrawing when:
3545 * - When restart_edit is set (otherwise there will be a delay
3546 * before redrawing).
3547 * - When the screen was scrolled but there is no wait-return
3548 * prompt. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01003549 set_keep_msg((char_u *)p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 }
3551
3552 vim_free(buffer);
3553}
3554
3555 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003556col_print(
3557 char_u *buf,
3558 size_t buflen,
3559 int col,
3560 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561{
3562 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003563 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003565 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566}
3567
3568#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569static char_u *lasttitle = NULL;
3570static char_u *lasticon = NULL;
3571
Bram Moolenaar84a93082018-06-16 22:58:15 +02003572/*
3573 * Put the file name in the title bar and icon of the window.
3574 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003576maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577{
3578 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003579 char_u *title_str = NULL;
3580 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 int maxlen = 0;
3582 int len;
3583 int mustset;
3584 char_u buf[IOSIZE];
3585 int off;
3586
3587 if (!redrawing())
3588 {
3589 /* Postpone updating the title when 'lazyredraw' is set. */
3590 need_maketitle = TRUE;
3591 return;
3592 }
3593
3594 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003595 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003596 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597
3598 if (p_title)
3599 {
3600 if (p_titlelen > 0)
3601 {
3602 maxlen = p_titlelen * Columns / 100;
3603 if (maxlen < 10)
3604 maxlen = 10;
3605 }
3606
Bram Moolenaar84a93082018-06-16 22:58:15 +02003607 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 if (*p_titlestring != NUL)
3609 {
3610#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003611 if (stl_syntax & STL_IN_TITLE)
3612 {
3613 int use_sandbox = FALSE;
3614 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003615
3616# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003617 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003618# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003619 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003620 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003621 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003622 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003623 if (called_emsg)
3624 set_string_option_direct((char_u *)"titlestring", -1,
3625 (char_u *)"", OPT_FREE, SID_ERROR);
3626 called_emsg |= save_called_emsg;
3627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 else
3629#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003630 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 }
3632 else
3633 {
3634 /* format: "fname + (path) (1 of 2) - VIM" */
3635
Bram Moolenaar2c666692012-09-05 13:30:40 +02003636#define SPACE_FOR_FNAME (IOSIZE - 100)
3637#define SPACE_FOR_DIR (IOSIZE - 20)
3638#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003640 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003641#ifdef FEAT_TERMINAL
3642 else if (curbuf->b_term != NULL)
3643 {
3644 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3645 SPACE_FOR_FNAME);
3646 }
3647#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 else
3649 {
3650 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003651 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 }
3654
Bram Moolenaar21554412017-07-24 21:44:43 +02003655#ifdef FEAT_TERMINAL
3656 if (curbuf->b_term == NULL)
3657#endif
3658 switch (bufIsChanged(curbuf)
3659 + (curbuf->b_p_ro * 2)
3660 + (!curbuf->b_p_ma * 4))
3661 {
3662 case 1: STRCAT(buf, " +"); break;
3663 case 2: STRCAT(buf, " ="); break;
3664 case 3: STRCAT(buf, " =+"); break;
3665 case 4:
3666 case 6: STRCAT(buf, " -"); break;
3667 case 5:
3668 case 7: STRCAT(buf, " -+"); break;
3669 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670
Bram Moolenaar21554412017-07-24 21:44:43 +02003671 if (curbuf->b_fname != NULL
3672#ifdef FEAT_TERMINAL
3673 && curbuf->b_term == NULL
3674#endif
3675 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 {
3677 /* Get path of file, replace home dir with ~ */
3678 off = (int)STRLEN(buf);
3679 buf[off++] = ' ';
3680 buf[off++] = '(';
3681 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003682 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683#ifdef BACKSLASH_IN_FILENAME
3684 /* avoid "c:/name" to be reduced to "c" */
3685 if (isalpha(buf[off]) && buf[off + 1] == ':')
3686 off += 2;
3687#endif
3688 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003689 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003691 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003692 /* must be a help buffer */
3693 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003694 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003698
Bram Moolenaar2c666692012-09-05 13:30:40 +02003699 /* Translate unprintable chars and concatenate. Keep some
3700 * room for the server name. When there is no room (very long
3701 * file name) use (...). */
3702 if (off < SPACE_FOR_DIR)
3703 {
3704 p = transstr(buf + off);
3705 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3706 vim_free(p);
3707 }
3708 else
3709 {
3710 vim_strncpy(buf + off, (char_u *)"...",
3711 (size_t)(SPACE_FOR_ARGNR - off));
3712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 STRCAT(buf, ")");
3714 }
3715
Bram Moolenaar2c666692012-09-05 13:30:40 +02003716 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717
3718#if defined(FEAT_CLIENTSERVER)
3719 if (serverName != NULL)
3720 {
3721 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003722 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 }
3724 else
3725#endif
3726 STRCAT(buf, " - VIM");
3727
3728 if (maxlen > 0)
3729 {
3730 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003731 if (vim_strsize(buf) > maxlen)
3732 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 }
3734 }
3735 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003736 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737
3738 if (p_icon)
3739 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003740 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 if (*p_iconstring != NUL)
3742 {
3743#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003744 if (stl_syntax & STL_IN_ICON)
3745 {
3746 int use_sandbox = FALSE;
3747 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003748
3749# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003750 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003751# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003752 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003753 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003754 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003755 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003756 if (called_emsg)
3757 set_string_option_direct((char_u *)"iconstring", -1,
3758 (char_u *)"", OPT_FREE, SID_ERROR);
3759 called_emsg |= save_called_emsg;
3760 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 else
3762#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003763 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 }
3765 else
3766 {
3767 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003768 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003770 p = gettail(curbuf->b_ffname);
3771 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003773 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 if (len > 100)
3775 {
3776 len -= 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003778 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003779 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003781 STRCPY(icon_str, p);
3782 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 }
3784 }
3785
Bram Moolenaar84a93082018-06-16 22:58:15 +02003786 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787
3788 if (mustset)
3789 resettitle();
3790}
3791
3792/*
3793 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3794 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003795 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 */
3797 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003798value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799{
3800 if ((str == NULL) != (*last == NULL)
3801 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3802 {
3803 vim_free(*last);
3804 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003805 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003807 mch_restore_title(
3808 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003811 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003813 return TRUE;
3814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 }
3816 return FALSE;
3817}
3818
3819/*
3820 * Put current window title back (used after calling a shell)
3821 */
3822 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003823resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824{
3825 mch_settitle(lasttitle, lasticon);
3826}
Bram Moolenaarea408852005-06-25 22:49:46 +00003827
3828# if defined(EXITFREE) || defined(PROTO)
3829 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003830free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003831{
3832 vim_free(lasttitle);
3833 vim_free(lasticon);
3834}
3835# endif
3836
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837#endif /* FEAT_TITLE */
3838
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003839#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003841 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 * Return length of string in screen cells.
3843 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003844 * Normally works for window "wp", except when working for 'tabline' then it
3845 * is "curwin".
3846 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 * Items are drawn interspersed with the text that surrounds it
3848 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3849 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3850 *
3851 * If maxwidth is not zero, the string will be filled at any middle marker
3852 * or truncated if too long, fillchar is used for all whitespace.
3853 */
3854 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003855build_stl_str_hl(
3856 win_T *wp,
3857 char_u *out, /* buffer to write into != NameBuff */
3858 size_t outlen, /* length of out[] */
3859 char_u *fmt,
3860 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3861 int fillchar,
3862 int maxwidth,
3863 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3864 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865{
Bram Moolenaar10772302019-01-20 18:25:54 +01003866 linenr_T lnum;
3867 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 char_u *p;
3869 char_u *s;
3870 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003871 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003873 win_T *save_curwin;
3874 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875#endif
3876 int empty_line;
3877 colnr_T virtcol;
3878 long l;
3879 long n;
3880 int prevchar_isflag;
3881 int prevchar_isitem;
3882 int itemisflag;
3883 int fillable;
3884 char_u *str;
3885 long num;
3886 int width;
3887 int itemcnt;
3888 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003889 int group_end_userhl;
3890 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 int groupitem[STL_MAX_ITEM];
3892 int groupdepth;
3893 struct stl_item
3894 {
3895 char_u *start;
3896 int minwid;
3897 int maxwid;
3898 enum
3899 {
3900 Normal,
3901 Empty,
3902 Group,
3903 Middle,
3904 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003905 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 Trunc
3907 } type;
3908 } item[STL_MAX_ITEM];
3909 int minwid;
3910 int maxwid;
3911 int zeropad;
3912 char_u base;
3913 char_u opt;
3914#define TMPLEN 70
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003915 char_u buf_tmp[TMPLEN];
3916 char_u win_tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003917 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003918 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003919 int save_must_redraw = must_redraw;
3920 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003921
3922#ifdef FEAT_EVAL
3923 /*
3924 * When the format starts with "%!" then evaluate it as an expression and
3925 * use the result as the actual format string.
3926 */
3927 if (fmt[0] == '%' && fmt[1] == '!')
3928 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003929 typval_T tv;
3930
3931 tv.v_type = VAR_NUMBER;
3932 tv.vval.v_number = wp->w_id;
3933 set_var((char_u *)"g:statusline_winid", &tv, FALSE);
3934
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003935 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3936 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003937 usefmt = fmt;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02003938
3939 do_unlet((char_u *)"g:statusline_winid", TRUE);
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003940 }
3941#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942
3943 if (fillchar == 0)
3944 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003945 /* Can't handle a multi-byte fill character yet. */
3946 else if (mb_char2len(fillchar) > 1)
3947 fillchar = '-';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003948
Bram Moolenaar10772302019-01-20 18:25:54 +01003949 // The cursor in windows other than the current one isn't always
3950 // up-to-date, esp. because of autocommands and timers.
3951 lnum = wp->w_cursor.lnum;
3952 if (lnum > wp->w_buffer->b_ml.ml_line_count)
3953 {
3954 lnum = wp->w_buffer->b_ml.ml_line_count;
3955 wp->w_cursor.lnum = lnum;
3956 }
3957
3958 // Get line & check if empty (cursorpos will show "0-1"). Note that
3959 // p will become invalid when getting another buffer line.
3960 p = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar567199b2013-04-24 16:52:36 +02003961 empty_line = (*p == NUL);
3962
Bram Moolenaar10772302019-01-20 18:25:54 +01003963 // Get the byte value now, in case we need it below. This is more efficient
3964 // than making a copy of the line.
3965 len = STRLEN(p);
3966 if (wp->w_cursor.col > (colnr_T)len)
3967 {
3968 // Line may have changed since checking the cursor column, or the lnum
3969 // was adjusted above.
3970 wp->w_cursor.col = (colnr_T)len;
Bram Moolenaar10772302019-01-20 18:25:54 +01003971 wp->w_cursor.coladd = 0;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003972 byteval = 0;
Bram Moolenaar10772302019-01-20 18:25:54 +01003973 }
Bram Moolenaar567199b2013-04-24 16:52:36 +02003974 else
Bram Moolenaar567199b2013-04-24 16:52:36 +02003975 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976
3977 groupdepth = 0;
3978 p = out;
3979 curitem = 0;
3980 prevchar_isflag = TRUE;
3981 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003982 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003984 if (curitem == STL_MAX_ITEM)
3985 {
3986 /* There are too many items. Add the error code to the statusline
3987 * to give the user a hint about what went wrong. */
3988 if (p + 6 < out + outlen)
3989 {
3990 mch_memmove(p, " E541", (size_t)5);
3991 p += 5;
3992 }
3993 break;
3994 }
3995
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 if (*s != NUL && *s != '%')
3997 prevchar_isflag = prevchar_isitem = FALSE;
3998
3999 /*
4000 * Handle up to the next '%' or the end.
4001 */
4002 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4003 *p++ = *s++;
4004 if (*s == NUL || p + 1 >= out + outlen)
4005 break;
4006
4007 /*
4008 * Handle one '%' item.
4009 */
4010 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004011 if (*s == NUL) /* ignore trailing % */
4012 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 if (*s == '%')
4014 {
4015 if (p + 1 >= out + outlen)
4016 break;
4017 *p++ = *s++;
4018 prevchar_isflag = prevchar_isitem = FALSE;
4019 continue;
4020 }
4021 if (*s == STL_MIDDLEMARK)
4022 {
4023 s++;
4024 if (groupdepth > 0)
4025 continue;
4026 item[curitem].type = Middle;
4027 item[curitem++].start = p;
4028 continue;
4029 }
4030 if (*s == STL_TRUNCMARK)
4031 {
4032 s++;
4033 item[curitem].type = Trunc;
4034 item[curitem++].start = p;
4035 continue;
4036 }
4037 if (*s == ')')
4038 {
4039 s++;
4040 if (groupdepth < 1)
4041 continue;
4042 groupdepth--;
4043
4044 t = item[groupitem[groupdepth]].start;
4045 *p = NUL;
4046 l = vim_strsize(t);
4047 if (curitem > groupitem[groupdepth] + 1
4048 && item[groupitem[groupdepth]].minwid == 0)
4049 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004050 /* remove group if all items are empty and highlight group
4051 * doesn't change */
4052 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004053 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4054 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004055 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004056 {
4057 group_start_userhl = group_end_userhl = item[n].minwid;
4058 break;
4059 }
4060 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004062 {
4063 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004065 if (item[n].type == Highlight)
4066 group_end_userhl = item[n].minwid;
4067 }
4068 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 {
4070 p = t;
4071 l = 0;
4072 }
4073 }
4074 if (l > item[groupitem[groupdepth]].maxwid)
4075 {
4076 /* truncate, remove n bytes of text at the start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 if (has_mbyte)
4078 {
4079 /* Find the first character that should be included. */
4080 n = 0;
4081 while (l >= item[groupitem[groupdepth]].maxwid)
4082 {
4083 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004084 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 }
4086 }
4087 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004088 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089
4090 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004091 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 p = p - n + 1;
Bram Moolenaar13505972019-01-24 15:04:48 +01004093
4094 // Fill up space left over by half a double-wide char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 while (++l < item[groupitem[groupdepth]].minwid)
4096 *p++ = fillchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097
4098 /* correct the start of the items for the truncation */
4099 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4100 {
4101 item[l].start -= n;
4102 if (item[l].start < t)
4103 item[l].start = t;
4104 }
4105 }
4106 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4107 {
4108 /* fill */
4109 n = item[groupitem[groupdepth]].minwid;
4110 if (n < 0)
4111 {
4112 /* fill by appending characters */
4113 n = 0 - n;
4114 while (l++ < n && p + 1 < out + outlen)
4115 *p++ = fillchar;
4116 }
4117 else
4118 {
4119 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004120 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 l = n - l;
4122 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004123 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 p += l;
4125 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4126 item[n].start += l;
4127 for ( ; l > 0; l--)
4128 *t++ = fillchar;
4129 }
4130 }
4131 continue;
4132 }
4133 minwid = 0;
4134 maxwid = 9999;
4135 zeropad = FALSE;
4136 l = 1;
4137 if (*s == '0')
4138 {
4139 s++;
4140 zeropad = TRUE;
4141 }
4142 if (*s == '-')
4143 {
4144 s++;
4145 l = -1;
4146 }
4147 if (VIM_ISDIGIT(*s))
4148 {
4149 minwid = (int)getdigits(&s);
4150 if (minwid < 0) /* overflow */
4151 minwid = 0;
4152 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004153 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 {
4155 item[curitem].type = Highlight;
4156 item[curitem].start = p;
4157 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4158 s++;
4159 curitem++;
4160 continue;
4161 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004162 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4163 {
4164 if (*s == STL_TABCLOSENR)
4165 {
4166 if (minwid == 0)
4167 {
4168 /* %X ends the close label, go back to the previously
4169 * define tab label nr. */
4170 for (n = curitem - 1; n >= 0; --n)
4171 if (item[n].type == TabPage && item[n].minwid >= 0)
4172 {
4173 minwid = item[n].minwid;
4174 break;
4175 }
4176 }
4177 else
4178 /* close nrs are stored as negative values */
4179 minwid = - minwid;
4180 }
4181 item[curitem].type = TabPage;
4182 item[curitem].start = p;
4183 item[curitem].minwid = minwid;
4184 s++;
4185 curitem++;
4186 continue;
4187 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 if (*s == '.')
4189 {
4190 s++;
4191 if (VIM_ISDIGIT(*s))
4192 {
4193 maxwid = (int)getdigits(&s);
4194 if (maxwid <= 0) /* overflow */
4195 maxwid = 50;
4196 }
4197 }
4198 minwid = (minwid > 50 ? 50 : minwid) * l;
4199 if (*s == '(')
4200 {
4201 groupitem[groupdepth++] = curitem;
4202 item[curitem].type = Group;
4203 item[curitem].start = p;
4204 item[curitem].minwid = minwid;
4205 item[curitem].maxwid = maxwid;
4206 s++;
4207 curitem++;
4208 continue;
4209 }
4210 if (vim_strchr(STL_ALL, *s) == NULL)
4211 {
4212 s++;
4213 continue;
4214 }
4215 opt = *s++;
4216
4217 /* OK - now for the real work */
4218 base = 'D';
4219 itemisflag = FALSE;
4220 fillable = TRUE;
4221 num = -1;
4222 str = NULL;
4223 switch (opt)
4224 {
4225 case STL_FILEPATH:
4226 case STL_FULLPATH:
4227 case STL_FILENAME:
4228 fillable = FALSE; /* don't change ' ' to fillchar */
4229 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004230 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 else
4232 {
4233 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004234 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4236 }
4237 trans_characters(NameBuff, MAXPATHL);
4238 if (opt != STL_FILENAME)
4239 str = NameBuff;
4240 else
4241 str = gettail(NameBuff);
4242 break;
4243
4244 case STL_VIM_EXPR: /* '{' */
4245 itemisflag = TRUE;
4246 t = p;
4247 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4248 *p++ = *s++;
4249 if (*s != '}') /* missing '}' or out of space */
4250 break;
4251 s++;
4252 *p = 0;
4253 p = t;
4254
4255#ifdef FEAT_EVAL
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004256 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp),
4257 "%d", curbuf->b_fnum);
4258 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp);
4259 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id);
4260 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004262 save_curbuf = curbuf;
4263 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 curwin = wp;
4265 curbuf = wp->w_buffer;
4266
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004267 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004269 curwin = save_curwin;
4270 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004271 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004272 do_unlet((char_u *)"g:actual_curwin", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
4274 if (str != NULL && *str != 0)
4275 {
4276 if (*skipdigits(str) == NUL)
4277 {
4278 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004279 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 itemisflag = FALSE;
4281 }
4282 }
4283#endif
4284 break;
4285
4286 case STL_LINE:
4287 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4288 ? 0L : (long)(wp->w_cursor.lnum);
4289 break;
4290
4291 case STL_NUMLINES:
4292 num = wp->w_buffer->b_ml.ml_line_count;
4293 break;
4294
4295 case STL_COLUMN:
4296 num = !(State & INSERT) && empty_line
4297 ? 0 : (int)wp->w_cursor.col + 1;
4298 break;
4299
4300 case STL_VIRTCOL:
4301 case STL_VIRTCOL_ALT:
4302 /* In list mode virtcol needs to be recomputed */
4303 virtcol = wp->w_virtcol;
4304 if (wp->w_p_list && lcs_tab1 == NUL)
4305 {
4306 wp->w_p_list = FALSE;
4307 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4308 wp->w_p_list = TRUE;
4309 }
4310 ++virtcol;
4311 /* Don't display %V if it's the same as %c. */
4312 if (opt == STL_VIRTCOL_ALT
4313 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4314 ? 0 : (int)wp->w_cursor.col + 1)))
4315 break;
4316 num = (long)virtcol;
4317 break;
4318
4319 case STL_PERCENTAGE:
4320 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4321 (long)wp->w_buffer->b_ml.ml_line_count);
4322 break;
4323
4324 case STL_ALTPERCENT:
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004325 str = buf_tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004326 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 break;
4328
4329 case STL_ARGLISTSTAT:
4330 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004331 buf_tmp[0] = 0;
4332 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE))
4333 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 break;
4335
4336 case STL_KEYMAP:
4337 fillable = FALSE;
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004338 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN))
4339 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 break;
4341 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004342#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004343 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344#else
4345 num = 0;
4346#endif
4347 break;
4348
4349 case STL_BUFNO:
4350 num = wp->w_buffer->b_fnum;
4351 break;
4352
4353 case STL_OFFSET_X:
4354 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004355 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 case STL_OFFSET:
4357#ifdef FEAT_BYTEOFF
4358 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4359 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4360 0L : l + 1 + (!(State & INSERT) && empty_line ?
4361 0 : (int)wp->w_cursor.col);
4362#endif
4363 break;
4364
4365 case STL_BYTEVAL_X:
4366 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004367 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004369 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 if (num == NL)
4371 num = 0;
4372 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4373 num = NL;
4374 break;
4375
4376 case STL_ROFLAG:
4377 case STL_ROFLAG_ALT:
4378 itemisflag = TRUE;
4379 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004380 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 break;
4382
4383 case STL_HELPFLAG:
4384 case STL_HELPFLAG_ALT:
4385 itemisflag = TRUE;
4386 if (wp->w_buffer->b_help)
4387 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004388 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 break;
4390
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 case STL_FILETYPE:
4392 if (*wp->w_buffer->b_p_ft != NUL
4393 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4394 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004395 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004396 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004397 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 }
4399 break;
4400
4401 case STL_FILETYPE_ALT:
4402 itemisflag = TRUE;
4403 if (*wp->w_buffer->b_p_ft != NUL
4404 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4405 {
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004406 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s",
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004407 wp->w_buffer->b_p_ft);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004408 for (t = buf_tmp; *t != 0; t++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 *t = TOUPPER_LOC(*t);
Bram Moolenaar1c6fd1e2019-05-23 22:11:59 +02004410 str = buf_tmp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 }
4412 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413
Bram Moolenaar4033c552017-09-16 20:54:51 +02004414#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 case STL_PREVIEWFLAG:
4416 case STL_PREVIEWFLAG_ALT:
4417 itemisflag = TRUE;
4418 if (wp->w_p_pvw)
4419 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4420 : _("[Preview]"));
4421 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004422
4423 case STL_QUICKFIX:
4424 if (bt_quickfix(wp->w_buffer))
4425 str = (char_u *)(wp->w_llist_ref
4426 ? _(msg_loclist)
4427 : _(msg_qflist));
4428 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429#endif
4430
4431 case STL_MODIFIED:
4432 case STL_MODIFIED_ALT:
4433 itemisflag = TRUE;
4434 switch ((opt == STL_MODIFIED_ALT)
4435 + bufIsChanged(wp->w_buffer) * 2
4436 + (!wp->w_buffer->b_p_ma) * 4)
4437 {
4438 case 2: str = (char_u *)"[+]"; break;
4439 case 3: str = (char_u *)",+"; break;
4440 case 4: str = (char_u *)"[-]"; break;
4441 case 5: str = (char_u *)",-"; break;
4442 case 6: str = (char_u *)"[+-]"; break;
4443 case 7: str = (char_u *)",+-"; break;
4444 }
4445 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004446
4447 case STL_HIGHLIGHT:
4448 t = s;
4449 while (*s != '#' && *s != NUL)
4450 ++s;
4451 if (*s == '#')
4452 {
4453 item[curitem].type = Highlight;
4454 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004455 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004456 curitem++;
4457 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004458 if (*s != NUL)
4459 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004460 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 }
4462
4463 item[curitem].start = p;
4464 item[curitem].type = Normal;
4465 if (str != NULL && *str)
4466 {
4467 t = str;
4468 if (itemisflag)
4469 {
4470 if ((t[0] && t[1])
4471 && ((!prevchar_isitem && *t == ',')
4472 || (prevchar_isflag && *t == ' ')))
4473 t++;
4474 prevchar_isflag = TRUE;
4475 }
4476 l = vim_strsize(t);
4477 if (l > 0)
4478 prevchar_isitem = TRUE;
4479 if (l > maxwid)
4480 {
4481 while (l >= maxwid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 if (has_mbyte)
4483 {
4484 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004485 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 }
4487 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 l -= byte2cells(*t++);
4489 if (p + 1 >= out + outlen)
4490 break;
4491 *p++ = '<';
4492 }
4493 if (minwid > 0)
4494 {
4495 for (; l < minwid && p + 1 < out + outlen; l++)
4496 {
4497 /* Don't put a "-" in front of a digit. */
4498 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4499 *p++ = ' ';
4500 else
4501 *p++ = fillchar;
4502 }
4503 minwid = 0;
4504 }
4505 else
4506 minwid *= -1;
4507 while (*t && p + 1 < out + outlen)
4508 {
4509 *p++ = *t++;
4510 /* Change a space by fillchar, unless fillchar is '-' and a
4511 * digit follows. */
4512 if (fillable && p[-1] == ' '
4513 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4514 p[-1] = fillchar;
4515 }
4516 for (; l < minwid && p + 1 < out + outlen; l++)
4517 *p++ = fillchar;
4518 }
4519 else if (num >= 0)
4520 {
4521 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4522 char_u nstr[20];
4523
4524 if (p + 20 >= out + outlen)
4525 break; /* not sufficient space */
4526 prevchar_isitem = TRUE;
4527 t = nstr;
4528 if (opt == STL_VIRTCOL_ALT)
4529 {
4530 *t++ = '-';
4531 minwid--;
4532 }
4533 *t++ = '%';
4534 if (zeropad)
4535 *t++ = '0';
4536 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004537 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 *t = 0;
4539
4540 for (n = num, l = 1; n >= nbase; n /= nbase)
4541 l++;
4542 if (opt == STL_VIRTCOL_ALT)
4543 l++;
4544 if (l > maxwid)
4545 {
4546 l += 2;
4547 n = l - maxwid;
4548 while (l-- > maxwid)
4549 num /= nbase;
4550 *t++ = '>';
4551 *t++ = '%';
4552 *t = t[-3];
4553 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004554 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4555 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 }
4557 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004558 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4559 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 p += STRLEN(p);
4561 }
4562 else
4563 item[curitem].type = Empty;
4564
4565 if (opt == STL_VIM_EXPR)
4566 vim_free(str);
4567
4568 if (num >= 0 || (!itemisflag && str && *str))
4569 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4570 curitem++;
4571 }
4572 *p = NUL;
4573 itemcnt = curitem;
4574
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004575#ifdef FEAT_EVAL
4576 if (usefmt != fmt)
4577 vim_free(usefmt);
4578#endif
4579
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 width = vim_strsize(out);
4581 if (maxwidth > 0 && width > maxwidth)
4582 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004583 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 l = 0;
4585 if (itemcnt == 0)
4586 s = out;
4587 else
4588 {
4589 for ( ; l < itemcnt; l++)
4590 if (item[l].type == Trunc)
4591 {
4592 /* Truncate at %< item. */
4593 s = item[l].start;
4594 break;
4595 }
4596 if (l == itemcnt)
4597 {
4598 /* No %< item, truncate first item. */
4599 s = item[0].start;
4600 l = 0;
4601 }
4602 }
4603
4604 if (width - vim_strsize(s) >= maxwidth)
4605 {
4606 /* Truncation mark is beyond max length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 if (has_mbyte)
4608 {
4609 s = out;
4610 width = 0;
4611 for (;;)
4612 {
4613 width += ptr2cells(s);
4614 if (width >= maxwidth)
4615 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004616 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 }
4618 /* Fill up for half a double-wide character. */
4619 while (++width < maxwidth)
4620 *s++ = fillchar;
4621 }
4622 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 s = out + maxwidth - 1;
4624 for (l = 0; l < itemcnt; l++)
4625 if (item[l].start > s)
4626 break;
4627 itemcnt = l;
4628 *s++ = '>';
4629 *s = 0;
4630 }
4631 else
4632 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 if (has_mbyte)
4634 {
4635 n = 0;
4636 while (width >= maxwidth)
4637 {
4638 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004639 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 }
4641 }
4642 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 n = width - maxwidth + 1;
4644 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004645 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 *s = '<';
4647
4648 /* Fill up for half a double-wide character. */
4649 while (++width < maxwidth)
4650 {
4651 s = s + STRLEN(s);
4652 *s++ = fillchar;
4653 *s = NUL;
4654 }
4655
4656 --n; /* count the '<' */
4657 for (; l < itemcnt; l++)
4658 {
4659 if (item[l].start - n >= s)
4660 item[l].start -= n;
4661 else
4662 item[l].start = s;
4663 }
4664 }
4665 width = maxwidth;
4666 }
4667 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4668 {
4669 /* Apply STL_MIDDLE if any */
4670 for (l = 0; l < itemcnt; l++)
4671 if (item[l].type == Middle)
4672 break;
4673 if (l < itemcnt)
4674 {
4675 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004676 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 for (s = item[l].start; s < p; s++)
4678 *s = fillchar;
4679 for (l++; l < itemcnt; l++)
4680 item[l].start += maxwidth - width;
4681 width = maxwidth;
4682 }
4683 }
4684
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004685 /* Store the info about highlighting. */
4686 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004688 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 for (l = 0; l < itemcnt; l++)
4690 {
4691 if (item[l].type == Highlight)
4692 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004693 sp->start = item[l].start;
4694 sp->userhl = item[l].minwid;
4695 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 }
4697 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004698 sp->start = NULL;
4699 sp->userhl = 0;
4700 }
4701
4702 /* Store the info about tab pages labels. */
4703 if (tabtab != NULL)
4704 {
4705 sp = tabtab;
4706 for (l = 0; l < itemcnt; l++)
4707 {
4708 if (item[l].type == TabPage)
4709 {
4710 sp->start = item[l].start;
4711 sp->userhl = item[l].minwid;
4712 sp++;
4713 }
4714 }
4715 sp->start = NULL;
4716 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 }
4718
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004719 /* When inside update_screen we do not want redrawing a stausline, ruler,
4720 * title, etc. to trigger another redraw, it may cause an endless loop. */
4721 if (updating_screen)
4722 {
4723 must_redraw = save_must_redraw;
4724 curwin->w_redr_type = save_redr_type;
4725 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004726
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 return width;
4728}
4729#endif /* FEAT_STL_OPT */
4730
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004731#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4732 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004734 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4735 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 */
4737 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004738get_rel_pos(
4739 win_T *wp,
4740 char_u *buf,
4741 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742{
4743 long above; /* number of lines above window */
4744 long below; /* number of lines below window */
4745
Bram Moolenaar0027c212015-01-07 13:31:52 +01004746 if (buflen < 3) /* need at least 3 chars for writing */
4747 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 above = wp->w_topline - 1;
4749#ifdef FEAT_DIFF
4750 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004751 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4752 above = 0; /* All buffer lines are displayed and there is an
4753 * indication of filler lines, that can be considered
4754 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755#endif
4756 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4757 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004758 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4759 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004761 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004763 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 ? (int)(above / ((above + below) / 100L))
4765 : (int)(above * 100L / (above + below)));
4766}
4767#endif
4768
4769/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004770 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 * Return TRUE if it was appended.
4772 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004773 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004774append_arg_number(
4775 win_T *wp,
4776 char_u *buf,
4777 int buflen,
4778 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779{
4780 char_u *p;
4781
4782 if (ARGCOUNT <= 1) /* nothing to do */
4783 return FALSE;
4784
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004785 p = buf + STRLEN(buf); /* go to the end of the buffer */
4786 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 return FALSE;
4788 *p++ = ' ';
4789 *p++ = '(';
4790 if (add_file)
4791 {
4792 STRCPY(p, "file ");
4793 p += 5;
4794 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004795 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4796 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4798 return TRUE;
4799}
4800
4801/*
4802 * If fname is not a full path, make it a full path.
4803 * Returns pointer to allocated memory (NULL for failure).
4804 */
4805 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004806fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807{
4808 /*
4809 * Force expanding the path always for Unix, because symbolic links may
4810 * mess up the full path name, even though it starts with a '/'.
4811 * Also expand when there is ".." in the file name, try to remove it,
4812 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004813 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 * For MS-Windows also expand names like "longna~1" to "longname".
4815 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004816#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 return FullName_save(fname, TRUE);
4818#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004819 if (!vim_isAbsName(fname)
4820 || strstr((char *)fname, "..") != NULL
4821 || strstr((char *)fname, "//") != NULL
4822# ifdef BACKSLASH_IN_FILENAME
4823 || strstr((char *)fname, "\\\\") != NULL
4824# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004825# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004827# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 )
4829 return FullName_save(fname, FALSE);
4830
4831 fname = vim_strsave(fname);
4832
Bram Moolenaar9b942202007-10-03 12:31:33 +00004833# ifdef USE_FNAME_CASE
Bram Moolenaar00f148d2019-02-12 22:37:27 +01004834 if (fname != NULL)
4835 fname_case(fname, 0); /* set correct case for file name */
Bram Moolenaar9b942202007-10-03 12:31:33 +00004836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837
4838 return fname;
4839#endif
4840}
4841
4842/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004843 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL.
4844 * "*ffname" becomes a pointer to allocated memory (or NULL).
4845 * When resolving a link both "*sfname" and "*ffname" will point to the same
4846 * allocated memory.
4847 * The "*ffname" and "*sfname" pointer values on call will not be freed.
4848 * Note that the resulting "*ffname" pointer should be considered not allocaed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004851fname_expand(
4852 buf_T *buf UNUSED,
4853 char_u **ffname,
4854 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004856 if (*ffname == NULL) // no file name given, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 return;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004858 if (*sfname == NULL) // no short file name given, use ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 *sfname = *ffname;
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004860 *ffname = fix_fname(*ffname); // expand to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861
4862#ifdef FEAT_SHORTCUT
4863 if (!buf->b_p_bin)
4864 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004865 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02004867 // If the file name is a shortcut file, use the file it links to.
Bram Moolenaardce1e892019-02-10 23:18:53 +01004868 rfname = mch_resolve_path(*ffname, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004869 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 {
4871 vim_free(*ffname);
4872 *ffname = rfname;
4873 *sfname = rfname;
4874 }
4875 }
4876#endif
4877}
4878
4879/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 * Open a window for a number of buffers.
4881 */
4882 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004883ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884{
4885 buf_T *buf;
4886 win_T *wp, *wpnext;
4887 int split_ret = OK;
4888 int p_ea_save;
4889 int open_wins = 0;
4890 int r;
4891 int count; /* Maximum number of windows to open. */
4892 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004893 int had_tab = cmdmod.tab;
4894 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895
4896 if (eap->addr_count == 0) /* make as many windows as possible */
4897 count = 9999;
4898 else
4899 count = eap->line2; /* make as many windows as specified */
4900 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
4901 all = FALSE;
4902 else
4903 all = TRUE;
4904
4905 setpcmark();
4906
4907#ifdef FEAT_GUI
4908 need_mouse_correct = TRUE;
4909#endif
4910
4911 /*
4912 * Close superfluous windows (two windows for the same buffer).
4913 * Also close windows that are not full-width.
4914 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004915 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004916 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004917 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004919 tpnext = curtab->tp_next;
4920 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004922 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004923 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004924 || ((cmdmod.split & WSP_VERT)
4925 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004926 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004927 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02004928 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004929 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004930 {
4931 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004932 wpnext = firstwin; /* just in case an autocommand does
4933 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004934 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004935 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004936 }
4937 else
4938 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004940
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 /* Without the ":tab" modifier only do the current tab page. */
4942 if (had_tab == 0 || tpnext == NULL)
4943 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004944 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 }
4946
4947 /*
4948 * Go through the buffer list. When a buffer doesn't have a window yet,
4949 * open one. Otherwise move the window to the right position.
4950 * Watch out for autocommands that delete buffers or windows!
4951 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4953 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
4957 {
4958 /* Check if this buffer needs a window */
4959 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
4960 continue;
4961
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004962 if (had_tab != 0)
4963 {
4964 /* With the ":tab" modifier don't move the window. */
4965 if (buf->b_nwindows > 0)
4966 wp = lastwin; /* buffer has a window, skip it */
4967 else
4968 wp = NULL;
4969 }
4970 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004971 {
4972 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02004973 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004974 if (wp->w_buffer == buf)
4975 break;
4976 /* If the buffer already has a window, move it */
4977 if (wp != NULL)
4978 win_move_after(wp, curwin);
4979 }
4980
4981 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004983 bufref_T bufref;
4984
4985 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004986
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 /* Split the window and put the buffer in it */
4988 p_ea_save = p_ea;
4989 p_ea = TRUE; /* use space from all windows */
4990 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4991 ++open_wins;
4992 p_ea = p_ea_save;
4993 if (split_ret == FAIL)
4994 continue;
4995
4996 /* Open the buffer in this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 swap_exists_action = SEA_DIALOG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004999 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005001 /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 swap_exists_action = SEA_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 break;
5004 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 if (swap_exists_action == SEA_QUIT)
5006 {
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005007#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005008 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005009
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005010 /* Reset the error/interrupt/exception state here so that
5011 * aborting() returns FALSE when closing a window. */
5012 enter_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005013#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005014
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005015 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 win_close(curwin, TRUE);
5017 --open_wins;
5018 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005019 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005020
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005021#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005022 /* Restore the error/interrupt/exception state if not
5023 * discarded by a new aborting error, interrupt, or uncaught
5024 * exception. */
5025 leave_cleanup(&cs);
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
5028 else
5029 handle_swap_exists(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 }
5031
5032 ui_breakcheck();
5033 if (got_int)
5034 {
5035 (void)vgetc(); /* only break the file loading, not the rest */
5036 break;
5037 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005038#ifdef FEAT_EVAL
5039 /* Autocommands deleted the buffer or aborted script processing!!! */
5040 if (aborting())
5041 break;
5042#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005043 /* When ":tab" was used open a new tab for a new window repeatedly. */
5044 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5045 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050
5051 /*
5052 * Close superfluous windows.
5053 */
5054 for (wp = lastwin; open_wins > count; )
5055 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005056 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 if (!win_valid(wp))
5059 {
5060 /* BufWrite Autocommands made the window invalid, start over */
5061 wp = lastwin;
5062 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005063 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005065 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 --open_wins;
5067 wp = lastwin;
5068 }
5069 else
5070 {
5071 wp = wp->w_prev;
5072 if (wp == NULL)
5073 break;
5074 }
5075 }
5076}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005079static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005080
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081/*
5082 * do_modelines() - process mode lines for the current file
5083 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005084 * "flags" can be:
5085 * OPT_WINONLY only set options local to window
5086 * OPT_NOWIN don't set options local to window
5087 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 * Returns immediately if the "ml" option isn't set.
5089 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005091do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005093 linenr_T lnum;
5094 int nmlines;
5095 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096
5097 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5098 return;
5099
5100 /* Disallow recursive entry here. Can happen when executing a modeline
5101 * triggers an autocommand, which reloads modelines with a ":do". */
5102 if (entered)
5103 return;
5104
5105 ++entered;
5106 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5107 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005108 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 nmlines = 0;
5110
5111 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5112 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005113 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 nmlines = 0;
5115 --entered;
5116}
5117
5118#include "version.h" /* for version number */
5119
5120/*
5121 * chk_modeline() - check a single line for a mode string
5122 * Return FAIL if an error encountered.
5123 */
5124 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005125chk_modeline(
5126 linenr_T lnum,
5127 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128{
5129 char_u *s;
5130 char_u *e;
5131 char_u *linecopy; /* local copy of any modeline found */
5132 int prev;
5133 int vers;
5134 int end;
5135 int retval = OK;
5136 char_u *save_sourcing_name;
5137 linenr_T save_sourcing_lnum;
5138#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005139 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140#endif
5141
5142 prev = -1;
5143 for (s = ml_get(lnum); *s != NUL; ++s)
5144 {
5145 if (prev == -1 || vim_isspace(prev))
5146 {
5147 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5148 || STRNCMP(s, "vi:", (size_t)3) == 0)
5149 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005150 /* Accept both "vim" and "Vim". */
5151 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 {
5153 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5154 e = s + 4;
5155 else
5156 e = s + 3;
5157 vers = getdigits(&e);
5158 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005159 && (s[0] != 'V'
5160 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 && (s[3] == ':'
5162 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5163 || (VIM_VERSION_100 < vers && s[3] == '<')
5164 || (VIM_VERSION_100 > vers && s[3] == '>')
5165 || (VIM_VERSION_100 == vers && s[3] == '=')))
5166 break;
5167 }
5168 }
5169 prev = *s;
5170 }
5171
5172 if (*s)
5173 {
5174 do /* skip over "ex:", "vi:" or "vim:" */
5175 ++s;
5176 while (s[-1] != ':');
5177
5178 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5179 if (linecopy == NULL)
5180 return FAIL;
5181
5182 save_sourcing_lnum = sourcing_lnum;
5183 save_sourcing_name = sourcing_name;
5184 sourcing_lnum = lnum; /* prepare for emsg() */
5185 sourcing_name = (char_u *)"modelines";
5186
5187 end = FALSE;
5188 while (end == FALSE)
5189 {
5190 s = skipwhite(s);
5191 if (*s == NUL)
5192 break;
5193
5194 /*
5195 * Find end of set command: ':' or end of line.
5196 * Skip over "\:", replacing it with ":".
5197 */
5198 for (e = s; *e != ':' && *e != NUL; ++e)
5199 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005200 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 if (*e == NUL)
5202 end = TRUE;
5203
5204 /*
5205 * If there is a "set" command, require a terminating ':' and
5206 * ignore the stuff after the ':'.
5207 * "vi:set opt opt opt: foo" -- foo not interpreted
5208 * "vi:opt opt opt: foo" -- foo interpreted
5209 * Accept "se" for compatibility with Elvis.
5210 */
5211 if (STRNCMP(s, "set ", (size_t)4) == 0
5212 || STRNCMP(s, "se ", (size_t)3) == 0)
5213 {
5214 if (*e != ':') /* no terminating ':'? */
5215 break;
5216 end = TRUE;
5217 s = vim_strchr(s, ' ') + 1;
5218 }
5219 *e = NUL; /* truncate the set command */
5220
5221 if (*s != NUL) /* skip over an empty "::" */
5222 {
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005223 int secure_save = secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005225 save_current_sctx = current_sctx;
5226 current_sctx.sc_sid = SID_MODELINE;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01005227 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005228 current_sctx.sc_lnum = 0;
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02005229 current_sctx.sc_version = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230#endif
Bram Moolenaar5958f952018-11-20 04:25:21 +01005231 // Make sure no risky things are executed as a side effect.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01005232 secure = 1;
Bram Moolenaar5958f952018-11-20 04:25:21 +01005233
Bram Moolenaara3227e22006-03-08 21:32:40 +00005234 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar5958f952018-11-20 04:25:21 +01005235
Bram Moolenaar48f377a2018-12-21 13:03:28 +01005236 secure = secure_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005238 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239#endif
5240 if (retval == FAIL) /* stop if error found */
5241 break;
5242 }
5243 s = e + 1; /* advance to next part */
5244 }
5245
5246 sourcing_lnum = save_sourcing_lnum;
5247 sourcing_name = save_sourcing_name;
5248
5249 vim_free(linecopy);
5250 }
5251 return retval;
5252}
5253
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005254/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005255 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5256 */
5257 int
5258bt_normal(buf_T *buf)
5259{
5260 return buf != NULL && buf->b_p_bt[0] == NUL;
5261}
5262
Bram Moolenaar113e1072019-01-20 15:30:40 +01005263#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar91335e52018-08-01 17:53:12 +02005264/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005265 * Return TRUE if "buf" is the quickfix buffer.
5266 */
5267 int
5268bt_quickfix(buf_T *buf)
5269{
5270 return buf != NULL && buf->b_p_bt[0] == 'q';
5271}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005272#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005273
Bram Moolenaar113e1072019-01-20 15:30:40 +01005274#if defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005275/*
5276 * Return TRUE if "buf" is a terminal buffer.
5277 */
5278 int
5279bt_terminal(buf_T *buf)
5280{
5281 return buf != NULL && buf->b_p_bt[0] == 't';
5282}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005283#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005284
5285/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005286 * Return TRUE if "buf" is a help buffer.
5287 */
5288 int
5289bt_help(buf_T *buf)
5290{
5291 return buf != NULL && buf->b_help;
5292}
5293
5294/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005295 * Return TRUE if "buf" is a prompt buffer.
5296 */
5297 int
5298bt_prompt(buf_T *buf)
5299{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005300 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r';
5301}
5302
5303/*
5304 * Return TRUE if "buf" is a buffer for a popup window.
5305 */
5306 int
5307bt_popup(buf_T *buf)
5308{
5309 return buf != NULL && buf->b_p_bt != NULL
5310 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o';
Bram Moolenaarf2732452018-06-03 14:47:35 +02005311}
5312
5313/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005314 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5315 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005316 */
5317 int
Bram Moolenaar26910de2019-06-15 19:37:15 +02005318bt_nofilename(buf_T *buf)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005319{
5320 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5321 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005322 || buf->b_p_bt[0] == 't'
5323 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005324}
5325
5326/*
Bram Moolenaar26910de2019-06-15 19:37:15 +02005327 * Return TRUE if "buf" has 'buftype' set to "nofile".
5328 */
5329 int
5330bt_nofile(buf_T *buf)
5331{
5332 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f';
5333}
5334
5335/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005336 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5337 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005338 */
5339 int
5340bt_dontwrite(buf_T *buf)
5341{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005342 return buf != NULL && (buf->b_p_bt[0] == 'n'
5343 || buf->b_p_bt[0] == 't'
5344 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005345}
5346
Bram Moolenaar113e1072019-01-20 15:30:40 +01005347#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005348 int
5349bt_dontwrite_msg(buf_T *buf)
5350{
5351 if (bt_dontwrite(buf))
5352 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005353 emsg(_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005354 return TRUE;
5355 }
5356 return FALSE;
5357}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005358#endif
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005359
5360/*
5361 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5362 * and 'bufhidden'.
5363 */
5364 int
5365buf_hide(buf_T *buf)
5366{
5367 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5368 switch (buf->b_p_bh[0])
5369 {
5370 case 'u': /* "unload" */
5371 case 'w': /* "wipe" */
5372 case 'd': return FALSE; /* "delete" */
5373 case 'h': return TRUE; /* "hide" */
5374 }
5375 return (p_hid || cmdmod.hide);
5376}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377
5378/*
5379 * Return special buffer name.
5380 * Returns NULL when the buffer has a normal file name.
5381 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005382 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005383buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005385#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005387 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005388 /*
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005389 * Differentiate between the quickfix and location list buffers using
5390 * the buffer number stored in the global quickfix stack.
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005391 */
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005392 if (buf->b_fnum == qf_stack_get_bufnr())
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005393 return (char_u *)_(msg_qflist);
Bram Moolenaaree8188f2019-02-05 21:23:04 +01005394 else
5395 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005398
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005400 * contains the name as specified by the user. */
Bram Moolenaar26910de2019-06-15 19:37:15 +02005401 if (bt_nofilename(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005403#ifdef FEAT_TERMINAL
5404 if (buf->b_term != NULL)
5405 return term_get_status_text(buf->b_term);
5406#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005407 if (buf->b_fname != NULL)
5408 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005409#ifdef FEAT_JOB_CHANNEL
5410 if (bt_prompt(buf))
5411 return (char_u *)_("[Prompt]");
5412#endif
Bram Moolenaarc6896e22019-05-30 22:32:34 +02005413#ifdef FEAT_TEXT_PROP
5414 if (bt_popup(buf))
5415 return (char_u *)_("[Popup]");
5416#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005417 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005419
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005421 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 return NULL;
5423}
5424
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005425#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005426 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5427 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005428# define SWITCH_TO_WIN
5429
5430/*
5431 * Find a window that contains "buf" and switch to it.
5432 * If there is no such window, use the current window and change "curbuf".
5433 * Caller must initialize save_curbuf to NULL.
5434 * restore_win_for_buf() MUST be called later!
5435 */
5436 void
5437switch_to_win_for_buf(
5438 buf_T *buf,
5439 win_T **save_curwinp,
5440 tabpage_T **save_curtabp,
5441 bufref_T *save_curbuf)
5442{
5443 win_T *wp;
5444 tabpage_T *tp;
5445
5446 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5447 switch_buffer(save_curbuf, buf);
5448 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5449 {
5450 restore_win(*save_curwinp, *save_curtabp, TRUE);
5451 switch_buffer(save_curbuf, buf);
5452 }
5453}
5454
5455 void
5456restore_win_for_buf(
5457 win_T *save_curwin,
5458 tabpage_T *save_curtab,
5459 bufref_T *save_curbuf)
5460{
5461 if (save_curbuf->br_buf == NULL)
5462 restore_win(save_curwin, save_curtab, TRUE);
5463 else
5464 restore_buffer(save_curbuf);
5465}
5466#endif
5467
Bram Moolenaar4033c552017-09-16 20:54:51 +02005468#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005469/*
5470 * Find a window for buffer "buf".
5471 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5472 * If not found FAIL is returned.
5473 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02005474 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005475find_win_for_buf(
5476 buf_T *buf,
5477 win_T **wp,
5478 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005479{
5480 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5481 if ((*wp)->w_buffer == buf)
5482 goto win_found;
5483 return FAIL;
5484win_found:
5485 return OK;
5486}
5487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489/*
5490 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5491 */
5492 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005493set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494{
5495 if (on != curbuf->b_p_bl)
5496 {
5497 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 if (on)
5499 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5500 else
5501 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 }
5503}
5504
5505/*
5506 * Read the file for "buf" again and check if the contents changed.
5507 * Return TRUE if it changed or this could not be checked.
5508 */
5509 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005510buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511{
5512 buf_T *newbuf;
5513 int differ = TRUE;
5514 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 exarg_T ea;
5517
5518 /* Allocate a buffer without putting it in the buffer list. */
5519 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5520 if (newbuf == NULL)
5521 return TRUE;
5522
5523 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5524 if (prep_exarg(&ea, buf) == FAIL)
5525 {
5526 wipe_buffer(newbuf, FALSE);
5527 return TRUE;
5528 }
5529
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 /* set curwin/curbuf to buf and save a few things */
5531 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532
Bram Moolenaar4770d092006-01-12 23:22:24 +00005533 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 && readfile(buf->b_ffname, buf->b_fname,
5535 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5536 &ea, READ_NEW | READ_DUMMY) == OK)
5537 {
5538 /* compare the two files line by line */
5539 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5540 {
5541 differ = FALSE;
5542 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5543 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5544 {
5545 differ = TRUE;
5546 break;
5547 }
5548 }
5549 }
5550 vim_free(ea.cmd);
5551
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 /* restore curwin/curbuf and a few other things */
5553 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554
5555 if (curbuf != newbuf) /* safety check */
5556 wipe_buffer(newbuf, FALSE);
5557
5558 return differ;
5559}
5560
5561/*
5562 * Wipe out a buffer and decrement the last buffer number if it was used for
5563 * this buffer. Call this to wipe out a temp buffer that does not contain any
5564 * marks.
5565 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005567wipe_buffer(
5568 buf_T *buf,
5569 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570{
5571 if (buf->b_fnum == top_file_num - 1)
5572 --top_file_num;
5573
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005575 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005576
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005577 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005578
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005580 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581}
Bram Moolenaar75a1a942019-06-20 03:45:36 +02005582
5583#if defined(FEAT_EVAL) || defined(PROTO)
5584/*
5585 * Mark references in functions of buffers.
5586 */
5587 int
5588set_ref_in_buffers(int copyID)
5589{
5590 int abort = FALSE;
5591 buf_T *bp;
5592
5593 FOR_ALL_BUFFERS(bp)
5594 {
5595 listener_T *lnr;
5596 typval_T tv;
5597
5598 for (lnr = bp->b_listener; !abort && lnr != NULL; lnr = lnr->lr_next)
5599 {
5600 if (lnr->lr_callback.cb_partial != NULL)
5601 {
5602 tv.v_type = VAR_PARTIAL;
5603 tv.vval.v_partial = lnr->lr_callback.cb_partial;
5604 abort = abort || set_ref_in_item(&tv, copyID, NULL, NULL);
5605 }
5606 }
5607# ifdef FEAT_JOB_CHANNEL
5608 if (!abort && bp->b_prompt_callback.cb_partial != NULL)
5609 {
5610 tv.v_type = VAR_PARTIAL;
5611 tv.vval.v_partial = bp->b_prompt_callback.cb_partial;
5612 abort = abort || set_ref_in_item(&tv, copyID, NULL, NULL);
5613 }
5614 if (!abort && bp->b_prompt_interrupt.cb_partial != NULL)
5615 {
5616 tv.v_type = VAR_PARTIAL;
5617 tv.vval.v_partial = bp->b_prompt_interrupt.cb_partial;
5618 abort = abort || set_ref_in_item(&tv, copyID, NULL, NULL);
5619 }
5620# endif
5621 if (abort)
5622 break;
5623 }
5624 return abort;
5625}
5626#endif