blob: b292150a2e677e148b8f2d9d849e3b882a69a87b [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
30#if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032# define HAVE_BUFLIST_MATCH
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#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010035static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
36static wininfo_T *find_wininfo(buf_T *buf, int skip_diff_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020038static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
39static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
40static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010042static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#endif
44#ifdef FEAT_TITLE
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int ti_change(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010047static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
48static void free_buffer(buf_T *);
49static void free_buffer_stuff(buf_T *buf, int free_options);
50static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
52#ifdef UNIX
53# define dev_T dev_t
54#else
55# define dev_T unsigned
56#endif
57
58#if defined(FEAT_SIGNS)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010059static void insert_sign(buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060#endif
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010066static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020067
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020068/* Number of times free_buffer() was called. */
69static int buf_free_count = 0;
70
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020071/* Read data from buffer for retrying. */
72 static int
73read_buffer(
74 int read_stdin, /* read file from stdin, otherwise fifo */
75 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
76 int flags) /* extra flags for readfile() */
77{
78 int retval = OK;
79 linenr_T line_count;
80
81 /*
82 * Read from the buffer which the text is already filled in and append at
83 * the end. This makes it possible to retry when 'fileformat' or
84 * 'fileencoding' was guessed wrong.
85 */
86 line_count = curbuf->b_ml.ml_line_count;
87 retval = readfile(
88 read_stdin ? NULL : curbuf->b_ffname,
89 read_stdin ? NULL : curbuf->b_fname,
90 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
91 flags | READ_BUFFER);
92 if (retval == OK)
93 {
94 /* Delete the binary lines. */
95 while (--line_count >= 0)
96 ml_delete((linenr_T)1, FALSE);
97 }
98 else
99 {
100 /* Delete the converted lines. */
101 while (curbuf->b_ml.ml_line_count > line_count)
102 ml_delete(line_count, FALSE);
103 }
104 /* Put the cursor on the first line. */
105 curwin->w_cursor.lnum = 1;
106 curwin->w_cursor.col = 0;
107
108 if (read_stdin)
109 {
110 /* Set or reset 'modified' before executing autocommands, so that
111 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100112 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200113 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100114 else if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200115 unchanged(curbuf, FALSE);
116
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100117 if (retval == OK)
118 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100119#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100120 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100121 curbuf, &retval);
122#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100123 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100125 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200126 }
127 return retval;
128}
129
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200131 * Open current buffer, that is: open the memfile and read the file into
132 * memory.
133 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 */
135 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100136open_buffer(
137 int read_stdin, /* read file from stdin */
138 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
139 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140{
141 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200142 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100143#ifdef FEAT_SYN_HL
144 long old_tw = curbuf->b_p_tw;
145#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200146 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147
148 /*
149 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
150 * When re-entering the same buffer, it should not change, because the
151 * user may have reset the flag by hand.
152 */
153 if (readonlymode && curbuf->b_ffname != NULL
154 && (curbuf->b_flags & BF_NEVERLOADED))
155 curbuf->b_p_ro = TRUE;
156
Bram Moolenaar4770d092006-01-12 23:22:24 +0000157 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 {
159 /*
160 * There MUST be a memfile, otherwise we can't do anything
161 * If we can't create one for the current buffer, take another buffer
162 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100163 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200164 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 if (curbuf->b_ml.ml_mfp != NULL)
166 break;
167 /*
168 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000169 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170 */
171 if (curbuf == NULL)
172 {
173 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
174 getout(2);
175 }
176 EMSG(_("E83: Cannot allocate buffer, using other one..."));
177 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100178#ifdef FEAT_SYN_HL
179 if (old_tw != curbuf->b_p_tw)
180 check_colorcolumn(curwin);
181#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 return FAIL;
183 }
184
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 /* The autocommands in readfile() may change the buffer, but only AFTER
186 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200187 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189
190 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100191 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192
193 if (curbuf->b_ffname != NULL
194#ifdef FEAT_NETBEANS_INTG
195 && netbeansReadFile
196#endif
197 )
198 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100199 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200200#ifdef UNIX
201 int save_bin = curbuf->b_p_bin;
202 int perm;
203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204#ifdef FEAT_NETBEANS_INTG
205 int oldFire = netbeansFireChanges;
206
207 netbeansFireChanges = 0;
208#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200209#ifdef UNIX
210 perm = mch_getperm(curbuf->b_ffname);
211 if (perm >= 0 && (0
212# ifdef S_ISFIFO
213 || S_ISFIFO(perm)
214# endif
215# ifdef S_ISSOCK
216 || S_ISSOCK(perm)
217# endif
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200218# ifdef OPEN_CHR_FILES
219 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
220# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200221 ))
222 read_fifo = TRUE;
223 if (read_fifo)
224 curbuf->b_p_bin = TRUE;
225#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100226 if (shortmess(SHM_FILEINFO))
227 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200229 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200230 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
231#ifdef UNIX
232 if (read_fifo)
233 {
234 curbuf->b_p_bin = save_bin;
235 if (retval == OK)
236 retval = read_buffer(FALSE, eap, flags);
237 }
238#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100239 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240#ifdef FEAT_NETBEANS_INTG
241 netbeansFireChanges = oldFire;
242#endif
243 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200244 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 fix_help_buffer();
246 }
247 else if (read_stdin)
248 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200249 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250
251 /*
252 * First read the text in binary mode into the buffer.
253 * Then read from that same buffer and append at the end. This makes
254 * it possible to retry when 'fileformat' or 'fileencoding' was
255 * guessed wrong.
256 */
257 curbuf->b_p_bin = TRUE;
258 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200259 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
260 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 curbuf->b_p_bin = save_bin;
262 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200263 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 }
265
266 /* if first time loading this buffer, init b_chartab[] */
267 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100268 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100270#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100271 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100272#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
275 /*
276 * Set/reset the Changed flag first, autocmds may change the buffer.
277 * Apply the automatic commands, before processing the modelines.
278 * So the modelines have priority over auto commands.
279 */
280 /* When reading stdin, the buffer contents always needs writing, so set
281 * the changed flag. Unless in readonly mode: "ls | gview -".
282 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000283 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100285#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000288 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100290 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 unchanged(curbuf, FALSE);
292 save_file_ff(curbuf); /* keep this fileformat */
293
294 /* require "!" to overwrite the file, because it wasn't read completely */
295#ifdef FEAT_EVAL
296 if (aborting())
297#else
298 if (got_int)
299#endif
300 curbuf->b_flags |= BF_READERR;
301
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000302#ifdef FEAT_FOLDING
303 /* Need to update automatic folding. Do this before the autocommands,
304 * they may use the fold info. */
305 foldUpdateAll(curwin);
306#endif
307
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 /* need to set w_topline, unless some autocommand already did that. */
309 if (!(curwin->w_valid & VALID_TOPLINE))
310 {
311 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100312#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100316#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100318#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320#endif
321
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100322 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 /*
325 * The autocommands may have changed the current buffer. Apply the
326 * modelines to the correct buffer, if it still exists and is loaded.
327 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200328 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 {
330 aco_save_T aco;
331
332 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200333 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000334 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
336
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100337#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100339 &retval);
340#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343
344 /* restore curwin/curbuf and a few other things */
345 aucmd_restbuf(&aco);
346 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 }
348
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 return retval;
350}
351
352/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200353 * Store "buf" in "bufref" and set the free count.
354 */
355 void
356set_bufref(bufref_T *bufref, buf_T *buf)
357{
358 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200359 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200360 bufref->br_buf_free_count = buf_free_count;
361}
362
363/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200364 * Return TRUE if "bufref->br_buf" points to the same buffer as when
365 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200366 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200367 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
368 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200369 */
370 int
371bufref_valid(bufref_T *bufref)
372{
373 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200374 ? TRUE : buf_valid(bufref->br_buf)
375 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200376}
377
378/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200380 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 */
382 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100383buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384{
385 buf_T *bp;
386
Bram Moolenaar82404332016-07-10 17:00:38 +0200387 /* Assume that we more often have a recent buffer, start with the last
388 * one. */
389 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 if (bp == buf)
391 return TRUE;
392 return FALSE;
393}
394
395/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200396 * A hash table used to quickly lookup a buffer by its number.
397 */
398static hashtab_T buf_hashtab;
399
400 static void
401buf_hashtab_add(buf_T *buf)
402{
403 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
404 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
405 EMSG(_("E931: Buffer cannot be registered"));
406}
407
408 static void
409buf_hashtab_remove(buf_T *buf)
410{
411 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
412
413 if (!HASHITEM_EMPTY(hi))
414 hash_remove(&buf_hashtab, hi);
415}
416
417/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 * Close the link to a buffer.
419 * "action" is used when there is no longer a window for the buffer.
420 * It can be:
421 * 0 buffer becomes hidden
422 * DOBUF_UNLOAD buffer is unloaded
423 * DOBUF_DELETE buffer is unloaded and removed from buffer list
424 * DOBUF_WIPE buffer is unloaded and really deleted
425 * When doing all but the first one on the current buffer, the caller should
426 * get a new buffer very soon!
427 *
428 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100429 *
430 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
431 * cause there to be only one window with this buffer. e.g. when ":quit" is
432 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 */
434 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100435close_buffer(
436 win_T *win, /* if not NULL, set b_last_cursor */
437 buf_T *buf,
438 int action,
439 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100442 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200443 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100444 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200445 win_T *the_curwin = curwin;
446 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 int unload_buf = (action != 0);
448 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
449 int wipe_buf = (action == DOBUF_WIPE);
450
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200451 /*
452 * Force unloading or deleting when 'bufhidden' says so.
453 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
454 * "hide" (otherwise we could never free or delete a buffer).
455 */
456 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
457 {
458 del_buf = TRUE;
459 unload_buf = TRUE;
460 }
461 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
462 {
463 del_buf = TRUE;
464 unload_buf = TRUE;
465 wipe_buf = TRUE;
466 }
467 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
468 unload_buf = TRUE;
469
Bram Moolenaar94053a52017-08-01 21:44:33 +0200470#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200471 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200472 {
473 if (term_job_running(buf->b_term))
474 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200475 if (wipe_buf || unload_buf)
476 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200477 free_terminal(buf);
478 else
479 {
480 /* The job keeps running, hide the buffer. */
481 del_buf = FALSE;
482 unload_buf = FALSE;
483 }
484 }
485 else
486 {
487 /* A terminal buffer is wiped out if the job has finished. */
488 del_buf = TRUE;
489 unload_buf = TRUE;
490 wipe_buf = TRUE;
491 }
492 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200493#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200495 /* Disallow deleting the buffer when it is locked (already being closed or
496 * halfway a command that relies on it). Unloading is allowed. */
497 if (buf->b_locked > 0 && (del_buf || wipe_buf))
498 {
499 EMSG(_("E937: Attempt to delete a buffer that is in use"));
500 return;
501 }
502
Bram Moolenaar4033c552017-09-16 20:54:51 +0200503 /* check no autocommands closed the window */
504 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 {
506 /* Set b_last_cursor when closing the last window for the buffer.
507 * Remember the last cursor position and window options of the buffer.
508 * This used to be only for the current window, but then options like
509 * 'foldmethod' may be lost with a ":only" command. */
510 if (buf->b_nwindows == 1)
511 set_last_cursor(win);
512 buflist_setfpos(buf, win,
513 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
514 win->w_cursor.col, TRUE);
515 }
516
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200517 set_bufref(&bufref, buf);
518
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 /* When the buffer is no longer in a window, trigger BufWinLeave */
520 if (buf->b_nwindows == 1)
521 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200522 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200523 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
524 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200525 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100526 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200527 /* Autocommands deleted the buffer. */
528aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100529 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100531 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200532 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200533 if (abort_if_last && one_window())
534 /* Autocommands made this the only window. */
535 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536
537 /* When the buffer becomes hidden, but is not unloaded, trigger
538 * BufHidden */
539 if (!unload_buf)
540 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200541 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200542 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
543 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200544 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200545 /* Autocommands deleted the buffer. */
546 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200547 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200548 if (abort_if_last && one_window())
549 /* Autocommands made this the only window. */
550 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100552#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 if (aborting()) /* autocmds may abort script processing */
554 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200557
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200558 /* If the buffer was in curwin and the window has changed, go back to that
559 * window, if it still exists. This avoids that ":edit x" triggering a
560 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
561 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
562 {
563 block_autocmds();
564 goto_tabpage_win(the_curtab, the_curwin);
565 unblock_autocmds();
566 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569
570 /* decrease the link count from windows (unless not in any window) */
571 if (buf->b_nwindows > 0)
572 --buf->b_nwindows;
573
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100574#ifdef FEAT_DIFF
575 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100576 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100577#endif
578
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 /* Return when a window is displaying the buffer or when it's not
580 * unloaded. */
581 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583
584 /* Always remove the buffer when there is no file name. */
585 if (buf->b_ffname == NULL)
586 del_buf = TRUE;
587
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200588 /* When closing the current buffer stop Visual mode before freeing
589 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200590 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200591#if defined(EXITFREE)
592 && !entered_free_all_mem
593#endif
594 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200595 end_visual_mode();
596
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 /*
598 * Free all things allocated for this buffer.
599 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
600 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 /* Remember if we are closing the current buffer. Restore the number of
602 * windows, so that autocommands in buf_freeall() don't get confused. */
603 is_curbuf = (buf == curbuf);
604 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200606 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200609 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100611#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000612 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 /*
617 * It's possible that autocommands change curbuf to the one being deleted.
618 * This might cause the previous curbuf to be deleted unexpectedly. But
619 * in some cases it's OK to delete the curbuf, because a new one is
620 * obtained anyway. Therefore only return if curbuf changed to the
621 * deleted buffer.
622 */
623 if (buf == curbuf && !is_curbuf)
624 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200625
Bram Moolenaar4033c552017-09-16 20:54:51 +0200626 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200627 win->w_buffer = NULL; /* make sure we don't use the buffer now */
628
629 /* Autocommands may have opened or closed windows for this buffer.
630 * Decrement the count for the close we do here. */
631 if (buf->b_nwindows > 0)
632 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 /*
635 * Remove the buffer from the list.
636 */
637 if (wipe_buf)
638 {
639#ifdef FEAT_SUN_WORKSHOP
640 if (usingSunWorkShop)
641 workshop_file_closed_lineno((char *)buf->b_ffname,
642 (int)buf->b_last_cursor.lnum);
643#endif
644 vim_free(buf->b_ffname);
645 vim_free(buf->b_sfname);
646 if (buf->b_prev == NULL)
647 firstbuf = buf->b_next;
648 else
649 buf->b_prev->b_next = buf->b_next;
650 if (buf->b_next == NULL)
651 lastbuf = buf->b_prev;
652 else
653 buf->b_next->b_prev = buf->b_prev;
654 free_buffer(buf);
655 }
656 else
657 {
658 if (del_buf)
659 {
660 /* Free all internal variables and reset option values, to make
661 * ":bdel" compatible with Vim 5.7. */
662 free_buffer_stuff(buf, TRUE);
663
664 /* Make it look like a new buffer. */
665 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
666
667 /* Init the options when loaded again. */
668 buf->b_p_initialized = FALSE;
669 }
670 buf_clear_file(buf);
671 if (del_buf)
672 buf->b_p_bl = FALSE;
673 }
674}
675
676/*
677 * Make buffer not contain a file.
678 */
679 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100680buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681{
682 buf->b_ml.ml_line_count = 1;
683 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 buf->b_p_eol = TRUE;
686 buf->b_start_eol = TRUE;
687#ifdef FEAT_MBYTE
688 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000689 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690#endif
691 buf->b_ml.ml_mfp = NULL;
692 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
693#ifdef FEAT_NETBEANS_INTG
694 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695#endif
696}
697
698/*
699 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200700 * the file. Careful: get here with "curwin" NULL when exiting.
701 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200702 * BFA_DEL buffer is going to be deleted
703 * BFA_WIPE buffer is going to be wiped out
704 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100707buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200710 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200711 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200712 win_T *the_curwin = curwin;
713 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714
Bram Moolenaar5a497892016-09-03 16:29:04 +0200715 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200716 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200717 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200718 if (buf->b_ml.ml_mfp != NULL)
719 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200720 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
721 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200722 && !bufref_valid(&bufref))
723 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200724 return;
725 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200726 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200728 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
729 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200730 && !bufref_valid(&bufref))
731 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 return;
733 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200734 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200736 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
737 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200738 && !bufref_valid(&bufref))
739 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 return;
741 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200742 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200743
Bram Moolenaar5a497892016-09-03 16:29:04 +0200744 /* If the buffer was in curwin and the window has changed, go back to that
745 * window, if it still exists. This avoids that ":edit x" triggering a
746 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
747 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
748 {
749 block_autocmds();
750 goto_tabpage_win(the_curtab, the_curwin);
751 unblock_autocmds();
752 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200753
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100754#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000755 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100757#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758
759 /*
760 * It's possible that autocommands change curbuf to the one being deleted.
761 * This might cause curbuf to be deleted unexpectedly. But in some cases
762 * it's OK to delete the curbuf, because a new one is obtained anyway.
763 * Therefore only return if curbuf changed to the deleted buffer.
764 */
765 if (buf == curbuf && !is_curbuf)
766 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767#ifdef FEAT_DIFF
768 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
769#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200770#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100771 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200772 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100773 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200774#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000775
776#ifdef FEAT_FOLDING
777 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000778 {
779 win_T *win;
780 tabpage_T *tp;
781
782 FOR_ALL_TAB_WINDOWS(tp, win)
783 if (win->w_buffer == buf)
784 clearFolding(win);
785 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000786#endif
787
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788#ifdef FEAT_TCL
789 tcl_buffer_free(buf);
790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 ml_close(buf, TRUE); /* close and delete the memline/memfile */
792 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200793 if ((flags & BFA_KEEP_UNDO) == 0)
794 {
795 u_blockfree(buf); /* free the memory allocated for undo */
796 u_clearall(buf); /* reset all undo information */
797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200799 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000801 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802}
803
804/*
805 * Free a buffer structure and the things it contains related to the buffer
806 * itself (not the file, that must have been done already).
807 */
808 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100809free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200811 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200813#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200814 /* b:changedtick uses an item in buf_T, remove it now */
815 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200816 unref_var_dict(buf->b_vars);
817#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200818#ifdef FEAT_LUA
819 lua_buffer_free(buf);
820#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000821#ifdef FEAT_MZSCHEME
822 mzscheme_buffer_free(buf);
823#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824#ifdef FEAT_PERL
825 perl_buf_free(buf);
826#endif
827#ifdef FEAT_PYTHON
828 python_buffer_free(buf);
829#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200830#ifdef FEAT_PYTHON3
831 python3_buffer_free(buf);
832#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833#ifdef FEAT_RUBY
834 ruby_buffer_free(buf);
835#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200836#ifdef FEAT_JOB_CHANNEL
837 channel_buffer_free(buf);
838#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200839#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200840 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200841#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200842
843 buf_hashtab_remove(buf);
844
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200845 aubuflocal_remove(buf);
846
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200847 if (autocmd_busy)
848 {
849 /* Do not free the buffer structure while autocommands are executing,
850 * it's still needed. Free it when autocmd_busy is reset. */
851 buf->b_next = au_pending_free_buf;
852 au_pending_free_buf = buf;
853 }
854 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200855 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856}
857
858/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100859 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100860 */
861 static void
862init_changedtick(buf_T *buf)
863{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100864 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100865
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100866 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
867 di->di_tv.v_type = VAR_NUMBER;
868 di->di_tv.v_lock = VAR_FIXED;
869 di->di_tv.vval.v_number = 0;
870
Bram Moolenaar92769c32017-02-25 15:41:37 +0100871#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100872 STRCPY(buf->b_ct_di.di_key, "changedtick");
873 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100874#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100875}
876
877/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
879 */
880 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100881free_buffer_stuff(
882 buf_T *buf,
883 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884{
885 if (free_options)
886 {
887 clear_wininfo(buf); /* including window-local options */
888 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200889#ifdef FEAT_SPELL
890 ga_clear(&buf->b_s.b_langp);
891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 }
893#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100894 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100895 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100896
897 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
898 hash_init(&buf->b_vars->dv_hashtab);
899 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100900 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902#endif
903#ifdef FEAT_USR_CMDS
904 uc_clear(&buf->b_ucmds); /* clear local user commands */
905#endif
906#ifdef FEAT_SIGNS
907 buf_delete_signs(buf); /* delete any signs */
908#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000909#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200910 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912#ifdef FEAT_LOCALMAP
913 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
914 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
915#endif
916#ifdef FEAT_MBYTE
Bram Moolenaard23a8232018-02-10 18:45:26 +0100917 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918#endif
919}
920
921/*
922 * Free the b_wininfo list for buffer "buf".
923 */
924 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100925clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926{
927 wininfo_T *wip;
928
929 while (buf->b_wininfo != NULL)
930 {
931 wip = buf->b_wininfo;
932 buf->b_wininfo = wip->wi_next;
933 if (wip->wi_optset)
934 {
935 clear_winopt(&wip->wi_opt);
936#ifdef FEAT_FOLDING
937 deleteFoldRecurse(&wip->wi_folds);
938#endif
939 }
940 vim_free(wip);
941 }
942}
943
944#if defined(FEAT_LISTCMDS) || defined(PROTO)
945/*
946 * Go to another buffer. Handles the result of the ATTENTION dialog.
947 */
948 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100949goto_buffer(
950 exarg_T *eap,
951 int start,
952 int dir,
953 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954{
Bram Moolenaar4033c552017-09-16 20:54:51 +0200955# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200956 bufref_T old_curbuf;
957
958 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959
960 swap_exists_action = SEA_DIALOG;
961# endif
962 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
963 start, dir, count, eap->forceit);
Bram Moolenaar4033c552017-09-16 20:54:51 +0200964# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
966 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100967# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000968 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000969
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000970 /* Reset the error/interrupt/exception state here so that
971 * aborting() returns FALSE when closing a window. */
972 enter_cleanup(&cs);
973# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000974
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000975 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 win_close(curwin, TRUE);
977 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000978 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000979
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100980# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000981 /* Restore the error/interrupt/exception state if not discarded by a
982 * new aborting error, interrupt, or uncaught exception. */
983 leave_cleanup(&cs);
984# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 }
986 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200987 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988# endif
989}
990#endif
991
Bram Moolenaare64ac772005-12-07 20:54:59 +0000992#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993/*
994 * Handle the situation of swap_exists_action being set.
995 * It is allowed for "old_curbuf" to be NULL or invalid.
996 */
997 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200998handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001000# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001001 cleanup_T cs;
1002# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001003# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001004 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001005# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001006 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 if (swap_exists_action == SEA_QUIT)
1009 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001010# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001011 /* Reset the error/interrupt/exception state here so that
1012 * aborting() returns FALSE when closing a buffer. */
1013 enter_cleanup(&cs);
1014# endif
1015
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 /* User selected Quit at ATTENTION prompt. Go back to previous
1017 * buffer. If that buffer is gone or the same as the current one,
1018 * open a new, empty buffer. */
1019 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001020 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001021 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001022 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1023 || old_curbuf->br_buf == curbuf)
1024 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1025 else
1026 buf = old_curbuf->br_buf;
1027 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001028 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001029 enter_buffer(buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001030# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001031 if (old_tw != curbuf->b_p_tw)
1032 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001033# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001036
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001037# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001038 /* Restore the error/interrupt/exception state if not discarded by a
1039 * new aborting error, interrupt, or uncaught exception. */
1040 leave_cleanup(&cs);
1041# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 }
1043 else if (swap_exists_action == SEA_RECOVER)
1044 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001045# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001046 /* Reset the error/interrupt/exception state here so that
1047 * aborting() returns FALSE when closing a buffer. */
1048 enter_cleanup(&cs);
1049# endif
1050
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 /* User selected Recover at ATTENTION prompt. */
1052 msg_scroll = TRUE;
1053 ml_recover();
1054 MSG_PUTS("\n"); /* don't overwrite the last message */
1055 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001056 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001057
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001058# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001059 /* Restore the error/interrupt/exception state if not discarded by a
1060 * new aborting error, interrupt, or uncaught exception. */
1061 leave_cleanup(&cs);
1062# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 }
1064 swap_exists_action = SEA_NONE;
1065}
1066#endif
1067
1068#if defined(FEAT_LISTCMDS) || defined(PROTO)
1069/*
1070 * do_bufdel() - delete or unload buffer(s)
1071 *
1072 * addr_count == 0: ":bdel" - delete current buffer
1073 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1074 * buffer "end_bnr", then any other arguments.
1075 * addr_count == 2: ":N,N bdel" - delete buffers in range
1076 *
1077 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1078 * DOBUF_DEL (":bdel")
1079 *
1080 * Returns error message or NULL
1081 */
1082 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001083do_bufdel(
1084 int command,
1085 char_u *arg, /* pointer to extra arguments */
1086 int addr_count,
1087 int start_bnr, /* first buffer number in a range */
1088 int end_bnr, /* buffer nr or last buffer nr in a range */
1089 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090{
1091 int do_current = 0; /* delete current buffer? */
1092 int deleted = 0; /* number of buffers deleted */
1093 char_u *errormsg = NULL; /* return value */
1094 int bnr; /* buffer number */
1095 char_u *p;
1096
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 if (addr_count == 0)
1098 {
1099 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1100 }
1101 else
1102 {
1103 if (addr_count == 2)
1104 {
1105 if (*arg) /* both range and argument is not allowed */
1106 return (char_u *)_(e_trailing);
1107 bnr = start_bnr;
1108 }
1109 else /* addr_count == 1 */
1110 bnr = end_bnr;
1111
1112 for ( ;!got_int; ui_breakcheck())
1113 {
1114 /*
1115 * delete the current buffer last, otherwise when the
1116 * current buffer is deleted, the next buffer becomes
1117 * the current one and will be loaded, which may then
1118 * also be deleted, etc.
1119 */
1120 if (bnr == curbuf->b_fnum)
1121 do_current = bnr;
1122 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1123 forceit) == OK)
1124 ++deleted;
1125
1126 /*
1127 * find next buffer number to delete/unload
1128 */
1129 if (addr_count == 2)
1130 {
1131 if (++bnr > end_bnr)
1132 break;
1133 }
1134 else /* addr_count == 1 */
1135 {
1136 arg = skipwhite(arg);
1137 if (*arg == NUL)
1138 break;
1139 if (!VIM_ISDIGIT(*arg))
1140 {
1141 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001142 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1143 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 if (bnr < 0) /* failed */
1145 break;
1146 arg = p;
1147 }
1148 else
1149 bnr = getdigits(&arg);
1150 }
1151 }
1152 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1153 FORWARD, do_current, forceit) == OK)
1154 ++deleted;
1155
1156 if (deleted == 0)
1157 {
1158 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001159 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001161 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001163 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 errormsg = IObuff;
1165 }
1166 else if (deleted >= p_report)
1167 {
1168 if (command == DOBUF_UNLOAD)
1169 {
1170 if (deleted == 1)
1171 MSG(_("1 buffer unloaded"));
1172 else
1173 smsg((char_u *)_("%d buffers unloaded"), deleted);
1174 }
1175 else if (command == DOBUF_DEL)
1176 {
1177 if (deleted == 1)
1178 MSG(_("1 buffer deleted"));
1179 else
1180 smsg((char_u *)_("%d buffers deleted"), deleted);
1181 }
1182 else
1183 {
1184 if (deleted == 1)
1185 MSG(_("1 buffer wiped out"));
1186 else
1187 smsg((char_u *)_("%d buffers wiped out"), deleted);
1188 }
1189 }
1190 }
1191
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192
1193 return errormsg;
1194}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001195#endif /* FEAT_LISTCMDS */
1196
1197#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1198 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001200static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001201
1202/*
1203 * Make the current buffer empty.
1204 * Used when it is wiped out and it's the last buffer.
1205 */
1206 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001207empty_curbuf(
1208 int close_others,
1209 int forceit,
1210 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001211{
1212 int retval;
1213 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001214 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001215
1216 if (action == DOBUF_UNLOAD)
1217 {
1218 EMSG(_("E90: Cannot unload last buffer"));
1219 return FAIL;
1220 }
1221
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001222 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001223 if (close_others)
1224 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001225 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001226
1227 setpcmark();
1228 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1229 forceit ? ECMD_FORCEIT : 0, curwin);
1230
1231 /*
1232 * do_ecmd() may create a new buffer, then we have to delete
1233 * the old one. But do_ecmd() may have done that already, check
1234 * if the buffer still exists.
1235 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001236 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001237 close_buffer(NULL, buf, action, FALSE);
1238 if (!close_others)
1239 need_fileinfo = FALSE;
1240 return retval;
1241}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242/*
1243 * Implementation of the commands for the buffer list.
1244 *
1245 * action == DOBUF_GOTO go to specified buffer
1246 * action == DOBUF_SPLIT split window and go to specified buffer
1247 * action == DOBUF_UNLOAD unload specified buffer(s)
1248 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1249 * action == DOBUF_WIPE delete specified buffer(s) really
1250 *
1251 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1252 * start == DOBUF_FIRST go to "count" buffer from first buffer
1253 * start == DOBUF_LAST go to "count" buffer from last buffer
1254 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1255 *
1256 * Return FAIL or OK.
1257 */
1258 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001259do_buffer(
1260 int action,
1261 int start,
1262 int dir, /* FORWARD or BACKWARD */
1263 int count, /* buffer number or number of buffers */
1264 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265{
1266 buf_T *buf;
1267 buf_T *bp;
1268 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1269 || action == DOBUF_WIPE);
1270
1271 switch (start)
1272 {
1273 case DOBUF_FIRST: buf = firstbuf; break;
1274 case DOBUF_LAST: buf = lastbuf; break;
1275 default: buf = curbuf; break;
1276 }
1277 if (start == DOBUF_MOD) /* find next modified buffer */
1278 {
1279 while (count-- > 0)
1280 {
1281 do
1282 {
1283 buf = buf->b_next;
1284 if (buf == NULL)
1285 buf = firstbuf;
1286 }
1287 while (buf != curbuf && !bufIsChanged(buf));
1288 }
1289 if (!bufIsChanged(buf))
1290 {
1291 EMSG(_("E84: No modified buffer found"));
1292 return FAIL;
1293 }
1294 }
1295 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1296 {
1297 while (buf != NULL && buf->b_fnum != count)
1298 buf = buf->b_next;
1299 }
1300 else
1301 {
1302 bp = NULL;
1303 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1304 {
1305 /* remember the buffer where we start, we come back there when all
1306 * buffers are unlisted. */
1307 if (bp == NULL)
1308 bp = buf;
1309 if (dir == FORWARD)
1310 {
1311 buf = buf->b_next;
1312 if (buf == NULL)
1313 buf = firstbuf;
1314 }
1315 else
1316 {
1317 buf = buf->b_prev;
1318 if (buf == NULL)
1319 buf = lastbuf;
1320 }
1321 /* don't count unlisted buffers */
1322 if (unload || buf->b_p_bl)
1323 {
1324 --count;
1325 bp = NULL; /* use this buffer as new starting point */
1326 }
1327 if (bp == buf)
1328 {
1329 /* back where we started, didn't find anything. */
1330 EMSG(_("E85: There is no listed buffer"));
1331 return FAIL;
1332 }
1333 }
1334 }
1335
1336 if (buf == NULL) /* could not find it */
1337 {
1338 if (start == DOBUF_FIRST)
1339 {
1340 /* don't warn when deleting */
1341 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001342 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 }
1344 else if (dir == FORWARD)
1345 EMSG(_("E87: Cannot go beyond last buffer"));
1346 else
1347 EMSG(_("E88: Cannot go before first buffer"));
1348 return FAIL;
1349 }
1350
1351#ifdef FEAT_GUI
1352 need_mouse_correct = TRUE;
1353#endif
1354
1355#ifdef FEAT_LISTCMDS
1356 /*
1357 * delete buffer buf from memory and/or the list
1358 */
1359 if (unload)
1360 {
1361 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001362 bufref_T bufref;
1363
1364 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365
1366 /* When unloading or deleting a buffer that's already unloaded and
1367 * unlisted: fail silently. */
1368 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1369 return FAIL;
1370
1371 if (!forceit && bufIsChanged(buf))
1372 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001373# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 if ((p_confirm || cmdmod.confirm) && p_write)
1375 {
1376 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001377 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 /* Autocommand deleted buffer, oops! It's not changed
1379 * now. */
1380 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001381 /* If it's still changed fail silently, the dialog already
1382 * mentioned why it fails. */
1383 if (bufIsChanged(buf))
1384 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001386 else
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001387# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 {
1389 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1390 buf->b_fnum);
1391 return FAIL;
1392 }
1393 }
1394
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001395 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001396 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001397 end_visual_mode();
1398
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 /*
1400 * If deleting the last (listed) buffer, make it empty.
1401 * The last (listed) buffer cannot be unloaded.
1402 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001403 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (bp->b_p_bl && bp != buf)
1405 break;
1406 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001407 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 /*
1410 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001411 * (unless it's the only window). Repeat this so long as we end up in
1412 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001414 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001415 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001416 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001417 {
1418 if (win_close(curwin, FALSE) == FAIL)
1419 break;
1420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421
1422 /*
1423 * If the buffer to be deleted is not the current one, delete it here.
1424 */
1425 if (buf != curbuf)
1426 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001427 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001428 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001429 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 return OK;
1431 }
1432
1433 /*
1434 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001435 * There should be another, otherwise it would have been handled
1436 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001437 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 * Then prefer the buffer we most recently visited.
1439 * Else try to find one that is loaded, after the current buffer,
1440 * then before the current buffer.
1441 * Finally use any buffer.
1442 */
1443 buf = NULL; /* selected buffer */
1444 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001445 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1446 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001448 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 {
1450 int jumpidx;
1451
1452 jumpidx = curwin->w_jumplistidx - 1;
1453 if (jumpidx < 0)
1454 jumpidx = curwin->w_jumplistlen - 1;
1455
1456 forward = jumpidx;
1457 while (jumpidx != curwin->w_jumplistidx)
1458 {
1459 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1460 if (buf != NULL)
1461 {
1462 if (buf == curbuf || !buf->b_p_bl)
1463 buf = NULL; /* skip current and unlisted bufs */
1464 else if (buf->b_ml.ml_mfp == NULL)
1465 {
1466 /* skip unloaded buf, but may keep it for later */
1467 if (bp == NULL)
1468 bp = buf;
1469 buf = NULL;
1470 }
1471 }
1472 if (buf != NULL) /* found a valid buffer: stop searching */
1473 break;
1474 /* advance to older entry in jump list */
1475 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1476 break;
1477 if (--jumpidx < 0)
1478 jumpidx = curwin->w_jumplistlen - 1;
1479 if (jumpidx == forward) /* List exhausted for sure */
1480 break;
1481 }
1482 }
1483#endif
1484
1485 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1486 {
1487 forward = TRUE;
1488 buf = curbuf->b_next;
1489 for (;;)
1490 {
1491 if (buf == NULL)
1492 {
1493 if (!forward) /* tried both directions */
1494 break;
1495 buf = curbuf->b_prev;
1496 forward = FALSE;
1497 continue;
1498 }
1499 /* in non-help buffer, try to skip help buffers, and vv */
1500 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1501 {
1502 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1503 break;
1504 if (bp == NULL) /* remember unloaded buf for later */
1505 bp = buf;
1506 }
1507 if (forward)
1508 buf = buf->b_next;
1509 else
1510 buf = buf->b_prev;
1511 }
1512 }
1513 if (buf == NULL) /* No loaded buffer, use unloaded one */
1514 buf = bp;
1515 if (buf == NULL) /* No loaded buffer, find listed one */
1516 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001517 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 if (buf->b_p_bl && buf != curbuf)
1519 break;
1520 }
1521 if (buf == NULL) /* Still no buffer, just take one */
1522 {
1523 if (curbuf->b_next != NULL)
1524 buf = curbuf->b_next;
1525 else
1526 buf = curbuf->b_prev;
1527 }
1528 }
1529
Bram Moolenaara02471e2014-01-10 16:43:14 +01001530 if (buf == NULL)
1531 {
1532 /* Autocommands must have wiped out all other buffers. Only option
1533 * now is to make the current buffer empty. */
1534 return empty_curbuf(FALSE, forceit, action);
1535 }
1536
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 /*
1538 * make buf current buffer
1539 */
1540 if (action == DOBUF_SPLIT) /* split window first */
1541 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001542 /* If 'switchbuf' contains "useopen": jump to first window containing
1543 * "buf" if one exists */
1544 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001545 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001546 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001547 * page containing "buf" if one exists */
1548 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 return OK;
1550 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 return FAIL;
1552 }
1553#endif
1554
1555 /* go to current buffer - nothing to do */
1556 if (buf == curbuf)
1557 return OK;
1558
1559 /*
1560 * Check if the current buffer may be abandoned.
1561 */
1562 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1563 {
1564#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1565 if ((p_confirm || cmdmod.confirm) && p_write)
1566 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001567 bufref_T bufref;
1568
1569 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001571 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 /* Autocommand deleted buffer, oops! */
1573 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 }
1575 if (bufIsChanged(curbuf))
1576#endif
1577 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001578 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 return FAIL;
1580 }
1581 }
1582
1583 /* Go to the other buffer. */
1584 set_curbuf(buf, action);
1585
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01001586#if defined(FEAT_LISTCMDS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001588 {
1589 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591#endif
1592
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001593#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 if (aborting()) /* autocmds may abort script processing */
1595 return FAIL;
1596#endif
1597
1598 return OK;
1599}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001600#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601
1602/*
1603 * Set current buffer to "buf". Executes autocommands and closes current
1604 * buffer. "action" tells how to close the current buffer:
1605 * DOBUF_GOTO free or hide it
1606 * DOBUF_SPLIT nothing
1607 * DOBUF_UNLOAD unload it
1608 * DOBUF_DEL delete it
1609 * DOBUF_WIPE wipe it out
1610 */
1611 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001612set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613{
1614 buf_T *prevbuf;
1615 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1616 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001617#ifdef FEAT_SYN_HL
1618 long old_tw = curbuf->b_p_tw;
1619#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001620 bufref_T newbufref;
1621 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622
1623 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001624 if (!cmdmod.keepalt)
1625 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001626 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 /* Don't restart Select mode after switching to another buffer. */
1629 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001631 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1632 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001634 set_bufref(&prevbufref, prevbuf);
1635 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001637 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1638 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001639 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001640 || (bufref_valid(&prevbufref)
1641 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001642#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001643 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001645 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001647#ifdef FEAT_SYN_HL
1648 if (prevbuf == curwin->w_buffer)
1649 reset_synblock(curwin);
1650#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001652 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001653#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001654 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001656 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001658 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001659 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001660 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001661 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1663 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001664 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001665 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001666 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001667 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001668 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001669 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001671 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001672 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001673 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1674 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001675#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001676 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001678 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001679 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001681#ifdef FEAT_SYN_HL
1682 if (old_tw != curbuf->b_p_tw)
1683 check_colorcolumn(curwin);
1684#endif
1685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686}
1687
1688/*
1689 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001690 * Old curbuf must have been abandoned already! This also means "curbuf" may
1691 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 */
1693 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001694enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695{
1696 /* Copy buffer and window local option values. Not for a help buffer. */
1697 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1698 if (!buf->b_help)
1699 get_winopts(buf);
1700#ifdef FEAT_FOLDING
1701 else
1702 /* Remove all folds in the window. */
1703 clearFolding(curwin);
1704 foldUpdateAll(curwin); /* update folds (later). */
1705#endif
1706
1707 /* Get the buffer in the current window. */
1708 curwin->w_buffer = buf;
1709 curbuf = buf;
1710 ++curbuf->b_nwindows;
1711
1712#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001713 if (curwin->w_p_diff)
1714 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715#endif
1716
Bram Moolenaara971b822011-09-14 14:43:25 +02001717#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001718 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001719#endif
1720
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 /* Cursor on first line by default. */
1722 curwin->w_cursor.lnum = 1;
1723 curwin->w_cursor.col = 0;
1724#ifdef FEAT_VIRTUALEDIT
1725 curwin->w_cursor.coladd = 0;
1726#endif
1727 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001728 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001730 /* mark cursor position as being invalid */
1731 curwin->w_valid = 0;
1732
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 /* Make sure the buffer is loaded. */
1734 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001735 {
1736 /* If there is no filetype, allow for detecting one. Esp. useful for
1737 * ":ball" used in a autocommand. If there already is a filetype we
1738 * might prefer to keep it. */
1739 if (*curbuf->b_p_ft == NUL)
1740 did_filetype = FALSE;
1741
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001742 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001743 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 else
1745 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001746 if (!msg_silent)
1747 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001750#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001752#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1754 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 }
1756
1757 /* If autocommands did not change the cursor position, restore cursor lnum
1758 * and possibly cursor col. */
1759 if (curwin->w_cursor.lnum == 1 && inindent(0))
1760 buflist_getfpos();
1761
1762 check_arg_idx(curwin); /* check for valid arg_idx */
1763#ifdef FEAT_TITLE
1764 maketitle();
1765#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001766 /* when autocmds didn't change it */
1767 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1769
Bram Moolenaar009b2592004-10-24 19:18:58 +00001770#ifdef FEAT_NETBEANS_INTG
1771 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001772 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001773#endif
1774
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001775 /* Change directories when the 'acd' option is set. */
1776 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777
1778#ifdef FEAT_KEYMAP
1779 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001780 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001782#ifdef FEAT_SPELL
1783 /* May need to set the spell language. Can only do this after the buffer
1784 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001785 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1786 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001787#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001788#ifdef FEAT_VIMINFO
1789 curbuf->b_last_used = vim_time();
1790#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001791
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 redraw_later(NOT_VALID);
1793}
1794
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001795#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1796/*
1797 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001798 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001799 */
1800 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001801do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001802{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001803 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001804 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001805 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001806 shorten_fnames(TRUE);
1807}
1808#endif
1809
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001810 void
1811no_write_message(void)
1812{
1813#ifdef FEAT_TERMINAL
1814 if (term_job_running(curbuf->b_term))
1815 EMSG(_("E948: Job still running (add ! to end the job)"));
1816 else
1817#endif
1818 EMSG(_("E37: No write since last change (add ! to override)"));
1819}
1820
1821 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001822no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001823{
1824#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001825 if (term_job_running(buf->b_term))
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001826 EMSG(_("E948: Job still running"));
1827 else
1828#endif
1829 EMSG(_("E37: No write since last change"));
1830}
1831
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832/*
1833 * functions for dealing with the buffer list
1834 */
1835
Bram Moolenaar480778b2016-07-14 22:09:39 +02001836static int top_file_num = 1; /* highest file number */
1837
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838/*
1839 * Add a file name to the buffer list. Return a pointer to the buffer.
1840 * If the same file name already exists return a pointer to that buffer.
1841 * If it does not exist, or if fname == NULL, a new entry is created.
1842 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1843 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1844 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001845 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001846 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1847 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 * This is the ONLY way to create a new buffer.
1849 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001851buflist_new(
1852 char_u *ffname, /* full path of fname or relative */
1853 char_u *sfname, /* short fname or NULL */
1854 linenr_T lnum, /* preferred cursor line */
1855 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856{
1857 buf_T *buf;
1858#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001859 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860#endif
1861
Bram Moolenaar480778b2016-07-14 22:09:39 +02001862 if (top_file_num == 1)
1863 hash_init(&buf_hashtab);
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1866
1867 /*
1868 * If file name already exists in the list, update the entry.
1869 */
1870#ifdef UNIX
1871 /* On Unix we can use inode numbers when the file exists. Works better
1872 * for hard links. */
1873 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1874 st.st_dev = (dev_T)-1;
1875#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001876 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877#ifdef UNIX
1878 buflist_findname_stat(ffname, &st)
1879#else
1880 buflist_findname(ffname)
1881#endif
1882 ) != NULL)
1883 {
1884 vim_free(ffname);
1885 if (lnum != 0)
1886 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001887
1888 if ((flags & BLN_NOOPT) == 0)
1889 /* copy the options now, if 'cpo' doesn't have 's' and not done
1890 * already */
1891 buf_copy_options(buf, 0);
1892
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1894 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001895 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001896
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001898 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001900 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001901 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001902 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001903 return NULL;
1904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 }
1906 return buf;
1907 }
1908
1909 /*
1910 * If the current buffer has no name and no contents, use the current
1911 * buffer. Otherwise: Need to allocate a new buffer structure.
1912 *
1913 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001914 * (A spell file buffer is allocated in spell.c, but that's not a normal
1915 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 */
1917 buf = NULL;
1918 if ((flags & BLN_CURBUF)
1919 && curbuf != NULL
1920 && curbuf->b_ffname == NULL
1921 && curbuf->b_nwindows <= 1
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001922 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 {
1924 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 /* It's like this buffer is deleted. Watch out for autocommands that
1926 * change curbuf! If that happens, allocate a new buffer anyway. */
1927 if (curbuf->b_p_bl)
1928 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1929 if (buf == curbuf)
1930 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001931#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001932 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 {
1937 /* Make sure 'bufhidden' and 'buftype' are empty */
1938 clear_string_option(&buf->b_p_bh);
1939 clear_string_option(&buf->b_p_bt);
1940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 }
1942 if (buf != curbuf || curbuf == NULL)
1943 {
1944 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1945 if (buf == NULL)
1946 {
1947 vim_free(ffname);
1948 return NULL;
1949 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001950#ifdef FEAT_EVAL
1951 /* init b: variables */
1952 buf->b_vars = dict_alloc();
1953 if (buf->b_vars == NULL)
1954 {
1955 vim_free(ffname);
1956 vim_free(buf);
1957 return NULL;
1958 }
1959 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1960#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001961 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 }
1963
1964 if (ffname != NULL)
1965 {
1966 buf->b_ffname = ffname;
1967 buf->b_sfname = vim_strsave(sfname);
1968 }
1969
1970 clear_wininfo(buf);
1971 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1972
1973 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1974 || buf->b_wininfo == NULL)
1975 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001976 VIM_CLEAR(buf->b_ffname);
1977 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 if (buf != curbuf)
1979 free_buffer(buf);
1980 return NULL;
1981 }
1982
1983 if (buf == curbuf)
1984 {
1985 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001986 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 if (buf != curbuf) /* autocommands deleted the buffer! */
1988 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001989#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001990 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 return NULL;
1992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01001994
1995 /* Init the options. */
1996 buf->b_p_initialized = FALSE;
1997 buf_copy_options(buf, BCO_ENTER);
1998
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999#ifdef FEAT_KEYMAP
2000 /* need to reload lmaps and set b:keymap_name */
2001 curbuf->b_kmap_state |= KEYMAP_INIT;
2002#endif
2003 }
2004 else
2005 {
2006 /*
2007 * put new buffer at the end of the buffer list
2008 */
2009 buf->b_next = NULL;
2010 if (firstbuf == NULL) /* buffer list is empty */
2011 {
2012 buf->b_prev = NULL;
2013 firstbuf = buf;
2014 }
2015 else /* append new buffer at end of list */
2016 {
2017 lastbuf->b_next = buf;
2018 buf->b_prev = lastbuf;
2019 }
2020 lastbuf = buf;
2021
2022 buf->b_fnum = top_file_num++;
2023 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2024 {
2025 EMSG(_("W14: Warning: List of file names overflow"));
2026 if (emsg_silent == 0)
2027 {
2028 out_flush();
2029 ui_delay(3000L, TRUE); /* make sure it is noticed */
2030 }
2031 top_file_num = 1;
2032 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002033 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034
2035 /*
2036 * Always copy the options from the current buffer.
2037 */
2038 buf_copy_options(buf, BCO_ALWAYS);
2039 }
2040
2041 buf->b_wininfo->wi_fpos.lnum = lnum;
2042 buf->b_wininfo->wi_win = curwin;
2043
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002044#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002045 hash_init(&buf->b_s.b_keywtab);
2046 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047#endif
2048
2049 buf->b_fname = buf->b_sfname;
2050#ifdef UNIX
2051 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002052 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 else
2054 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002055 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 buf->b_dev = st.st_dev;
2057 buf->b_ino = st.st_ino;
2058 }
2059#endif
2060 buf->b_u_synced = TRUE;
2061 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002062 if (flags & BLN_DUMMY)
2063 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 buf_clear_file(buf);
2065 clrallmarks(buf); /* clear marks */
2066 fmarks_check_names(buf); /* check file marks for this file */
2067 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 if (!(flags & BLN_DUMMY))
2069 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002070 bufref_T bufref;
2071
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002072 /* Tricky: these autocommands may change the buffer list. They could
2073 * also split the window with re-using the one empty buffer. This may
2074 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002075 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002076 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002077 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002078 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002080 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002081 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002082 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002083 return NULL;
2084 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002085#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002086 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090
2091 return buf;
2092}
2093
2094/*
2095 * Free the memory for the options of a buffer.
2096 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2097 * 'fileencoding'.
2098 */
2099 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002100free_buf_options(
2101 buf_T *buf,
2102 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103{
2104 if (free_p_ff)
2105 {
2106#ifdef FEAT_MBYTE
2107 clear_string_option(&buf->b_p_fenc);
2108#endif
2109 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 clear_string_option(&buf->b_p_bh);
2111 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 }
2113#ifdef FEAT_FIND_ID
2114 clear_string_option(&buf->b_p_def);
2115 clear_string_option(&buf->b_p_inc);
2116# ifdef FEAT_EVAL
2117 clear_string_option(&buf->b_p_inex);
2118# endif
2119#endif
2120#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2121 clear_string_option(&buf->b_p_inde);
2122 clear_string_option(&buf->b_p_indk);
2123#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002124#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2125 clear_string_option(&buf->b_p_bexpr);
2126#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002127#if defined(FEAT_CRYPT)
2128 clear_string_option(&buf->b_p_cm);
2129#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002130 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002131#if defined(FEAT_EVAL)
2132 clear_string_option(&buf->b_p_fex);
2133#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134#ifdef FEAT_CRYPT
2135 clear_string_option(&buf->b_p_key);
2136#endif
2137 clear_string_option(&buf->b_p_kp);
2138 clear_string_option(&buf->b_p_mps);
2139 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002140 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 clear_string_option(&buf->b_p_isk);
2142#ifdef FEAT_KEYMAP
2143 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002144 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 ga_clear(&buf->b_kmap_ga);
2146#endif
2147#ifdef FEAT_COMMENTS
2148 clear_string_option(&buf->b_p_com);
2149#endif
2150#ifdef FEAT_FOLDING
2151 clear_string_option(&buf->b_p_cms);
2152#endif
2153 clear_string_option(&buf->b_p_nf);
2154#ifdef FEAT_SYN_HL
2155 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002156 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002157#endif
2158#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002159 clear_string_option(&buf->b_s.b_p_spc);
2160 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002161 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002162 buf->b_s.b_cap_prog = NULL;
2163 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164#endif
2165#ifdef FEAT_SEARCHPATH
2166 clear_string_option(&buf->b_p_sua);
2167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169#ifdef FEAT_CINDENT
2170 clear_string_option(&buf->b_p_cink);
2171 clear_string_option(&buf->b_p_cino);
2172#endif
2173#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2174 clear_string_option(&buf->b_p_cinw);
2175#endif
2176#ifdef FEAT_INS_EXPAND
2177 clear_string_option(&buf->b_p_cpt);
2178#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002179#ifdef FEAT_COMPL_FUNC
2180 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002181 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002182#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183#ifdef FEAT_QUICKFIX
2184 clear_string_option(&buf->b_p_gp);
2185 clear_string_option(&buf->b_p_mp);
2186 clear_string_option(&buf->b_p_efm);
2187#endif
2188 clear_string_option(&buf->b_p_ep);
2189 clear_string_option(&buf->b_p_path);
2190 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002191 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192#ifdef FEAT_INS_EXPAND
2193 clear_string_option(&buf->b_p_dict);
2194 clear_string_option(&buf->b_p_tsr);
2195#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002196#ifdef FEAT_TEXTOBJ
2197 clear_string_option(&buf->b_p_qe);
2198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002200 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002201#ifdef FEAT_LISP
2202 clear_string_option(&buf->b_p_lw);
2203#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002204 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002205#ifdef FEAT_MBYTE
2206 clear_string_option(&buf->b_p_menc);
2207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208}
2209
2210/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002211 * Get alternate file "n".
2212 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2213 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 * if (options & GETF_SETMARK) call setpcmark()
2215 * if (options & GETF_ALT) we are jumping to an alternate file.
2216 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2217 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002218 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 */
2220 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002221buflist_getfile(
2222 int n,
2223 linenr_T lnum,
2224 int options,
2225 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226{
2227 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 pos_T *fpos;
2230 colnr_T col;
2231
2232 buf = buflist_findnr(n);
2233 if (buf == NULL)
2234 {
2235 if ((options & GETF_ALT) && n == 0)
2236 EMSG(_(e_noalt));
2237 else
2238 EMSGN(_("E92: Buffer %ld not found"), n);
2239 return FAIL;
2240 }
2241
2242 /* if alternate file is the current buffer, nothing to do */
2243 if (buf == curbuf)
2244 return OK;
2245
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002246 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002247 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002248 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002250 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002251 if (curbuf_locked())
2252 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
2254 /* altfpos may be changed by getfile(), get it now */
2255 if (lnum == 0)
2256 {
2257 fpos = buflist_findfpos(buf);
2258 lnum = fpos->lnum;
2259 col = fpos->col;
2260 }
2261 else
2262 col = 0;
2263
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 if (options & GETF_SWITCH)
2265 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002266 /* If 'switchbuf' contains "useopen": jump to first window containing
2267 * "buf" if one exists */
2268 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002270
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002271 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002272 * page containing "buf" if one exists */
2273 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002274 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002275
2276 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2277 * current buffer isn't empty: open new tab or window */
2278 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002279 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002281 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002282 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002283 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2284 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002286 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 }
2288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289
2290 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002291 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2292 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 {
2294 --RedrawingDisabled;
2295
2296 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2297 if (!p_sol && col != 0)
2298 {
2299 curwin->w_cursor.col = col;
2300 check_cursor_col();
2301#ifdef FEAT_VIRTUALEDIT
2302 curwin->w_cursor.coladd = 0;
2303#endif
2304 curwin->w_set_curswant = TRUE;
2305 }
2306 return OK;
2307 }
2308 --RedrawingDisabled;
2309 return FAIL;
2310}
2311
2312/*
2313 * go to the last know line number for the current buffer
2314 */
2315 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002316buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317{
2318 pos_T *fpos;
2319
2320 fpos = buflist_findfpos(curbuf);
2321
2322 curwin->w_cursor.lnum = fpos->lnum;
2323 check_cursor_lnum();
2324
2325 if (p_sol)
2326 curwin->w_cursor.col = 0;
2327 else
2328 {
2329 curwin->w_cursor.col = fpos->col;
2330 check_cursor_col();
2331#ifdef FEAT_VIRTUALEDIT
2332 curwin->w_cursor.coladd = 0;
2333#endif
2334 curwin->w_set_curswant = TRUE;
2335 }
2336}
2337
Bram Moolenaar81695252004-12-29 20:58:21 +00002338#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2339/*
2340 * Find file in buffer list by name (it has to be for the current window).
2341 * Returns NULL if not found.
2342 */
2343 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002344buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002345{
2346 char_u *ffname;
2347 buf_T *buf = NULL;
2348
2349 /* First make the name into a full path name */
2350 ffname = FullName_save(fname,
2351#ifdef UNIX
2352 TRUE /* force expansion, get rid of symbolic links */
2353#else
2354 FALSE
2355#endif
2356 );
2357 if (ffname != NULL)
2358 {
2359 buf = buflist_findname(ffname);
2360 vim_free(ffname);
2361 }
2362 return buf;
2363}
2364#endif
2365
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366/*
2367 * Find file in buffer list by name (it has to be for the current window).
2368 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002369 * Skips dummy buffers.
2370 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 */
2372 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002373buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374{
2375#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002376 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377
2378 if (mch_stat((char *)ffname, &st) < 0)
2379 st.st_dev = (dev_T)-1;
2380 return buflist_findname_stat(ffname, &st);
2381}
2382
2383/*
2384 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2385 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002386 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 */
2388 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002389buflist_findname_stat(
2390 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002391 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392{
2393#endif
2394 buf_T *buf;
2395
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002396 /* Start at the last buffer, expect to find a match sooner. */
2397 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002398 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399#ifdef UNIX
2400 , stp
2401#endif
2402 ))
2403 return buf;
2404 return NULL;
2405}
2406
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002407#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2408 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409/*
2410 * Find file in buffer list by a regexp pattern.
2411 * Return fnum of the found buffer.
2412 * Return < 0 for error.
2413 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002415buflist_findpat(
2416 char_u *pattern,
2417 char_u *pattern_end, /* pointer to first char after pattern */
2418 int unlisted, /* find unlisted buffers */
2419 int diffmode UNUSED, /* find diff-mode buffers only */
2420 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 int match = -1;
2424 int find_listed;
2425 char_u *pat;
2426 char_u *patend;
2427 int attempt;
2428 char_u *p;
2429 int toggledollar;
2430
2431 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2432 {
2433 if (*pattern == '%')
2434 match = curbuf->b_fnum;
2435 else
2436 match = curwin->w_alt_fnum;
2437#ifdef FEAT_DIFF
2438 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2439 match = -1;
2440#endif
2441 }
2442
2443 /*
2444 * Try four ways of matching a listed buffer:
2445 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002446 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 * attempt == 2: with '$' at end (only match at end)
2448 * attempt == 3: with '^' at start and '$' at end (only full match)
2449 * Repeat this for finding an unlisted buffer if there was no matching
2450 * listed buffer.
2451 */
2452 else
2453 {
2454 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2455 if (pat == NULL)
2456 return -1;
2457 patend = pat + STRLEN(pat) - 1;
2458 toggledollar = (patend > pat && *patend == '$');
2459
2460 /* First try finding a listed buffer. If not found and "unlisted"
2461 * is TRUE, try finding an unlisted buffer. */
2462 find_listed = TRUE;
2463 for (;;)
2464 {
2465 for (attempt = 0; attempt <= 3; ++attempt)
2466 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002467 regmatch_T regmatch;
2468
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 /* may add '^' and '$' */
2470 if (toggledollar)
2471 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2472 p = pat;
2473 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2474 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002475 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2476 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 {
2478 vim_free(pat);
2479 return -1;
2480 }
2481
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002482 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 if (buf->b_p_bl == find_listed
2484#ifdef FEAT_DIFF
2485 && (!diffmode || diff_mode_buf(buf))
2486#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002487 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002489 if (curtab_only)
2490 {
2491 /* Ignore the match if the buffer is not open in
2492 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002493 win_T *wp;
2494
Bram Moolenaar29323592016-07-24 22:04:11 +02002495 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002496 if (wp->w_buffer == buf)
2497 break;
2498 if (wp == NULL)
2499 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 if (match >= 0) /* already found a match */
2502 {
2503 match = -2;
2504 break;
2505 }
2506 match = buf->b_fnum; /* remember first match */
2507 }
2508
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002509 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 if (match >= 0) /* found one match */
2511 break;
2512 }
2513
2514 /* Only search for unlisted buffers if there was no match with
2515 * a listed buffer. */
2516 if (!unlisted || !find_listed || match != -1)
2517 break;
2518 find_listed = FALSE;
2519 }
2520
2521 vim_free(pat);
2522 }
2523
2524 if (match == -2)
2525 EMSG2(_("E93: More than one match for %s"), pattern);
2526 else if (match < 0)
2527 EMSG2(_("E94: No matching buffer for %s"), pattern);
2528 return match;
2529}
2530#endif
2531
2532#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2533
2534/*
2535 * Find all buffer names that match.
2536 * For command line expansion of ":buf" and ":sbuf".
2537 * Return OK if matches found, FAIL otherwise.
2538 */
2539 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002540ExpandBufnames(
2541 char_u *pat,
2542 int *num_file,
2543 char_u ***file,
2544 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545{
2546 int count = 0;
2547 buf_T *buf;
2548 int round;
2549 char_u *p;
2550 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002551 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
2553 *num_file = 0; /* return values in case of FAIL */
2554 *file = NULL;
2555
Bram Moolenaar05159a02005-02-26 23:04:13 +00002556 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2557 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002559 patc = alloc((unsigned)STRLEN(pat) + 11);
2560 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002562 STRCPY(patc, "\\(^\\|[\\/]\\)");
2563 STRCPY(patc + 11, pat + 1);
2564 }
2565 else
2566 patc = pat;
2567
2568 /*
2569 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002570 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002571 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002572 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002573 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002574 regmatch_T regmatch;
2575
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002576 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002577 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002578 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2579 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002580 {
2581 if (patc != pat)
2582 vim_free(patc);
2583 return FAIL;
2584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585
2586 /*
2587 * round == 1: Count the matches.
2588 * round == 2: Build the array to keep the matches.
2589 */
2590 for (round = 1; round <= 2; ++round)
2591 {
2592 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002593 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 {
2595 if (!buf->b_p_bl) /* skip unlisted buffers */
2596 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002597 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 if (p != NULL)
2599 {
2600 if (round == 1)
2601 ++count;
2602 else
2603 {
2604 if (options & WILD_HOME_REPLACE)
2605 p = home_replace_save(buf, p);
2606 else
2607 p = vim_strsave(p);
2608 (*file)[count++] = p;
2609 }
2610 }
2611 }
2612 if (count == 0) /* no match found, break here */
2613 break;
2614 if (round == 1)
2615 {
2616 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2617 if (*file == NULL)
2618 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002619 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002620 if (patc != pat)
2621 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 return FAIL;
2623 }
2624 }
2625 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002626 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 if (count) /* match(es) found, break here */
2628 break;
2629 }
2630
Bram Moolenaar05159a02005-02-26 23:04:13 +00002631 if (patc != pat)
2632 vim_free(patc);
2633
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 *num_file = count;
2635 return (count == 0 ? FAIL : OK);
2636}
2637
2638#endif /* FEAT_CMDL_COMPL */
2639
2640#ifdef HAVE_BUFLIST_MATCH
2641/*
2642 * Check for a match on the file name for buffer "buf" with regprog "prog".
2643 */
2644 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002645buflist_match(
2646 regmatch_T *rmp,
2647 buf_T *buf,
2648 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649{
2650 char_u *match;
2651
2652 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002653 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002655 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656
2657 return match;
2658}
2659
2660/*
2661 * Try matching the regexp in "prog" with file name "name".
2662 * Return "name" when there is a match, NULL when not.
2663 */
2664 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002665fname_match(
2666 regmatch_T *rmp,
2667 char_u *name,
2668 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669{
2670 char_u *match = NULL;
2671 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
2673 if (name != NULL)
2674 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002675 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002676 rmp->rm_ic = p_fic || ignore_case;
2677 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 match = name;
2679 else
2680 {
2681 /* Replace $(HOME) with '~' and try matching again. */
2682 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002683 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 match = name;
2685 vim_free(p);
2686 }
2687 }
2688
2689 return match;
2690}
2691#endif
2692
2693/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002694 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 */
2696 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002697buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002699 char_u key[VIM_SIZEOF_INT * 2 + 1];
2700 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
2702 if (nr == 0)
2703 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002704 sprintf((char *)key, "%x", nr);
2705 hi = hash_find(&buf_hashtab, key);
2706
2707 if (!HASHITEM_EMPTY(hi))
2708 return (buf_T *)(hi->hi_key
2709 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 return NULL;
2711}
2712
2713/*
2714 * Get name of file 'n' in the buffer list.
2715 * When the file has no name an empty string is returned.
2716 * home_replace() is used to shorten the file name (used for marks).
2717 * Returns a pointer to allocated memory, of NULL when failed.
2718 */
2719 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002720buflist_nr2name(
2721 int n,
2722 int fullname,
2723 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724{
2725 buf_T *buf;
2726
2727 buf = buflist_findnr(n);
2728 if (buf == NULL)
2729 return NULL;
2730 return home_replace_save(helptail ? buf : NULL,
2731 fullname ? buf->b_ffname : buf->b_fname);
2732}
2733
2734/*
2735 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2736 * When "copy_options" is TRUE save the local window option values.
2737 * When "lnum" is 0 only do the options.
2738 */
2739 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002740buflist_setfpos(
2741 buf_T *buf,
2742 win_T *win,
2743 linenr_T lnum,
2744 colnr_T col,
2745 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746{
2747 wininfo_T *wip;
2748
2749 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2750 if (wip->wi_win == win)
2751 break;
2752 if (wip == NULL)
2753 {
2754 /* allocate a new entry */
2755 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2756 if (wip == NULL)
2757 return;
2758 wip->wi_win = win;
2759 if (lnum == 0) /* set lnum even when it's 0 */
2760 lnum = 1;
2761 }
2762 else
2763 {
2764 /* remove the entry from the list */
2765 if (wip->wi_prev)
2766 wip->wi_prev->wi_next = wip->wi_next;
2767 else
2768 buf->b_wininfo = wip->wi_next;
2769 if (wip->wi_next)
2770 wip->wi_next->wi_prev = wip->wi_prev;
2771 if (copy_options && wip->wi_optset)
2772 {
2773 clear_winopt(&wip->wi_opt);
2774#ifdef FEAT_FOLDING
2775 deleteFoldRecurse(&wip->wi_folds);
2776#endif
2777 }
2778 }
2779 if (lnum != 0)
2780 {
2781 wip->wi_fpos.lnum = lnum;
2782 wip->wi_fpos.col = col;
2783 }
2784 if (copy_options)
2785 {
2786 /* Save the window-specific option values. */
2787 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2788#ifdef FEAT_FOLDING
2789 wip->wi_fold_manual = win->w_fold_manual;
2790 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2791#endif
2792 wip->wi_optset = TRUE;
2793 }
2794
2795 /* insert the entry in front of the list */
2796 wip->wi_next = buf->b_wininfo;
2797 buf->b_wininfo = wip;
2798 wip->wi_prev = NULL;
2799 if (wip->wi_next)
2800 wip->wi_next->wi_prev = wip;
2801
2802 return;
2803}
2804
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002805#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002806static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002807
2808/*
2809 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2810 * page. That's because a diff is local to a tab page.
2811 */
2812 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002813wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002814{
2815 win_T *wp;
2816
2817 if (wip->wi_opt.wo_diff)
2818 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002819 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002820 /* return FALSE when it's a window in the current tab page, thus
2821 * the buffer was in diff mode here */
2822 if (wip->wi_win == wp)
2823 return FALSE;
2824 return TRUE;
2825 }
2826 return FALSE;
2827}
2828#endif
2829
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830/*
2831 * Find info for the current window in buffer "buf".
2832 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002833 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2834 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 * Returns NULL when there isn't any info.
2836 */
2837 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002838find_wininfo(
2839 buf_T *buf,
2840 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841{
2842 wininfo_T *wip;
2843
2844 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002845 if (wip->wi_win == curwin
2846#ifdef FEAT_DIFF
2847 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2848#endif
2849 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002851
2852 /* If no wininfo for curwin, use the first in the list (that doesn't have
2853 * 'diff' set and is in another tab page). */
2854 if (wip == NULL)
2855 {
2856#ifdef FEAT_DIFF
2857 if (skip_diff_buffer)
2858 {
2859 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2860 if (!wininfo_other_tab_diff(wip))
2861 break;
2862 }
2863 else
2864#endif
2865 wip = buf->b_wininfo;
2866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 return wip;
2868}
2869
2870/*
2871 * Reset the local window options to the values last used in this window.
2872 * If the buffer wasn't used in this window before, use the values from
2873 * the most recently used window. If the values were never set, use the
2874 * global values for the window.
2875 */
2876 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002877get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878{
2879 wininfo_T *wip;
2880
2881 clear_winopt(&curwin->w_onebuf_opt);
2882#ifdef FEAT_FOLDING
2883 clearFolding(curwin);
2884#endif
2885
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002886 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 if (wip != NULL && wip->wi_optset)
2888 {
2889 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2890#ifdef FEAT_FOLDING
2891 curwin->w_fold_manual = wip->wi_fold_manual;
2892 curwin->w_foldinvalid = TRUE;
2893 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2894#endif
2895 }
2896 else
2897 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2898
2899#ifdef FEAT_FOLDING
2900 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2901 if (p_fdls >= 0)
2902 curwin->w_p_fdl = p_fdls;
2903#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002904#ifdef FEAT_SYN_HL
2905 check_colorcolumn(curwin);
2906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907}
2908
2909/*
2910 * Find the position (lnum and col) for the buffer 'buf' for the current
2911 * window.
2912 * Returns a pointer to no_position if no position is found.
2913 */
2914 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002915buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916{
2917 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002918 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002920 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 if (wip != NULL)
2922 return &(wip->wi_fpos);
2923 else
2924 return &no_position;
2925}
2926
2927/*
2928 * Find the lnum for the buffer 'buf' for the current window.
2929 */
2930 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002931buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932{
2933 return buflist_findfpos(buf)->lnum;
2934}
2935
2936#if defined(FEAT_LISTCMDS) || defined(PROTO)
2937/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002938 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002941buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942{
2943 buf_T *buf;
2944 int len;
2945 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002946 int ro_char;
2947 int changed_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948
2949 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2950 {
2951 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002952 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2953 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2954 || (vim_strchr(eap->arg, '+')
2955 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2956 || (vim_strchr(eap->arg, 'a')
2957 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2958 || (vim_strchr(eap->arg, 'h')
2959 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2960 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2961 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2962 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2963 || (vim_strchr(eap->arg, '%') && buf != curbuf)
2964 || (vim_strchr(eap->arg, '#')
2965 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002968 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 else
2970 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002971 if (message_filtered(NameBuff))
2972 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002974 changed_char = (buf->b_flags & BF_READERR) ? 'x'
2975 : (bufIsChanged(buf) ? '+' : ' ');
2976#ifdef FEAT_TERMINAL
2977 if (term_job_running(buf->b_term))
2978 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02002979 if (term_none_open(buf->b_term))
2980 ro_char = '?';
2981 else
2982 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002983 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
2984 * closing, but it's not actually changed. */
2985 }
2986 else if (buf->b_term != NULL)
2987 ro_char = 'F';
2988 else
2989#endif
2990 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
2991
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002992 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00002993 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 buf->b_fnum,
2995 buf->b_p_bl ? ' ' : 'u',
2996 buf == curbuf ? '%' :
2997 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2998 buf->b_ml.ml_mfp == NULL ? ' ' :
2999 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003000 ro_char,
3001 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003002 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003003 if (len > IOSIZE - 20)
3004 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
3006 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 i = 40 - vim_strsize(IObuff);
3008 do
3009 {
3010 IObuff[len++] = ' ';
3011 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003012 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3013 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003014 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 msg_outtrans(IObuff);
3016 out_flush(); /* output one line at a time */
3017 ui_breakcheck();
3018 }
3019}
3020#endif
3021
3022/*
3023 * Get file name and line number for file 'fnum'.
3024 * Used by DoOneCmd() for translating '%' and '#'.
3025 * Used by insert_reg() and cmdline_paste() for '#' register.
3026 * Return FAIL if not found, OK for success.
3027 */
3028 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003029buflist_name_nr(
3030 int fnum,
3031 char_u **fname,
3032 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 buf_T *buf;
3035
3036 buf = buflist_findnr(fnum);
3037 if (buf == NULL || buf->b_fname == NULL)
3038 return FAIL;
3039
3040 *fname = buf->b_fname;
3041 *lnum = buflist_findlnum(buf);
3042
3043 return OK;
3044}
3045
3046/*
3047 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3048 * The file name with the full path is also remembered, for when :cd is used.
3049 * Returns FAIL for failure (file name already in use by other buffer)
3050 * OK otherwise.
3051 */
3052 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003053setfname(
3054 buf_T *buf,
3055 char_u *ffname,
3056 char_u *sfname,
3057 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058{
Bram Moolenaar81695252004-12-29 20:58:21 +00003059 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003061 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062#endif
3063
3064 if (ffname == NULL || *ffname == NUL)
3065 {
3066 /* Removing the name. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01003067 VIM_CLEAR(buf->b_ffname);
3068 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069#ifdef UNIX
3070 st.st_dev = (dev_T)-1;
3071#endif
3072 }
3073 else
3074 {
3075 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3076 if (ffname == NULL) /* out of memory */
3077 return FAIL;
3078
3079 /*
3080 * if the file name is already used in another buffer:
3081 * - if the buffer is loaded, fail
3082 * - if the buffer is not loaded, delete it from the list
3083 */
3084#ifdef UNIX
3085 if (mch_stat((char *)ffname, &st) < 0)
3086 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003087#endif
3088 if (!(buf->b_flags & BF_DUMMY))
3089#ifdef UNIX
3090 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003092 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093#endif
3094 if (obuf != NULL && obuf != buf)
3095 {
3096 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3097 {
3098 if (message)
3099 EMSG(_("E95: Buffer with this name already exists"));
3100 vim_free(ffname);
3101 return FAIL;
3102 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003103 /* delete from the list */
3104 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 }
3106 sfname = vim_strsave(sfname);
3107 if (ffname == NULL || sfname == NULL)
3108 {
3109 vim_free(sfname);
3110 vim_free(ffname);
3111 return FAIL;
3112 }
3113#ifdef USE_FNAME_CASE
3114# ifdef USE_LONG_FNAME
3115 if (USE_LONG_FNAME)
3116# endif
3117 fname_case(sfname, 0); /* set correct case for short file name */
3118#endif
3119 vim_free(buf->b_ffname);
3120 vim_free(buf->b_sfname);
3121 buf->b_ffname = ffname;
3122 buf->b_sfname = sfname;
3123 }
3124 buf->b_fname = buf->b_sfname;
3125#ifdef UNIX
3126 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003127 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 else
3129 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003130 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 buf->b_dev = st.st_dev;
3132 buf->b_ino = st.st_ino;
3133 }
3134#endif
3135
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137
3138 buf_name_changed(buf);
3139 return OK;
3140}
3141
3142/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003143 * Crude way of changing the name of a buffer. Use with care!
3144 * The name should be relative to the current directory.
3145 */
3146 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003147buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003148{
3149 buf_T *buf;
3150
3151 buf = buflist_findnr(fnum);
3152 if (buf != NULL)
3153 {
3154 vim_free(buf->b_sfname);
3155 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003156 buf->b_ffname = vim_strsave(name);
3157 buf->b_sfname = NULL;
3158 /* Allocate ffname and expand into full path. Also resolves .lnk
3159 * files on Win32. */
3160 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003161 buf->b_fname = buf->b_sfname;
3162 }
3163}
3164
3165/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 * Take care of what needs to be done when the name of buffer "buf" has
3167 * changed.
3168 */
3169 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003170buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171{
3172 /*
3173 * If the file name changed, also change the name of the swapfile
3174 */
3175 if (buf->b_ml.ml_mfp != NULL)
3176 ml_setname(buf);
3177
3178 if (curwin->w_buffer == buf)
3179 check_arg_idx(curwin); /* check file name for arg list */
3180#ifdef FEAT_TITLE
3181 maketitle(); /* set window title */
3182#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 fmarks_check_names(buf); /* check named file marks */
3185 ml_timestamp(buf); /* reset timestamp */
3186}
3187
3188/*
3189 * set alternate file name for current window
3190 *
3191 * Used by do_one_cmd(), do_write() and do_ecmd().
3192 * Return the buffer.
3193 */
3194 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003195setaltfname(
3196 char_u *ffname,
3197 char_u *sfname,
3198 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199{
3200 buf_T *buf;
3201
3202 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3203 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003204 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 curwin->w_alt_fnum = buf->b_fnum;
3206 return buf;
3207}
3208
3209/*
3210 * Get alternate file name for current window.
3211 * Return NULL if there isn't any, and give error message if requested.
3212 */
3213 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003214getaltfname(
3215 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216{
3217 char_u *fname;
3218 linenr_T dummy;
3219
3220 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3221 {
3222 if (errmsg)
3223 EMSG(_(e_noalt));
3224 return NULL;
3225 }
3226 return fname;
3227}
3228
3229/*
3230 * Add a file name to the buflist and return its number.
3231 * Uses same flags as buflist_new(), except BLN_DUMMY.
3232 *
3233 * used by qf_init(), main() and doarglist()
3234 */
3235 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003236buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237{
3238 buf_T *buf;
3239
3240 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3241 if (buf != NULL)
3242 return buf->b_fnum;
3243 return 0;
3244}
3245
3246#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3247/*
3248 * Adjust slashes in file names. Called after 'shellslash' was set.
3249 */
3250 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003251buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252{
3253 buf_T *bp;
3254
Bram Moolenaar29323592016-07-24 22:04:11 +02003255 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 {
3257 if (bp->b_ffname != NULL)
3258 slash_adjust(bp->b_ffname);
3259 if (bp->b_sfname != NULL)
3260 slash_adjust(bp->b_sfname);
3261 }
3262}
3263#endif
3264
3265/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003266 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 * Also save the local window option values.
3268 */
3269 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003270buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003272 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273}
3274
3275/*
3276 * Return TRUE if 'ffname' is not the same file as current file.
3277 * Fname must have a full path (expanded by mch_FullName()).
3278 */
3279 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003280otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
3282 return otherfile_buf(curbuf, ffname
3283#ifdef UNIX
3284 , NULL
3285#endif
3286 );
3287}
3288
3289 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003290otherfile_buf(
3291 buf_T *buf,
3292 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003294 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003296 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297{
3298 /* no name is different */
3299 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3300 return TRUE;
3301 if (fnamecmp(ffname, buf->b_ffname) == 0)
3302 return FALSE;
3303#ifdef UNIX
3304 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003305 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306
Bram Moolenaar8767f522016-07-01 17:17:39 +02003307 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 if (stp == NULL)
3309 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003310 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 st.st_dev = (dev_T)-1;
3312 stp = &st;
3313 }
3314 /* Use dev/ino to check if the files are the same, even when the names
3315 * are different (possible with links). Still need to compare the
3316 * name above, for when the file doesn't exist yet.
3317 * Problem: The dev/ino changes when a file is deleted (and created
3318 * again) and remains the same when renamed/moved. We don't want to
3319 * mch_stat() each buffer each time, that would be too slow. Get the
3320 * dev/ino again when they appear to match, but not when they appear
3321 * to be different: Could skip a buffer when it's actually the same
3322 * file. */
3323 if (buf_same_ino(buf, stp))
3324 {
3325 buf_setino(buf);
3326 if (buf_same_ino(buf, stp))
3327 return FALSE;
3328 }
3329 }
3330#endif
3331 return TRUE;
3332}
3333
3334#if defined(UNIX) || defined(PROTO)
3335/*
3336 * Set inode and device number for a buffer.
3337 * Must always be called when b_fname is changed!.
3338 */
3339 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003340buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003342 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343
3344 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3345 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003346 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 buf->b_dev = st.st_dev;
3348 buf->b_ino = st.st_ino;
3349 }
3350 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003351 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352}
3353
3354/*
3355 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3356 */
3357 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003358buf_same_ino(
3359 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003360 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003362 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 && stp->st_dev == buf->b_dev
3364 && stp->st_ino == buf->b_ino);
3365}
3366#endif
3367
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003368/*
3369 * Print info about the current buffer.
3370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003372fileinfo(
3373 int fullname, /* when non-zero print full path */
3374 int shorthelp,
3375 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376{
3377 char_u *name;
3378 int n;
3379 char_u *p;
3380 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003381 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382
3383 buffer = alloc(IOSIZE);
3384 if (buffer == NULL)
3385 return;
3386
3387 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3388 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003389 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 p = buffer + STRLEN(buffer);
3391 }
3392 else
3393 p = buffer;
3394
3395 *p++ = '"';
3396 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003397 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 else
3399 {
3400 if (!fullname && curbuf->b_fname != NULL)
3401 name = curbuf->b_fname;
3402 else
3403 name = curbuf->b_ffname;
3404 home_replace(shorthelp ? curbuf : NULL, name, p,
3405 (int)(IOSIZE - (p - buffer)), TRUE);
3406 }
3407
Bram Moolenaara800b422010-06-27 01:15:55 +02003408 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 curbufIsChanged() ? (shortmess(SHM_MOD)
3410 ? " [+]" : _(" [Modified]")) : " ",
3411 (curbuf->b_flags & BF_NOTEDITED)
3412#ifdef FEAT_QUICKFIX
3413 && !bt_dontwrite(curbuf)
3414#endif
3415 ? _("[Not edited]") : "",
3416 (curbuf->b_flags & BF_NEW)
3417#ifdef FEAT_QUICKFIX
3418 && !bt_dontwrite(curbuf)
3419#endif
3420 ? _("[New file]") : "",
3421 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003422 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 : _("[readonly]")) : "",
3424 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3425 || curbuf->b_p_ro) ?
3426 " " : "");
3427 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3428 * causes an overflow, thus for large numbers divide instead. */
3429 if (curwin->w_cursor.lnum > 1000000L)
3430 n = (int)(((long)curwin->w_cursor.lnum) /
3431 ((long)curbuf->b_ml.ml_line_count / 100L));
3432 else
3433 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3434 (long)curbuf->b_ml.ml_line_count);
3435 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3436 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003437 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 }
3439#ifdef FEAT_CMDL_INFO
3440 else if (p_ru)
3441 {
3442 /* Current line and column are already on the screen -- webb */
3443 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003444 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003446 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 (long)curbuf->b_ml.ml_line_count, n);
3448 }
3449#endif
3450 else
3451 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003452 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 _("line %ld of %ld --%d%%-- col "),
3454 (long)curwin->w_cursor.lnum,
3455 (long)curbuf->b_ml.ml_line_count,
3456 n);
3457 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003458 len = STRLEN(buffer);
3459 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3461 }
3462
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003463 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464
3465 if (dont_truncate)
3466 {
3467 /* Temporarily set msg_scroll to avoid the message being truncated.
3468 * First call msg_start() to get the message in the right place. */
3469 msg_start();
3470 n = msg_scroll;
3471 msg_scroll = TRUE;
3472 msg(buffer);
3473 msg_scroll = n;
3474 }
3475 else
3476 {
3477 p = msg_trunc_attr(buffer, FALSE, 0);
3478 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 /* Need to repeat the message after redrawing when:
3480 * - When restart_edit is set (otherwise there will be a delay
3481 * before redrawing).
3482 * - When the screen was scrolled but there is no wait-return
3483 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003484 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 }
3486
3487 vim_free(buffer);
3488}
3489
3490 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003491col_print(
3492 char_u *buf,
3493 size_t buflen,
3494 int col,
3495 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496{
3497 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003498 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003500 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501}
3502
3503#if defined(FEAT_TITLE) || defined(PROTO)
3504/*
3505 * put file name in title bar of window and in icon title
3506 */
3507
3508static char_u *lasttitle = NULL;
3509static char_u *lasticon = NULL;
3510
3511 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003512maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513{
3514 char_u *p;
3515 char_u *t_str = NULL;
3516 char_u *i_name;
3517 char_u *i_str = NULL;
3518 int maxlen = 0;
3519 int len;
3520 int mustset;
3521 char_u buf[IOSIZE];
3522 int off;
3523
3524 if (!redrawing())
3525 {
3526 /* Postpone updating the title when 'lazyredraw' is set. */
3527 need_maketitle = TRUE;
3528 return;
3529 }
3530
3531 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003532 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 return;
3534
3535 if (p_title)
3536 {
3537 if (p_titlelen > 0)
3538 {
3539 maxlen = p_titlelen * Columns / 100;
3540 if (maxlen < 10)
3541 maxlen = 10;
3542 }
3543
3544 t_str = buf;
3545 if (*p_titlestring != NUL)
3546 {
3547#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003548 if (stl_syntax & STL_IN_TITLE)
3549 {
3550 int use_sandbox = FALSE;
3551 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003552
3553# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003554 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003555# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003556 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003558 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003559 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003560 if (called_emsg)
3561 set_string_option_direct((char_u *)"titlestring", -1,
3562 (char_u *)"", OPT_FREE, SID_ERROR);
3563 called_emsg |= save_called_emsg;
3564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 else
3566#endif
3567 t_str = p_titlestring;
3568 }
3569 else
3570 {
3571 /* format: "fname + (path) (1 of 2) - VIM" */
3572
Bram Moolenaar2c666692012-09-05 13:30:40 +02003573#define SPACE_FOR_FNAME (IOSIZE - 100)
3574#define SPACE_FOR_DIR (IOSIZE - 20)
3575#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003577 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003578#ifdef FEAT_TERMINAL
3579 else if (curbuf->b_term != NULL)
3580 {
3581 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3582 SPACE_FOR_FNAME);
3583 }
3584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 else
3586 {
3587 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003588 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 }
3591
Bram Moolenaar21554412017-07-24 21:44:43 +02003592#ifdef FEAT_TERMINAL
3593 if (curbuf->b_term == NULL)
3594#endif
3595 switch (bufIsChanged(curbuf)
3596 + (curbuf->b_p_ro * 2)
3597 + (!curbuf->b_p_ma * 4))
3598 {
3599 case 1: STRCAT(buf, " +"); break;
3600 case 2: STRCAT(buf, " ="); break;
3601 case 3: STRCAT(buf, " =+"); break;
3602 case 4:
3603 case 6: STRCAT(buf, " -"); break;
3604 case 5:
3605 case 7: STRCAT(buf, " -+"); break;
3606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607
Bram Moolenaar21554412017-07-24 21:44:43 +02003608 if (curbuf->b_fname != NULL
3609#ifdef FEAT_TERMINAL
3610 && curbuf->b_term == NULL
3611#endif
3612 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 {
3614 /* Get path of file, replace home dir with ~ */
3615 off = (int)STRLEN(buf);
3616 buf[off++] = ' ';
3617 buf[off++] = '(';
3618 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003619 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620#ifdef BACKSLASH_IN_FILENAME
3621 /* avoid "c:/name" to be reduced to "c" */
3622 if (isalpha(buf[off]) && buf[off + 1] == ':')
3623 off += 2;
3624#endif
3625 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003626 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003628 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003629 /* must be a help buffer */
3630 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003631 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003635
Bram Moolenaar2c666692012-09-05 13:30:40 +02003636 /* Translate unprintable chars and concatenate. Keep some
3637 * room for the server name. When there is no room (very long
3638 * file name) use (...). */
3639 if (off < SPACE_FOR_DIR)
3640 {
3641 p = transstr(buf + off);
3642 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3643 vim_free(p);
3644 }
3645 else
3646 {
3647 vim_strncpy(buf + off, (char_u *)"...",
3648 (size_t)(SPACE_FOR_ARGNR - off));
3649 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 STRCAT(buf, ")");
3651 }
3652
Bram Moolenaar2c666692012-09-05 13:30:40 +02003653 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654
3655#if defined(FEAT_CLIENTSERVER)
3656 if (serverName != NULL)
3657 {
3658 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003659 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 }
3661 else
3662#endif
3663 STRCAT(buf, " - VIM");
3664
3665 if (maxlen > 0)
3666 {
3667 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003668 if (vim_strsize(buf) > maxlen)
3669 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 }
3671 }
3672 }
3673 mustset = ti_change(t_str, &lasttitle);
3674
3675 if (p_icon)
3676 {
3677 i_str = buf;
3678 if (*p_iconstring != NUL)
3679 {
3680#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003681 if (stl_syntax & STL_IN_ICON)
3682 {
3683 int use_sandbox = FALSE;
3684 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003685
3686# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003687 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003688# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003689 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003691 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003692 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003693 if (called_emsg)
3694 set_string_option_direct((char_u *)"iconstring", -1,
3695 (char_u *)"", OPT_FREE, SID_ERROR);
3696 called_emsg |= save_called_emsg;
3697 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 else
3699#endif
3700 i_str = p_iconstring;
3701 }
3702 else
3703 {
3704 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003705 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 else /* use file name only in icon */
3707 i_name = gettail(curbuf->b_ffname);
3708 *i_str = NUL;
3709 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003710 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 if (len > 100)
3712 {
3713 len -= 100;
3714#ifdef FEAT_MBYTE
3715 if (has_mbyte)
3716 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3717#endif
3718 i_name += len;
3719 }
3720 STRCPY(i_str, i_name);
3721 trans_characters(i_str, IOSIZE);
3722 }
3723 }
3724
3725 mustset |= ti_change(i_str, &lasticon);
3726
3727 if (mustset)
3728 resettitle();
3729}
3730
3731/*
3732 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3733 * from "str" if it does.
3734 * Return TRUE when "*last" changed.
3735 */
3736 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003737ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738{
3739 if ((str == NULL) != (*last == NULL)
3740 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3741 {
3742 vim_free(*last);
3743 if (str == NULL)
3744 *last = NULL;
3745 else
3746 *last = vim_strsave(str);
3747 return TRUE;
3748 }
3749 return FALSE;
3750}
3751
3752/*
3753 * Put current window title back (used after calling a shell)
3754 */
3755 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003756resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757{
3758 mch_settitle(lasttitle, lasticon);
3759}
Bram Moolenaarea408852005-06-25 22:49:46 +00003760
3761# if defined(EXITFREE) || defined(PROTO)
3762 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003763free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003764{
3765 vim_free(lasttitle);
3766 vim_free(lasticon);
3767}
3768# endif
3769
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770#endif /* FEAT_TITLE */
3771
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003772#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003774 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 * Return length of string in screen cells.
3776 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003777 * Normally works for window "wp", except when working for 'tabline' then it
3778 * is "curwin".
3779 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 * Items are drawn interspersed with the text that surrounds it
3781 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3782 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3783 *
3784 * If maxwidth is not zero, the string will be filled at any middle marker
3785 * or truncated if too long, fillchar is used for all whitespace.
3786 */
3787 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003788build_stl_str_hl(
3789 win_T *wp,
3790 char_u *out, /* buffer to write into != NameBuff */
3791 size_t outlen, /* length of out[] */
3792 char_u *fmt,
3793 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3794 int fillchar,
3795 int maxwidth,
3796 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3797 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798{
3799 char_u *p;
3800 char_u *s;
3801 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003802 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003804 win_T *save_curwin;
3805 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806#endif
3807 int empty_line;
3808 colnr_T virtcol;
3809 long l;
3810 long n;
3811 int prevchar_isflag;
3812 int prevchar_isitem;
3813 int itemisflag;
3814 int fillable;
3815 char_u *str;
3816 long num;
3817 int width;
3818 int itemcnt;
3819 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003820 int group_end_userhl;
3821 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 int groupitem[STL_MAX_ITEM];
3823 int groupdepth;
3824 struct stl_item
3825 {
3826 char_u *start;
3827 int minwid;
3828 int maxwid;
3829 enum
3830 {
3831 Normal,
3832 Empty,
3833 Group,
3834 Middle,
3835 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003836 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 Trunc
3838 } type;
3839 } item[STL_MAX_ITEM];
3840 int minwid;
3841 int maxwid;
3842 int zeropad;
3843 char_u base;
3844 char_u opt;
3845#define TMPLEN 70
3846 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003847 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003848 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003849 int save_must_redraw = must_redraw;
3850 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003851
3852#ifdef FEAT_EVAL
3853 /*
3854 * When the format starts with "%!" then evaluate it as an expression and
3855 * use the result as the actual format string.
3856 */
3857 if (fmt[0] == '%' && fmt[1] == '!')
3858 {
3859 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3860 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003861 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003862 }
3863#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864
3865 if (fillchar == 0)
3866 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003867#ifdef FEAT_MBYTE
3868 /* Can't handle a multi-byte fill character yet. */
3869 else if (mb_char2len(fillchar) > 1)
3870 fillchar = '-';
3871#endif
3872
Bram Moolenaar567199b2013-04-24 16:52:36 +02003873 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3874 * p will become invalid when getting another buffer line. */
3875 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3876 empty_line = (*p == NUL);
3877
3878 /* Get the byte value now, in case we need it below. This is more
3879 * efficient than making a copy of the line. */
3880 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3881 byteval = 0;
3882 else
3883#ifdef FEAT_MBYTE
3884 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3885#else
3886 byteval = p[wp->w_cursor.col];
3887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888
3889 groupdepth = 0;
3890 p = out;
3891 curitem = 0;
3892 prevchar_isflag = TRUE;
3893 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003894 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003896 if (curitem == STL_MAX_ITEM)
3897 {
3898 /* There are too many items. Add the error code to the statusline
3899 * to give the user a hint about what went wrong. */
3900 if (p + 6 < out + outlen)
3901 {
3902 mch_memmove(p, " E541", (size_t)5);
3903 p += 5;
3904 }
3905 break;
3906 }
3907
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 if (*s != NUL && *s != '%')
3909 prevchar_isflag = prevchar_isitem = FALSE;
3910
3911 /*
3912 * Handle up to the next '%' or the end.
3913 */
3914 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3915 *p++ = *s++;
3916 if (*s == NUL || p + 1 >= out + outlen)
3917 break;
3918
3919 /*
3920 * Handle one '%' item.
3921 */
3922 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003923 if (*s == NUL) /* ignore trailing % */
3924 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 if (*s == '%')
3926 {
3927 if (p + 1 >= out + outlen)
3928 break;
3929 *p++ = *s++;
3930 prevchar_isflag = prevchar_isitem = FALSE;
3931 continue;
3932 }
3933 if (*s == STL_MIDDLEMARK)
3934 {
3935 s++;
3936 if (groupdepth > 0)
3937 continue;
3938 item[curitem].type = Middle;
3939 item[curitem++].start = p;
3940 continue;
3941 }
3942 if (*s == STL_TRUNCMARK)
3943 {
3944 s++;
3945 item[curitem].type = Trunc;
3946 item[curitem++].start = p;
3947 continue;
3948 }
3949 if (*s == ')')
3950 {
3951 s++;
3952 if (groupdepth < 1)
3953 continue;
3954 groupdepth--;
3955
3956 t = item[groupitem[groupdepth]].start;
3957 *p = NUL;
3958 l = vim_strsize(t);
3959 if (curitem > groupitem[groupdepth] + 1
3960 && item[groupitem[groupdepth]].minwid == 0)
3961 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003962 /* remove group if all items are empty and highlight group
3963 * doesn't change */
3964 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02003965 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
3966 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003967 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02003968 {
3969 group_start_userhl = group_end_userhl = item[n].minwid;
3970 break;
3971 }
3972 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003974 {
3975 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003977 if (item[n].type == Highlight)
3978 group_end_userhl = item[n].minwid;
3979 }
3980 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 {
3982 p = t;
3983 l = 0;
3984 }
3985 }
3986 if (l > item[groupitem[groupdepth]].maxwid)
3987 {
3988 /* truncate, remove n bytes of text at the start */
3989#ifdef FEAT_MBYTE
3990 if (has_mbyte)
3991 {
3992 /* Find the first character that should be included. */
3993 n = 0;
3994 while (l >= item[groupitem[groupdepth]].maxwid)
3995 {
3996 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003997 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 }
3999 }
4000 else
4001#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004002 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003
4004 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004005 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 p = p - n + 1;
4007#ifdef FEAT_MBYTE
4008 /* Fill up space left over by half a double-wide char. */
4009 while (++l < item[groupitem[groupdepth]].minwid)
4010 *p++ = fillchar;
4011#endif
4012
4013 /* correct the start of the items for the truncation */
4014 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4015 {
4016 item[l].start -= n;
4017 if (item[l].start < t)
4018 item[l].start = t;
4019 }
4020 }
4021 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4022 {
4023 /* fill */
4024 n = item[groupitem[groupdepth]].minwid;
4025 if (n < 0)
4026 {
4027 /* fill by appending characters */
4028 n = 0 - n;
4029 while (l++ < n && p + 1 < out + outlen)
4030 *p++ = fillchar;
4031 }
4032 else
4033 {
4034 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004035 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 l = n - l;
4037 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004038 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 p += l;
4040 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4041 item[n].start += l;
4042 for ( ; l > 0; l--)
4043 *t++ = fillchar;
4044 }
4045 }
4046 continue;
4047 }
4048 minwid = 0;
4049 maxwid = 9999;
4050 zeropad = FALSE;
4051 l = 1;
4052 if (*s == '0')
4053 {
4054 s++;
4055 zeropad = TRUE;
4056 }
4057 if (*s == '-')
4058 {
4059 s++;
4060 l = -1;
4061 }
4062 if (VIM_ISDIGIT(*s))
4063 {
4064 minwid = (int)getdigits(&s);
4065 if (minwid < 0) /* overflow */
4066 minwid = 0;
4067 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004068 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 {
4070 item[curitem].type = Highlight;
4071 item[curitem].start = p;
4072 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4073 s++;
4074 curitem++;
4075 continue;
4076 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004077 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4078 {
4079 if (*s == STL_TABCLOSENR)
4080 {
4081 if (minwid == 0)
4082 {
4083 /* %X ends the close label, go back to the previously
4084 * define tab label nr. */
4085 for (n = curitem - 1; n >= 0; --n)
4086 if (item[n].type == TabPage && item[n].minwid >= 0)
4087 {
4088 minwid = item[n].minwid;
4089 break;
4090 }
4091 }
4092 else
4093 /* close nrs are stored as negative values */
4094 minwid = - minwid;
4095 }
4096 item[curitem].type = TabPage;
4097 item[curitem].start = p;
4098 item[curitem].minwid = minwid;
4099 s++;
4100 curitem++;
4101 continue;
4102 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 if (*s == '.')
4104 {
4105 s++;
4106 if (VIM_ISDIGIT(*s))
4107 {
4108 maxwid = (int)getdigits(&s);
4109 if (maxwid <= 0) /* overflow */
4110 maxwid = 50;
4111 }
4112 }
4113 minwid = (minwid > 50 ? 50 : minwid) * l;
4114 if (*s == '(')
4115 {
4116 groupitem[groupdepth++] = curitem;
4117 item[curitem].type = Group;
4118 item[curitem].start = p;
4119 item[curitem].minwid = minwid;
4120 item[curitem].maxwid = maxwid;
4121 s++;
4122 curitem++;
4123 continue;
4124 }
4125 if (vim_strchr(STL_ALL, *s) == NULL)
4126 {
4127 s++;
4128 continue;
4129 }
4130 opt = *s++;
4131
4132 /* OK - now for the real work */
4133 base = 'D';
4134 itemisflag = FALSE;
4135 fillable = TRUE;
4136 num = -1;
4137 str = NULL;
4138 switch (opt)
4139 {
4140 case STL_FILEPATH:
4141 case STL_FULLPATH:
4142 case STL_FILENAME:
4143 fillable = FALSE; /* don't change ' ' to fillchar */
4144 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004145 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 else
4147 {
4148 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004149 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4151 }
4152 trans_characters(NameBuff, MAXPATHL);
4153 if (opt != STL_FILENAME)
4154 str = NameBuff;
4155 else
4156 str = gettail(NameBuff);
4157 break;
4158
4159 case STL_VIM_EXPR: /* '{' */
4160 itemisflag = TRUE;
4161 t = p;
4162 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4163 *p++ = *s++;
4164 if (*s != '}') /* missing '}' or out of space */
4165 break;
4166 s++;
4167 *p = 0;
4168 p = t;
4169
4170#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004171 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4173
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004174 save_curbuf = curbuf;
4175 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 curwin = wp;
4177 curbuf = wp->w_buffer;
4178
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004179 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004181 curwin = save_curwin;
4182 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004183 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184
4185 if (str != NULL && *str != 0)
4186 {
4187 if (*skipdigits(str) == NUL)
4188 {
4189 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004190 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 itemisflag = FALSE;
4192 }
4193 }
4194#endif
4195 break;
4196
4197 case STL_LINE:
4198 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4199 ? 0L : (long)(wp->w_cursor.lnum);
4200 break;
4201
4202 case STL_NUMLINES:
4203 num = wp->w_buffer->b_ml.ml_line_count;
4204 break;
4205
4206 case STL_COLUMN:
4207 num = !(State & INSERT) && empty_line
4208 ? 0 : (int)wp->w_cursor.col + 1;
4209 break;
4210
4211 case STL_VIRTCOL:
4212 case STL_VIRTCOL_ALT:
4213 /* In list mode virtcol needs to be recomputed */
4214 virtcol = wp->w_virtcol;
4215 if (wp->w_p_list && lcs_tab1 == NUL)
4216 {
4217 wp->w_p_list = FALSE;
4218 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4219 wp->w_p_list = TRUE;
4220 }
4221 ++virtcol;
4222 /* Don't display %V if it's the same as %c. */
4223 if (opt == STL_VIRTCOL_ALT
4224 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4225 ? 0 : (int)wp->w_cursor.col + 1)))
4226 break;
4227 num = (long)virtcol;
4228 break;
4229
4230 case STL_PERCENTAGE:
4231 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4232 (long)wp->w_buffer->b_ml.ml_line_count);
4233 break;
4234
4235 case STL_ALTPERCENT:
4236 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004237 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 break;
4239
4240 case STL_ARGLISTSTAT:
4241 fillable = FALSE;
4242 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004243 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 str = tmp;
4245 break;
4246
4247 case STL_KEYMAP:
4248 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004249 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 str = tmp;
4251 break;
4252 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004253#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004254 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255#else
4256 num = 0;
4257#endif
4258 break;
4259
4260 case STL_BUFNO:
4261 num = wp->w_buffer->b_fnum;
4262 break;
4263
4264 case STL_OFFSET_X:
4265 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004266 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 case STL_OFFSET:
4268#ifdef FEAT_BYTEOFF
4269 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4270 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4271 0L : l + 1 + (!(State & INSERT) && empty_line ?
4272 0 : (int)wp->w_cursor.col);
4273#endif
4274 break;
4275
4276 case STL_BYTEVAL_X:
4277 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004278 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004280 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 if (num == NL)
4282 num = 0;
4283 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4284 num = NL;
4285 break;
4286
4287 case STL_ROFLAG:
4288 case STL_ROFLAG_ALT:
4289 itemisflag = TRUE;
4290 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004291 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 break;
4293
4294 case STL_HELPFLAG:
4295 case STL_HELPFLAG_ALT:
4296 itemisflag = TRUE;
4297 if (wp->w_buffer->b_help)
4298 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004299 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 break;
4301
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 case STL_FILETYPE:
4303 if (*wp->w_buffer->b_p_ft != NUL
4304 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4305 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004306 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4307 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 str = tmp;
4309 }
4310 break;
4311
4312 case STL_FILETYPE_ALT:
4313 itemisflag = TRUE;
4314 if (*wp->w_buffer->b_p_ft != NUL
4315 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4316 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004317 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4318 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 for (t = tmp; *t != 0; t++)
4320 *t = TOUPPER_LOC(*t);
4321 str = tmp;
4322 }
4323 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324
Bram Moolenaar4033c552017-09-16 20:54:51 +02004325#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 case STL_PREVIEWFLAG:
4327 case STL_PREVIEWFLAG_ALT:
4328 itemisflag = TRUE;
4329 if (wp->w_p_pvw)
4330 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4331 : _("[Preview]"));
4332 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004333
4334 case STL_QUICKFIX:
4335 if (bt_quickfix(wp->w_buffer))
4336 str = (char_u *)(wp->w_llist_ref
4337 ? _(msg_loclist)
4338 : _(msg_qflist));
4339 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340#endif
4341
4342 case STL_MODIFIED:
4343 case STL_MODIFIED_ALT:
4344 itemisflag = TRUE;
4345 switch ((opt == STL_MODIFIED_ALT)
4346 + bufIsChanged(wp->w_buffer) * 2
4347 + (!wp->w_buffer->b_p_ma) * 4)
4348 {
4349 case 2: str = (char_u *)"[+]"; break;
4350 case 3: str = (char_u *)",+"; break;
4351 case 4: str = (char_u *)"[-]"; break;
4352 case 5: str = (char_u *)",-"; break;
4353 case 6: str = (char_u *)"[+-]"; break;
4354 case 7: str = (char_u *)",+-"; break;
4355 }
4356 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004357
4358 case STL_HIGHLIGHT:
4359 t = s;
4360 while (*s != '#' && *s != NUL)
4361 ++s;
4362 if (*s == '#')
4363 {
4364 item[curitem].type = Highlight;
4365 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004366 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004367 curitem++;
4368 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004369 if (*s != NUL)
4370 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004371 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 }
4373
4374 item[curitem].start = p;
4375 item[curitem].type = Normal;
4376 if (str != NULL && *str)
4377 {
4378 t = str;
4379 if (itemisflag)
4380 {
4381 if ((t[0] && t[1])
4382 && ((!prevchar_isitem && *t == ',')
4383 || (prevchar_isflag && *t == ' ')))
4384 t++;
4385 prevchar_isflag = TRUE;
4386 }
4387 l = vim_strsize(t);
4388 if (l > 0)
4389 prevchar_isitem = TRUE;
4390 if (l > maxwid)
4391 {
4392 while (l >= maxwid)
4393#ifdef FEAT_MBYTE
4394 if (has_mbyte)
4395 {
4396 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004397 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 }
4399 else
4400#endif
4401 l -= byte2cells(*t++);
4402 if (p + 1 >= out + outlen)
4403 break;
4404 *p++ = '<';
4405 }
4406 if (minwid > 0)
4407 {
4408 for (; l < minwid && p + 1 < out + outlen; l++)
4409 {
4410 /* Don't put a "-" in front of a digit. */
4411 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4412 *p++ = ' ';
4413 else
4414 *p++ = fillchar;
4415 }
4416 minwid = 0;
4417 }
4418 else
4419 minwid *= -1;
4420 while (*t && p + 1 < out + outlen)
4421 {
4422 *p++ = *t++;
4423 /* Change a space by fillchar, unless fillchar is '-' and a
4424 * digit follows. */
4425 if (fillable && p[-1] == ' '
4426 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4427 p[-1] = fillchar;
4428 }
4429 for (; l < minwid && p + 1 < out + outlen; l++)
4430 *p++ = fillchar;
4431 }
4432 else if (num >= 0)
4433 {
4434 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4435 char_u nstr[20];
4436
4437 if (p + 20 >= out + outlen)
4438 break; /* not sufficient space */
4439 prevchar_isitem = TRUE;
4440 t = nstr;
4441 if (opt == STL_VIRTCOL_ALT)
4442 {
4443 *t++ = '-';
4444 minwid--;
4445 }
4446 *t++ = '%';
4447 if (zeropad)
4448 *t++ = '0';
4449 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004450 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 *t = 0;
4452
4453 for (n = num, l = 1; n >= nbase; n /= nbase)
4454 l++;
4455 if (opt == STL_VIRTCOL_ALT)
4456 l++;
4457 if (l > maxwid)
4458 {
4459 l += 2;
4460 n = l - maxwid;
4461 while (l-- > maxwid)
4462 num /= nbase;
4463 *t++ = '>';
4464 *t++ = '%';
4465 *t = t[-3];
4466 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004467 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4468 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 }
4470 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004471 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4472 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 p += STRLEN(p);
4474 }
4475 else
4476 item[curitem].type = Empty;
4477
4478 if (opt == STL_VIM_EXPR)
4479 vim_free(str);
4480
4481 if (num >= 0 || (!itemisflag && str && *str))
4482 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4483 curitem++;
4484 }
4485 *p = NUL;
4486 itemcnt = curitem;
4487
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004488#ifdef FEAT_EVAL
4489 if (usefmt != fmt)
4490 vim_free(usefmt);
4491#endif
4492
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 width = vim_strsize(out);
4494 if (maxwidth > 0 && width > maxwidth)
4495 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004496 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 l = 0;
4498 if (itemcnt == 0)
4499 s = out;
4500 else
4501 {
4502 for ( ; l < itemcnt; l++)
4503 if (item[l].type == Trunc)
4504 {
4505 /* Truncate at %< item. */
4506 s = item[l].start;
4507 break;
4508 }
4509 if (l == itemcnt)
4510 {
4511 /* No %< item, truncate first item. */
4512 s = item[0].start;
4513 l = 0;
4514 }
4515 }
4516
4517 if (width - vim_strsize(s) >= maxwidth)
4518 {
4519 /* Truncation mark is beyond max length */
4520#ifdef FEAT_MBYTE
4521 if (has_mbyte)
4522 {
4523 s = out;
4524 width = 0;
4525 for (;;)
4526 {
4527 width += ptr2cells(s);
4528 if (width >= maxwidth)
4529 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004530 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 }
4532 /* Fill up for half a double-wide character. */
4533 while (++width < maxwidth)
4534 *s++ = fillchar;
4535 }
4536 else
4537#endif
4538 s = out + maxwidth - 1;
4539 for (l = 0; l < itemcnt; l++)
4540 if (item[l].start > s)
4541 break;
4542 itemcnt = l;
4543 *s++ = '>';
4544 *s = 0;
4545 }
4546 else
4547 {
4548#ifdef FEAT_MBYTE
4549 if (has_mbyte)
4550 {
4551 n = 0;
4552 while (width >= maxwidth)
4553 {
4554 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004555 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 }
4557 }
4558 else
4559#endif
4560 n = width - maxwidth + 1;
4561 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004562 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 *s = '<';
4564
4565 /* Fill up for half a double-wide character. */
4566 while (++width < maxwidth)
4567 {
4568 s = s + STRLEN(s);
4569 *s++ = fillchar;
4570 *s = NUL;
4571 }
4572
4573 --n; /* count the '<' */
4574 for (; l < itemcnt; l++)
4575 {
4576 if (item[l].start - n >= s)
4577 item[l].start -= n;
4578 else
4579 item[l].start = s;
4580 }
4581 }
4582 width = maxwidth;
4583 }
4584 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4585 {
4586 /* Apply STL_MIDDLE if any */
4587 for (l = 0; l < itemcnt; l++)
4588 if (item[l].type == Middle)
4589 break;
4590 if (l < itemcnt)
4591 {
4592 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004593 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 for (s = item[l].start; s < p; s++)
4595 *s = fillchar;
4596 for (l++; l < itemcnt; l++)
4597 item[l].start += maxwidth - width;
4598 width = maxwidth;
4599 }
4600 }
4601
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004602 /* Store the info about highlighting. */
4603 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004605 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 for (l = 0; l < itemcnt; l++)
4607 {
4608 if (item[l].type == Highlight)
4609 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004610 sp->start = item[l].start;
4611 sp->userhl = item[l].minwid;
4612 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 }
4614 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004615 sp->start = NULL;
4616 sp->userhl = 0;
4617 }
4618
4619 /* Store the info about tab pages labels. */
4620 if (tabtab != NULL)
4621 {
4622 sp = tabtab;
4623 for (l = 0; l < itemcnt; l++)
4624 {
4625 if (item[l].type == TabPage)
4626 {
4627 sp->start = item[l].start;
4628 sp->userhl = item[l].minwid;
4629 sp++;
4630 }
4631 }
4632 sp->start = NULL;
4633 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 }
4635
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004636 /* When inside update_screen we do not want redrawing a stausline, ruler,
4637 * title, etc. to trigger another redraw, it may cause an endless loop. */
4638 if (updating_screen)
4639 {
4640 must_redraw = save_must_redraw;
4641 curwin->w_redr_type = save_redr_type;
4642 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004643
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 return width;
4645}
4646#endif /* FEAT_STL_OPT */
4647
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004648#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4649 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004651 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4652 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 */
4654 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004655get_rel_pos(
4656 win_T *wp,
4657 char_u *buf,
4658 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659{
4660 long above; /* number of lines above window */
4661 long below; /* number of lines below window */
4662
Bram Moolenaar0027c212015-01-07 13:31:52 +01004663 if (buflen < 3) /* need at least 3 chars for writing */
4664 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 above = wp->w_topline - 1;
4666#ifdef FEAT_DIFF
4667 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004668 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4669 above = 0; /* All buffer lines are displayed and there is an
4670 * indication of filler lines, that can be considered
4671 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672#endif
4673 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4674 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004675 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4676 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004678 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004680 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 ? (int)(above / ((above + below) / 100L))
4682 : (int)(above * 100L / (above + below)));
4683}
4684#endif
4685
4686/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004687 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 * Return TRUE if it was appended.
4689 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004690 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004691append_arg_number(
4692 win_T *wp,
4693 char_u *buf,
4694 int buflen,
4695 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696{
4697 char_u *p;
4698
4699 if (ARGCOUNT <= 1) /* nothing to do */
4700 return FALSE;
4701
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004702 p = buf + STRLEN(buf); /* go to the end of the buffer */
4703 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 return FALSE;
4705 *p++ = ' ';
4706 *p++ = '(';
4707 if (add_file)
4708 {
4709 STRCPY(p, "file ");
4710 p += 5;
4711 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004712 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4713 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4715 return TRUE;
4716}
4717
4718/*
4719 * If fname is not a full path, make it a full path.
4720 * Returns pointer to allocated memory (NULL for failure).
4721 */
4722 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004723fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724{
4725 /*
4726 * Force expanding the path always for Unix, because symbolic links may
4727 * mess up the full path name, even though it starts with a '/'.
4728 * Also expand when there is ".." in the file name, try to remove it,
4729 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004730 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 * For MS-Windows also expand names like "longna~1" to "longname".
4732 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004733#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 return FullName_save(fname, TRUE);
4735#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004736 if (!vim_isAbsName(fname)
4737 || strstr((char *)fname, "..") != NULL
4738 || strstr((char *)fname, "//") != NULL
4739# ifdef BACKSLASH_IN_FILENAME
4740 || strstr((char *)fname, "\\\\") != NULL
4741# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004742# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004744# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 )
4746 return FullName_save(fname, FALSE);
4747
4748 fname = vim_strsave(fname);
4749
Bram Moolenaar9b942202007-10-03 12:31:33 +00004750# ifdef USE_FNAME_CASE
4751# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004753# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 {
4755 if (fname != NULL)
4756 fname_case(fname, 0); /* set correct case for file name */
4757 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004758# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759
4760 return fname;
4761#endif
4762}
4763
4764/*
4765 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4766 * "ffname" becomes a pointer to allocated memory (or NULL).
4767 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004769fname_expand(
4770 buf_T *buf UNUSED,
4771 char_u **ffname,
4772 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773{
4774 if (*ffname == NULL) /* if no file name given, nothing to do */
4775 return;
4776 if (*sfname == NULL) /* if no short file name given, use ffname */
4777 *sfname = *ffname;
4778 *ffname = fix_fname(*ffname); /* expand to full path */
4779
4780#ifdef FEAT_SHORTCUT
4781 if (!buf->b_p_bin)
4782 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004783 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784
4785 /* If the file name is a shortcut file, use the file it links to. */
4786 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004787 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 {
4789 vim_free(*ffname);
4790 *ffname = rfname;
4791 *sfname = rfname;
4792 }
4793 }
4794#endif
4795}
4796
4797/*
4798 * Get the file name for an argument list entry.
4799 */
4800 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004801alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802{
4803 buf_T *bp;
4804
4805 /* Use the name from the associated buffer if it exists. */
4806 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004807 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 return aep->ae_fname;
4809 return bp->b_fname;
4810}
4811
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812/*
4813 * do_arg_all(): Open up to 'count' windows, one for each argument.
4814 */
4815 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004816do_arg_all(
4817 int count,
4818 int forceit, /* hide buffers in current windows */
4819 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
4821 int i;
4822 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004823 char_u *opened; /* Array of weight for which args are open:
4824 * 0: not opened
4825 * 1: opened in other tab
4826 * 2: opened in curtab
4827 * 3: opened in curtab and curwin
4828 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004829 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 int use_firstwin = FALSE; /* use first window for arglist */
4831 int split_ret = OK;
4832 int p_ea_save;
4833 alist_T *alist; /* argument list to be used */
4834 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004835 tabpage_T *tpnext;
4836 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004837 win_T *old_curwin, *last_curwin;
4838 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004839 win_T *new_curwin = NULL;
4840 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841
4842 if (ARGCOUNT <= 0)
4843 {
4844 /* Don't give an error message. We don't want it when the ":all"
4845 * command is in the .vimrc. */
4846 return;
4847 }
4848 setpcmark();
4849
4850 opened_len = ARGCOUNT;
4851 opened = alloc_clear((unsigned)opened_len);
4852 if (opened == NULL)
4853 return;
4854
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004855 /* Autocommands may do anything to the argument list. Make sure it's not
4856 * freed while we are working here by "locking" it. We still have to
4857 * watch out for its size to be changed. */
4858 alist = curwin->w_alist;
4859 ++alist->al_refcount;
4860
4861 old_curwin = curwin;
4862 old_curtab = curtab;
4863
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004864# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004866# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867
4868 /*
4869 * Try closing all windows that are not in the argument list.
4870 * Also close windows that are not full width;
4871 * When 'hidden' or "forceit" set the buffer becomes hidden.
4872 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004873 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004875 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004876 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004877 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004879 tpnext = curtab->tp_next;
4880 for (wp = firstwin; wp != NULL; wp = wpnext)
4881 {
4882 wpnext = wp->w_next;
4883 buf = wp->w_buffer;
4884 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004885 || (!keep_tabs && (buf->b_nwindows > 1
4886 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004887 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004888 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004890 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004891 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004893 if (i < alist->al_ga.ga_len
4894 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4895 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4896 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004898 int weight = 1;
4899
4900 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004901 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004902 ++weight;
4903 if (old_curwin == wp)
4904 ++weight;
4905 }
4906
4907 if (weight > (int)opened[i])
4908 {
4909 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004910 if (i == 0)
4911 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004912 if (new_curwin != NULL)
4913 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004914 new_curwin = wp;
4915 new_curtab = curtab;
4916 }
4917 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004918 else if (keep_tabs)
4919 i = opened_len;
4920
4921 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004922 {
4923 /* Use the current argument list for all windows
4924 * containing a file from it. */
4925 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004926 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004927 ++wp->w_alist->al_refcount;
4928 }
4929 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 }
4932 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004933 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004935 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004937 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004938 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004940 /* If the buffer was changed, and we would like to hide it,
4941 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02004942 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004943 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004945 bufref_T bufref;
4946
4947 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004948
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004949 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004950
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004951 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004952 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004953 {
4954 wpnext = firstwin; /* start all over... */
4955 continue;
4956 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004957 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004958 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004959 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004960 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004961 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004962 else
4963 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004964 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004965
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004966 /* check if autocommands removed the next window */
4967 if (!win_valid(wpnext))
4968 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02004969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
4972 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004973
4974 /* Without the ":tab" modifier only do the current tab page. */
4975 if (had_tab == 0 || tpnext == NULL)
4976 break;
4977
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004978 /* check if autocommands removed the next tab page */
4979 if (!valid_tabpage(tpnext))
4980 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004981
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004982 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 }
4984
4985 /*
4986 * Open a window for files in the argument list that don't have one.
4987 * ARGCOUNT may change while doing this, because of autocommands.
4988 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004989 if (count > opened_len || count <= 0)
4990 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4993 ++autocmd_no_enter;
4994 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004995 last_curwin = curwin;
4996 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004998 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4999 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005000 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005001 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5002 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005003
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005004 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
5006 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5007 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005008 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 {
5010 /* Move the already present window to below the current window */
5011 if (curwin->w_arg_idx != i)
5012 {
5013 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5014 {
5015 if (wpnext->w_arg_idx == i)
5016 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005017 if (keep_tabs)
5018 {
5019 new_curwin = wpnext;
5020 new_curtab = curtab;
5021 }
5022 else
5023 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 break;
5025 }
5026 }
5027 }
5028 }
5029 else if (split_ret == OK)
5030 {
5031 if (!use_firstwin) /* split current window */
5032 {
5033 p_ea_save = p_ea;
5034 p_ea = TRUE; /* use space from all windows */
5035 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5036 p_ea = p_ea_save;
5037 if (split_ret == FAIL)
5038 continue;
5039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 else /* first window: do autocmd for leaving this buffer */
5041 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042
5043 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005044 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 */
5046 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005047 if (i == 0)
5048 {
5049 new_curwin = curwin;
5050 new_curtab = curtab;
5051 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5053 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005054 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005056 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 if (use_firstwin)
5058 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 use_firstwin = FALSE;
5060 }
5061 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005062
5063 /* When ":tab" was used open a new tab for a new window repeatedly. */
5064 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5065 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 }
5067
5068 /* Remove the "lock" on the argument list. */
5069 alist_unlink(alist);
5070
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005072
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005073 /* restore last referenced tabpage's curwin */
5074 if (last_curtab != new_curtab)
5075 {
5076 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005077 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005078 if (win_valid(last_curwin))
5079 win_enter(last_curwin, FALSE);
5080 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005081 /* to window with first arg */
5082 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005083 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005084 if (win_valid(new_curwin))
5085 win_enter(new_curwin, FALSE);
5086
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 vim_free(opened);
5089}
5090
5091# if defined(FEAT_LISTCMDS) || defined(PROTO)
5092/*
5093 * Open a window for a number of buffers.
5094 */
5095 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005096ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097{
5098 buf_T *buf;
5099 win_T *wp, *wpnext;
5100 int split_ret = OK;
5101 int p_ea_save;
5102 int open_wins = 0;
5103 int r;
5104 int count; /* Maximum number of windows to open. */
5105 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005106 int had_tab = cmdmod.tab;
5107 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108
5109 if (eap->addr_count == 0) /* make as many windows as possible */
5110 count = 9999;
5111 else
5112 count = eap->line2; /* make as many windows as specified */
5113 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5114 all = FALSE;
5115 else
5116 all = TRUE;
5117
5118 setpcmark();
5119
5120#ifdef FEAT_GUI
5121 need_mouse_correct = TRUE;
5122#endif
5123
5124 /*
5125 * Close superfluous windows (two windows for the same buffer).
5126 * Also close windows that are not full-width.
5127 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005128 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005129 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005130 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005132 tpnext = curtab->tp_next;
5133 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005135 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005136 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005137 || ((cmdmod.split & WSP_VERT)
5138 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005139 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005140 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005141 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005142 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005143 {
5144 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005145 wpnext = firstwin; /* just in case an autocommand does
5146 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005147 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005148 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005149 }
5150 else
5151 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005153
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005154 /* Without the ":tab" modifier only do the current tab page. */
5155 if (had_tab == 0 || tpnext == NULL)
5156 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005157 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 }
5159
5160 /*
5161 * Go through the buffer list. When a buffer doesn't have a window yet,
5162 * open one. Otherwise move the window to the right position.
5163 * Watch out for autocommands that delete buffers or windows!
5164 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5166 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5170 {
5171 /* Check if this buffer needs a window */
5172 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5173 continue;
5174
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005175 if (had_tab != 0)
5176 {
5177 /* With the ":tab" modifier don't move the window. */
5178 if (buf->b_nwindows > 0)
5179 wp = lastwin; /* buffer has a window, skip it */
5180 else
5181 wp = NULL;
5182 }
5183 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005184 {
5185 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005186 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005187 if (wp->w_buffer == buf)
5188 break;
5189 /* If the buffer already has a window, move it */
5190 if (wp != NULL)
5191 win_move_after(wp, curwin);
5192 }
5193
5194 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005196 bufref_T bufref;
5197
5198 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005199
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 /* Split the window and put the buffer in it */
5201 p_ea_save = p_ea;
5202 p_ea = TRUE; /* use space from all windows */
5203 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5204 ++open_wins;
5205 p_ea = p_ea_save;
5206 if (split_ret == FAIL)
5207 continue;
5208
5209 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005210#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 swap_exists_action = SEA_DIALOG;
5212#endif
5213 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005214 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005216 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005217#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 break;
5221 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005222#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 if (swap_exists_action == SEA_QUIT)
5224 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005225# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005226 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005227
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005228 /* Reset the error/interrupt/exception state here so that
5229 * aborting() returns FALSE when closing a window. */
5230 enter_cleanup(&cs);
5231# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005232
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005233 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 win_close(curwin, TRUE);
5235 --open_wins;
5236 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005237 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005238
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005239# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005240 /* Restore the error/interrupt/exception state if not
5241 * discarded by a new aborting error, interrupt, or uncaught
5242 * exception. */
5243 leave_cleanup(&cs);
5244# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 }
5246 else
5247 handle_swap_exists(NULL);
5248#endif
5249 }
5250
5251 ui_breakcheck();
5252 if (got_int)
5253 {
5254 (void)vgetc(); /* only break the file loading, not the rest */
5255 break;
5256 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005257#ifdef FEAT_EVAL
5258 /* Autocommands deleted the buffer or aborted script processing!!! */
5259 if (aborting())
5260 break;
5261#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005262 /* When ":tab" was used open a new tab for a new window repeatedly. */
5263 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5264 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269
5270 /*
5271 * Close superfluous windows.
5272 */
5273 for (wp = lastwin; open_wins > count; )
5274 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005275 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 if (!win_valid(wp))
5278 {
5279 /* BufWrite Autocommands made the window invalid, start over */
5280 wp = lastwin;
5281 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005282 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005284 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 --open_wins;
5286 wp = lastwin;
5287 }
5288 else
5289 {
5290 wp = wp->w_prev;
5291 if (wp == NULL)
5292 break;
5293 }
5294 }
5295}
5296# endif /* FEAT_LISTCMDS */
5297
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005299static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005300
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301/*
5302 * do_modelines() - process mode lines for the current file
5303 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005304 * "flags" can be:
5305 * OPT_WINONLY only set options local to window
5306 * OPT_NOWIN don't set options local to window
5307 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 * Returns immediately if the "ml" option isn't set.
5309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005311do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005313 linenr_T lnum;
5314 int nmlines;
5315 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
5317 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5318 return;
5319
5320 /* Disallow recursive entry here. Can happen when executing a modeline
5321 * triggers an autocommand, which reloads modelines with a ":do". */
5322 if (entered)
5323 return;
5324
5325 ++entered;
5326 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5327 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005328 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 nmlines = 0;
5330
5331 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5332 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005333 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 nmlines = 0;
5335 --entered;
5336}
5337
5338#include "version.h" /* for version number */
5339
5340/*
5341 * chk_modeline() - check a single line for a mode string
5342 * Return FAIL if an error encountered.
5343 */
5344 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005345chk_modeline(
5346 linenr_T lnum,
5347 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348{
5349 char_u *s;
5350 char_u *e;
5351 char_u *linecopy; /* local copy of any modeline found */
5352 int prev;
5353 int vers;
5354 int end;
5355 int retval = OK;
5356 char_u *save_sourcing_name;
5357 linenr_T save_sourcing_lnum;
5358#ifdef FEAT_EVAL
5359 scid_T save_SID;
5360#endif
5361
5362 prev = -1;
5363 for (s = ml_get(lnum); *s != NUL; ++s)
5364 {
5365 if (prev == -1 || vim_isspace(prev))
5366 {
5367 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5368 || STRNCMP(s, "vi:", (size_t)3) == 0)
5369 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005370 /* Accept both "vim" and "Vim". */
5371 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 {
5373 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5374 e = s + 4;
5375 else
5376 e = s + 3;
5377 vers = getdigits(&e);
5378 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005379 && (s[0] != 'V'
5380 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 && (s[3] == ':'
5382 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5383 || (VIM_VERSION_100 < vers && s[3] == '<')
5384 || (VIM_VERSION_100 > vers && s[3] == '>')
5385 || (VIM_VERSION_100 == vers && s[3] == '=')))
5386 break;
5387 }
5388 }
5389 prev = *s;
5390 }
5391
5392 if (*s)
5393 {
5394 do /* skip over "ex:", "vi:" or "vim:" */
5395 ++s;
5396 while (s[-1] != ':');
5397
5398 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5399 if (linecopy == NULL)
5400 return FAIL;
5401
5402 save_sourcing_lnum = sourcing_lnum;
5403 save_sourcing_name = sourcing_name;
5404 sourcing_lnum = lnum; /* prepare for emsg() */
5405 sourcing_name = (char_u *)"modelines";
5406
5407 end = FALSE;
5408 while (end == FALSE)
5409 {
5410 s = skipwhite(s);
5411 if (*s == NUL)
5412 break;
5413
5414 /*
5415 * Find end of set command: ':' or end of line.
5416 * Skip over "\:", replacing it with ":".
5417 */
5418 for (e = s; *e != ':' && *e != NUL; ++e)
5419 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005420 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 if (*e == NUL)
5422 end = TRUE;
5423
5424 /*
5425 * If there is a "set" command, require a terminating ':' and
5426 * ignore the stuff after the ':'.
5427 * "vi:set opt opt opt: foo" -- foo not interpreted
5428 * "vi:opt opt opt: foo" -- foo interpreted
5429 * Accept "se" for compatibility with Elvis.
5430 */
5431 if (STRNCMP(s, "set ", (size_t)4) == 0
5432 || STRNCMP(s, "se ", (size_t)3) == 0)
5433 {
5434 if (*e != ':') /* no terminating ':'? */
5435 break;
5436 end = TRUE;
5437 s = vim_strchr(s, ' ') + 1;
5438 }
5439 *e = NUL; /* truncate the set command */
5440
5441 if (*s != NUL) /* skip over an empty "::" */
5442 {
5443#ifdef FEAT_EVAL
5444 save_SID = current_SID;
5445 current_SID = SID_MODELINE;
5446#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005447 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448#ifdef FEAT_EVAL
5449 current_SID = save_SID;
5450#endif
5451 if (retval == FAIL) /* stop if error found */
5452 break;
5453 }
5454 s = e + 1; /* advance to next part */
5455 }
5456
5457 sourcing_lnum = save_sourcing_lnum;
5458 sourcing_name = save_sourcing_name;
5459
5460 vim_free(linecopy);
5461 }
5462 return retval;
5463}
5464
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005465#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005467read_viminfo_bufferlist(
5468 vir_T *virp,
5469 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470{
5471 char_u *tab;
5472 linenr_T lnum;
5473 colnr_T col;
5474 buf_T *buf;
5475 char_u *sfname;
5476 char_u *xline;
5477
5478 /* Handle long line and escaped characters. */
5479 xline = viminfo_readstring(virp, 1, FALSE);
5480
5481 /* don't read in if there are files on the command-line or if writing: */
5482 if (xline != NULL && !writing && ARGCOUNT == 0
5483 && find_viminfo_parameter('%') != NULL)
5484 {
5485 /* Format is: <fname> Tab <lnum> Tab <col>.
5486 * Watch out for a Tab in the file name, work from the end. */
5487 lnum = 0;
5488 col = 0;
5489 tab = vim_strrchr(xline, '\t');
5490 if (tab != NULL)
5491 {
5492 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005493 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 tab = vim_strrchr(xline, '\t');
5495 if (tab != NULL)
5496 {
5497 *tab++ = '\0';
5498 lnum = atol((char *)tab);
5499 }
5500 }
5501
5502 /* Expand "~/" in the file name at "line + 1" to a full path.
5503 * Then try shortening it by comparing with the current directory */
5504 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005505 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506
5507 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5508 if (buf != NULL) /* just in case... */
5509 {
5510 buf->b_last_cursor.lnum = lnum;
5511 buf->b_last_cursor.col = col;
5512 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5513 }
5514 }
5515 vim_free(xline);
5516
5517 return viminfo_readline(virp);
5518}
5519
5520 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005521write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522{
5523 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005525 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005527 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528
5529 if (find_viminfo_parameter('%') == NULL)
5530 return;
5531
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005532 /* Without a number -1 is returned: do all buffers. */
5533 max_buffers = get_viminfo_parameter('%');
5534
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005536#define LINE_BUF_LEN (MAXPATHL + 40)
5537 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 if (line == NULL)
5539 return;
5540
Bram Moolenaarf740b292006-02-16 22:11:02 +00005541 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005544 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005545 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 {
5547 if (buf->b_fname == NULL
5548 || !buf->b_p_bl
5549#ifdef FEAT_QUICKFIX
5550 || bt_quickfix(buf)
5551#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005552#ifdef FEAT_TERMINAL
5553 || bt_terminal(buf)
5554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 || removable(buf->b_ffname))
5556 continue;
5557
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005558 if (max_buffers-- == 0)
5559 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 putc('%', fp);
5561 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005562 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 (long)buf->b_last_cursor.lnum,
5564 buf->b_last_cursor.col);
5565 viminfo_writestring(fp, line);
5566 }
5567 vim_free(line);
5568}
5569#endif
5570
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005571/*
5572 * Return TRUE if "buf" is the quickfix buffer.
5573 */
5574 int
5575bt_quickfix(buf_T *buf)
5576{
5577 return buf != NULL && buf->b_p_bt[0] == 'q';
5578}
5579
5580/*
5581 * Return TRUE if "buf" is a terminal buffer.
5582 */
5583 int
5584bt_terminal(buf_T *buf)
5585{
5586 return buf != NULL && buf->b_p_bt[0] == 't';
5587}
5588
5589/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005590 * Return TRUE if "buf" is a help buffer.
5591 */
5592 int
5593bt_help(buf_T *buf)
5594{
5595 return buf != NULL && buf->b_help;
5596}
5597
5598/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005599 * Return TRUE if "buf" is a "nofile", "acwrite" or "terminal" buffer.
5600 * This means the buffer name is not a file name.
5601 */
5602 int
5603bt_nofile(buf_T *buf)
5604{
5605 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5606 || buf->b_p_bt[0] == 'a'
5607 || buf->b_p_bt[0] == 't');
5608}
5609
5610/*
5611 * Return TRUE if "buf" is a "nowrite", "nofile" or "terminal" buffer.
5612 */
5613 int
5614bt_dontwrite(buf_T *buf)
5615{
5616 return buf != NULL && (buf->b_p_bt[0] == 'n' || buf->b_p_bt[0] == 't');
5617}
5618
5619 int
5620bt_dontwrite_msg(buf_T *buf)
5621{
5622 if (bt_dontwrite(buf))
5623 {
5624 EMSG(_("E382: Cannot write, 'buftype' option is set"));
5625 return TRUE;
5626 }
5627 return FALSE;
5628}
5629
5630/*
5631 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5632 * and 'bufhidden'.
5633 */
5634 int
5635buf_hide(buf_T *buf)
5636{
5637 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5638 switch (buf->b_p_bh[0])
5639 {
5640 case 'u': /* "unload" */
5641 case 'w': /* "wipe" */
5642 case 'd': return FALSE; /* "delete" */
5643 case 'h': return TRUE; /* "hide" */
5644 }
5645 return (p_hid || cmdmod.hide);
5646}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647
5648/*
5649 * Return special buffer name.
5650 * Returns NULL when the buffer has a normal file name.
5651 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005652 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005653buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005655#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005657 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005658 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005659 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005660
5661 /*
5662 * For location list window, w_llist_ref points to the location list.
5663 * For quickfix window, w_llist_ref is NULL.
5664 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005665 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005666 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005667 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005668 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005669 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005671
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005673 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 if (bt_nofile(buf))
5675 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005676#ifdef FEAT_TERMINAL
5677 if (buf->b_term != NULL)
5678 return term_get_status_text(buf->b_term);
5679#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005680 if (buf->b_fname != NULL)
5681 return buf->b_fname;
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005682 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005684
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005686 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 return NULL;
5688}
5689
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005690#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005691 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5692 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005693# define SWITCH_TO_WIN
5694
5695/*
5696 * Find a window that contains "buf" and switch to it.
5697 * If there is no such window, use the current window and change "curbuf".
5698 * Caller must initialize save_curbuf to NULL.
5699 * restore_win_for_buf() MUST be called later!
5700 */
5701 void
5702switch_to_win_for_buf(
5703 buf_T *buf,
5704 win_T **save_curwinp,
5705 tabpage_T **save_curtabp,
5706 bufref_T *save_curbuf)
5707{
5708 win_T *wp;
5709 tabpage_T *tp;
5710
5711 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5712 switch_buffer(save_curbuf, buf);
5713 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5714 {
5715 restore_win(*save_curwinp, *save_curtabp, TRUE);
5716 switch_buffer(save_curbuf, buf);
5717 }
5718}
5719
5720 void
5721restore_win_for_buf(
5722 win_T *save_curwin,
5723 tabpage_T *save_curtab,
5724 bufref_T *save_curbuf)
5725{
5726 if (save_curbuf->br_buf == NULL)
5727 restore_win(save_curwin, save_curtab, TRUE);
5728 else
5729 restore_buffer(save_curbuf);
5730}
5731#endif
5732
Bram Moolenaar4033c552017-09-16 20:54:51 +02005733#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005734/*
5735 * Find a window for buffer "buf".
5736 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5737 * If not found FAIL is returned.
5738 */
5739 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005740find_win_for_buf(
5741 buf_T *buf,
5742 win_T **wp,
5743 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005744{
5745 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5746 if ((*wp)->w_buffer == buf)
5747 goto win_found;
5748 return FAIL;
5749win_found:
5750 return OK;
5751}
5752#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753
5754#if defined(FEAT_SIGNS) || defined(PROTO)
5755/*
5756 * Insert the sign into the signlist.
5757 */
5758 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005759insert_sign(
5760 buf_T *buf, /* buffer to store sign in */
5761 signlist_T *prev, /* previous sign entry */
5762 signlist_T *next, /* next sign entry */
5763 int id, /* sign ID */
5764 linenr_T lnum, /* line number which gets the mark */
5765 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766{
5767 signlist_T *newsign;
5768
5769 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5770 if (newsign != NULL)
5771 {
5772 newsign->id = id;
5773 newsign->lnum = lnum;
5774 newsign->typenr = typenr;
5775 newsign->next = next;
5776#ifdef FEAT_NETBEANS_INTG
5777 newsign->prev = prev;
5778 if (next != NULL)
5779 next->prev = newsign;
5780#endif
5781
5782 if (prev == NULL)
5783 {
5784 /* When adding first sign need to redraw the windows to create the
5785 * column for signs. */
5786 if (buf->b_signlist == NULL)
5787 {
5788 redraw_buf_later(buf, NOT_VALID);
5789 changed_cline_bef_curs();
5790 }
5791
5792 /* first sign in signlist */
5793 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005794#ifdef FEAT_NETBEANS_INTG
5795 if (netbeans_active())
5796 buf->b_has_sign_column = TRUE;
5797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 }
5799 else
5800 prev->next = newsign;
5801 }
5802}
5803
5804/*
5805 * Add the sign into the signlist. Find the right spot to do it though.
5806 */
5807 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005808buf_addsign(
5809 buf_T *buf, /* buffer to store sign in */
5810 int id, /* sign ID */
5811 linenr_T lnum, /* line number which gets the mark */
5812 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813{
5814 signlist_T *sign; /* a sign in the signlist */
5815 signlist_T *prev; /* the previous sign */
5816
5817 prev = NULL;
5818 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5819 {
5820 if (lnum == sign->lnum && id == sign->id)
5821 {
5822 sign->typenr = typenr;
5823 return;
5824 }
5825 else if (
5826#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5827 id < 0 &&
5828#endif
5829 lnum < sign->lnum)
5830 {
5831#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5832 /* XXX - GRP: Is this because of sign slide problem? Or is it
5833 * really needed? Or is it because we allow multiple signs per
5834 * line? If so, should I add that feature to FEAT_SIGNS?
5835 */
5836 while (prev != NULL && prev->lnum == lnum)
5837 prev = prev->prev;
5838 if (prev == NULL)
5839 sign = buf->b_signlist;
5840 else
5841 sign = prev->next;
5842#endif
5843 insert_sign(buf, prev, sign, id, lnum, typenr);
5844 return;
5845 }
5846 prev = sign;
5847 }
5848#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5849 /* XXX - GRP: See previous comment */
5850 while (prev != NULL && prev->lnum == lnum)
5851 prev = prev->prev;
5852 if (prev == NULL)
5853 sign = buf->b_signlist;
5854 else
5855 sign = prev->next;
5856#endif
5857 insert_sign(buf, prev, sign, id, lnum, typenr);
5858
5859 return;
5860}
5861
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005862/*
5863 * For an existing, placed sign "markId" change the type to "typenr".
5864 * Returns the line number of the sign, or zero if the sign is not found.
5865 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005866 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005867buf_change_sign_type(
5868 buf_T *buf, /* buffer to store sign in */
5869 int markId, /* sign ID */
5870 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871{
5872 signlist_T *sign; /* a sign in the signlist */
5873
5874 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5875 {
5876 if (sign->id == markId)
5877 {
5878 sign->typenr = typenr;
5879 return sign->lnum;
5880 }
5881 }
5882
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005883 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884}
5885
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005886 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005887buf_getsigntype(
5888 buf_T *buf,
5889 linenr_T lnum,
5890 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891{
5892 signlist_T *sign; /* a sign in a b_signlist */
5893
5894 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5895 if (sign->lnum == lnum
5896 && (type == SIGN_ANY
5897# ifdef FEAT_SIGN_ICONS
5898 || (type == SIGN_ICON
5899 && sign_get_image(sign->typenr) != NULL)
5900# endif
5901 || (type == SIGN_TEXT
5902 && sign_get_text(sign->typenr) != NULL)
5903 || (type == SIGN_LINEHL
5904 && sign_get_attr(sign->typenr, TRUE) != 0)))
5905 return sign->typenr;
5906 return 0;
5907}
5908
5909
5910 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005911buf_delsign(
5912 buf_T *buf, /* buffer sign is stored in */
5913 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914{
5915 signlist_T **lastp; /* pointer to pointer to current sign */
5916 signlist_T *sign; /* a sign in a b_signlist */
5917 signlist_T *next; /* the next sign in a b_signlist */
5918 linenr_T lnum; /* line number whose sign was deleted */
5919
5920 lastp = &buf->b_signlist;
5921 lnum = 0;
5922 for (sign = buf->b_signlist; sign != NULL; sign = next)
5923 {
5924 next = sign->next;
5925 if (sign->id == id)
5926 {
5927 *lastp = next;
5928#ifdef FEAT_NETBEANS_INTG
5929 if (next != NULL)
5930 next->prev = sign->prev;
5931#endif
5932 lnum = sign->lnum;
5933 vim_free(sign);
5934 break;
5935 }
5936 else
5937 lastp = &sign->next;
5938 }
5939
5940 /* When deleted the last sign need to redraw the windows to remove the
5941 * sign column. */
5942 if (buf->b_signlist == NULL)
5943 {
5944 redraw_buf_later(buf, NOT_VALID);
5945 changed_cline_bef_curs();
5946 }
5947
5948 return lnum;
5949}
5950
5951
5952/*
5953 * Find the line number of the sign with the requested id. If the sign does
5954 * not exist, return 0 as the line number. This will still let the correct file
5955 * get loaded.
5956 */
5957 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005958buf_findsign(
5959 buf_T *buf, /* buffer to store sign in */
5960 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961{
5962 signlist_T *sign; /* a sign in the signlist */
5963
5964 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5965 if (sign->id == id)
5966 return sign->lnum;
5967
5968 return 0;
5969}
5970
5971 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005972buf_findsign_id(
5973 buf_T *buf, /* buffer whose sign we are searching for */
5974 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975{
5976 signlist_T *sign; /* a sign in the signlist */
5977
5978 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5979 if (sign->lnum == lnum)
5980 return sign->id;
5981
5982 return 0;
5983}
5984
5985
5986# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5987/* see if a given type of sign exists on a specific line */
5988 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005989buf_findsigntype_id(
5990 buf_T *buf, /* buffer whose sign we are searching for */
5991 linenr_T lnum, /* line number of sign */
5992 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993{
5994 signlist_T *sign; /* a sign in the signlist */
5995
5996 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5997 if (sign->lnum == lnum && sign->typenr == typenr)
5998 return sign->id;
5999
6000 return 0;
6001}
6002
6003
6004# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6005/* return the number of icons on the given line */
6006 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006007buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008{
6009 signlist_T *sign; /* a sign in the signlist */
6010 int count = 0;
6011
6012 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6013 if (sign->lnum == lnum)
6014 if (sign_get_image(sign->typenr) != NULL)
6015 count++;
6016
6017 return count;
6018}
6019# endif /* FEAT_SIGN_ICONS */
6020# endif /* FEAT_NETBEANS_INTG */
6021
6022
6023/*
6024 * Delete signs in buffer "buf".
6025 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02006026 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006027buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028{
6029 signlist_T *next;
6030
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006031 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02006032 * sign column. Not when curwin is NULL (this means we're exiting). */
6033 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006034 {
6035 redraw_buf_later(buf, NOT_VALID);
6036 changed_cline_bef_curs();
6037 }
6038
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 while (buf->b_signlist != NULL)
6040 {
6041 next = buf->b_signlist->next;
6042 vim_free(buf->b_signlist);
6043 buf->b_signlist = next;
6044 }
6045}
6046
6047/*
6048 * Delete all signs in all buffers.
6049 */
6050 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006051buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052{
6053 buf_T *buf; /* buffer we are checking for signs */
6054
Bram Moolenaar29323592016-07-24 22:04:11 +02006055 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058}
6059
6060/*
6061 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6062 */
6063 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006064sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065{
6066 buf_T *buf;
6067 signlist_T *p;
6068 char lbuf[BUFSIZ];
6069
6070 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6071 msg_putchar('\n');
6072 if (rbuf == NULL)
6073 buf = firstbuf;
6074 else
6075 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006076 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 {
6078 if (buf->b_signlist != NULL)
6079 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006080 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006081 MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 msg_putchar('\n');
6083 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006084 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006086 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6088 MSG_PUTS(lbuf);
6089 msg_putchar('\n');
6090 }
6091 if (rbuf != NULL)
6092 break;
6093 buf = buf->b_next;
6094 }
6095}
6096
6097/*
6098 * Adjust a placed sign for inserted/deleted lines.
6099 */
6100 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006101sign_mark_adjust(
6102 linenr_T line1,
6103 linenr_T line2,
6104 long amount,
6105 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106{
6107 signlist_T *sign; /* a sign in a b_signlist */
6108
6109 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6110 {
6111 if (sign->lnum >= line1 && sign->lnum <= line2)
6112 {
6113 if (amount == MAXLNUM)
6114 sign->lnum = line1;
6115 else
6116 sign->lnum += amount;
6117 }
6118 else if (sign->lnum > line2)
6119 sign->lnum += amount_after;
6120 }
6121}
6122#endif /* FEAT_SIGNS */
6123
6124/*
6125 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6126 */
6127 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006128set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129{
6130 if (on != curbuf->b_p_bl)
6131 {
6132 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 if (on)
6134 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6135 else
6136 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 }
6138}
6139
6140/*
6141 * Read the file for "buf" again and check if the contents changed.
6142 * Return TRUE if it changed or this could not be checked.
6143 */
6144 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006145buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146{
6147 buf_T *newbuf;
6148 int differ = TRUE;
6149 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 exarg_T ea;
6152
6153 /* Allocate a buffer without putting it in the buffer list. */
6154 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6155 if (newbuf == NULL)
6156 return TRUE;
6157
6158 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6159 if (prep_exarg(&ea, buf) == FAIL)
6160 {
6161 wipe_buffer(newbuf, FALSE);
6162 return TRUE;
6163 }
6164
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 /* set curwin/curbuf to buf and save a few things */
6166 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167
Bram Moolenaar4770d092006-01-12 23:22:24 +00006168 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 && readfile(buf->b_ffname, buf->b_fname,
6170 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6171 &ea, READ_NEW | READ_DUMMY) == OK)
6172 {
6173 /* compare the two files line by line */
6174 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6175 {
6176 differ = FALSE;
6177 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6178 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6179 {
6180 differ = TRUE;
6181 break;
6182 }
6183 }
6184 }
6185 vim_free(ea.cmd);
6186
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 /* restore curwin/curbuf and a few other things */
6188 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189
6190 if (curbuf != newbuf) /* safety check */
6191 wipe_buffer(newbuf, FALSE);
6192
6193 return differ;
6194}
6195
6196/*
6197 * Wipe out a buffer and decrement the last buffer number if it was used for
6198 * this buffer. Call this to wipe out a temp buffer that does not contain any
6199 * marks.
6200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006202wipe_buffer(
6203 buf_T *buf,
6204 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205{
6206 if (buf->b_fnum == top_file_num - 1)
6207 --top_file_num;
6208
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006210 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006211
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006212 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006213
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006215 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216}