blob: 4b79840cb5640706ba5625f35512d8ea6c047b92 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010030static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020034static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
35static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
36static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#endif
40#ifdef FEAT_TITLE
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010041static int ti_change(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000042#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010043static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
44static void free_buffer(buf_T *);
45static void free_buffer_stuff(buf_T *buf, int free_options);
46static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000047
48#ifdef UNIX
49# define dev_T dev_t
50#else
51# define dev_T unsigned
52#endif
53
54#if defined(FEAT_SIGNS)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010055static 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 +000056#endif
57
Bram Moolenaar4033c552017-09-16 20:54:51 +020058#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020059static char *msg_loclist = N_("[Location List]");
60static char *msg_qflist = N_("[Quickfix List]");
61#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010062static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020064/* Number of times free_buffer() was called. */
65static int buf_free_count = 0;
66
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020067/* Read data from buffer for retrying. */
68 static int
69read_buffer(
70 int read_stdin, /* read file from stdin, otherwise fifo */
71 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
72 int flags) /* extra flags for readfile() */
73{
74 int retval = OK;
75 linenr_T line_count;
76
77 /*
78 * Read from the buffer which the text is already filled in and append at
79 * the end. This makes it possible to retry when 'fileformat' or
80 * 'fileencoding' was guessed wrong.
81 */
82 line_count = curbuf->b_ml.ml_line_count;
83 retval = readfile(
84 read_stdin ? NULL : curbuf->b_ffname,
85 read_stdin ? NULL : curbuf->b_fname,
86 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
87 flags | READ_BUFFER);
88 if (retval == OK)
89 {
90 /* Delete the binary lines. */
91 while (--line_count >= 0)
92 ml_delete((linenr_T)1, FALSE);
93 }
94 else
95 {
96 /* Delete the converted lines. */
97 while (curbuf->b_ml.ml_line_count > line_count)
98 ml_delete(line_count, FALSE);
99 }
100 /* Put the cursor on the first line. */
101 curwin->w_cursor.lnum = 1;
102 curwin->w_cursor.col = 0;
103
104 if (read_stdin)
105 {
106 /* Set or reset 'modified' before executing autocommands, so that
107 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100108 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200109 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100110 else if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200111 unchanged(curbuf, FALSE);
112
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100113 if (retval == OK)
114 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100115#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100116 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100117 curbuf, &retval);
118#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100119 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200120#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100121 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200122 }
123 return retval;
124}
125
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200127 * Open current buffer, that is: open the memfile and read the file into
128 * memory.
129 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 */
131 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100132open_buffer(
133 int read_stdin, /* read file from stdin */
134 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
135 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136{
137 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200138 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100139#ifdef FEAT_SYN_HL
140 long old_tw = curbuf->b_p_tw;
141#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200142 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
144 /*
145 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
146 * When re-entering the same buffer, it should not change, because the
147 * user may have reset the flag by hand.
148 */
149 if (readonlymode && curbuf->b_ffname != NULL
150 && (curbuf->b_flags & BF_NEVERLOADED))
151 curbuf->b_p_ro = TRUE;
152
Bram Moolenaar4770d092006-01-12 23:22:24 +0000153 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 {
155 /*
156 * There MUST be a memfile, otherwise we can't do anything
157 * If we can't create one for the current buffer, take another buffer
158 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100159 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200160 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 if (curbuf->b_ml.ml_mfp != NULL)
162 break;
163 /*
164 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000165 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 */
167 if (curbuf == NULL)
168 {
169 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
170 getout(2);
171 }
172 EMSG(_("E83: Cannot allocate buffer, using other one..."));
173 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100174#ifdef FEAT_SYN_HL
175 if (old_tw != curbuf->b_p_tw)
176 check_colorcolumn(curwin);
177#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 return FAIL;
179 }
180
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 /* The autocommands in readfile() may change the buffer, but only AFTER
182 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200183 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
186 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100187 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
189 if (curbuf->b_ffname != NULL
190#ifdef FEAT_NETBEANS_INTG
191 && netbeansReadFile
192#endif
193 )
194 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100195 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200196#ifdef UNIX
197 int save_bin = curbuf->b_p_bin;
198 int perm;
199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200#ifdef FEAT_NETBEANS_INTG
201 int oldFire = netbeansFireChanges;
202
203 netbeansFireChanges = 0;
204#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200205#ifdef UNIX
206 perm = mch_getperm(curbuf->b_ffname);
207 if (perm >= 0 && (0
208# ifdef S_ISFIFO
209 || S_ISFIFO(perm)
210# endif
211# ifdef S_ISSOCK
212 || S_ISSOCK(perm)
213# endif
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200214# ifdef OPEN_CHR_FILES
215 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
216# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200217 ))
218 read_fifo = TRUE;
219 if (read_fifo)
220 curbuf->b_p_bin = TRUE;
221#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100222 if (shortmess(SHM_FILEINFO))
223 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200225 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200226 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
227#ifdef UNIX
228 if (read_fifo)
229 {
230 curbuf->b_p_bin = save_bin;
231 if (retval == OK)
232 retval = read_buffer(FALSE, eap, flags);
233 }
234#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100235 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236#ifdef FEAT_NETBEANS_INTG
237 netbeansFireChanges = oldFire;
238#endif
239 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200240 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 fix_help_buffer();
242 }
243 else if (read_stdin)
244 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200245 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
247 /*
248 * First read the text in binary mode into the buffer.
249 * Then read from that same buffer and append at the end. This makes
250 * it possible to retry when 'fileformat' or 'fileencoding' was
251 * guessed wrong.
252 */
253 curbuf->b_p_bin = TRUE;
254 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200255 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
256 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 curbuf->b_p_bin = save_bin;
258 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200259 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 }
261
262 /* if first time loading this buffer, init b_chartab[] */
263 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100264 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100266#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100267 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100268#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270
271 /*
272 * Set/reset the Changed flag first, autocmds may change the buffer.
273 * Apply the automatic commands, before processing the modelines.
274 * So the modelines have priority over auto commands.
275 */
276 /* When reading stdin, the buffer contents always needs writing, so set
277 * the changed flag. Unless in readonly mode: "ls | gview -".
278 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000279 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100281#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000284 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100286 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 unchanged(curbuf, FALSE);
288 save_file_ff(curbuf); /* keep this fileformat */
289
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100290 /* Set last_changedtick to avoid triggering a TextChanged autocommand right
291 * after it was added. */
292 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
293#ifdef FEAT_INS_EXPAND
294 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
295#endif
296
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 /* require "!" to overwrite the file, because it wasn't read completely */
298#ifdef FEAT_EVAL
299 if (aborting())
300#else
301 if (got_int)
302#endif
303 curbuf->b_flags |= BF_READERR;
304
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000305#ifdef FEAT_FOLDING
306 /* Need to update automatic folding. Do this before the autocommands,
307 * they may use the fold info. */
308 foldUpdateAll(curwin);
309#endif
310
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 /* need to set w_topline, unless some autocommand already did that. */
312 if (!(curwin->w_valid & VALID_TOPLINE))
313 {
314 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100315#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100319#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100321#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323#endif
324
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100325 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 /*
328 * The autocommands may have changed the current buffer. Apply the
329 * modelines to the correct buffer, if it still exists and is loaded.
330 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200331 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 {
333 aco_save_T aco;
334
335 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200336 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000337 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
339
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100342 &retval);
343#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346
347 /* restore curwin/curbuf and a few other things */
348 aucmd_restbuf(&aco);
349 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 }
351
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 return retval;
353}
354
355/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200356 * Store "buf" in "bufref" and set the free count.
357 */
358 void
359set_bufref(bufref_T *bufref, buf_T *buf)
360{
361 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200362 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200363 bufref->br_buf_free_count = buf_free_count;
364}
365
366/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200367 * Return TRUE if "bufref->br_buf" points to the same buffer as when
368 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200369 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200370 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
371 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200372 */
373 int
374bufref_valid(bufref_T *bufref)
375{
376 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200377 ? TRUE : buf_valid(bufref->br_buf)
378 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200379}
380
381/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200383 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 */
385 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100386buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387{
388 buf_T *bp;
389
Bram Moolenaar82404332016-07-10 17:00:38 +0200390 /* Assume that we more often have a recent buffer, start with the last
391 * one. */
392 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 if (bp == buf)
394 return TRUE;
395 return FALSE;
396}
397
398/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200399 * A hash table used to quickly lookup a buffer by its number.
400 */
401static hashtab_T buf_hashtab;
402
403 static void
404buf_hashtab_add(buf_T *buf)
405{
406 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
407 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
408 EMSG(_("E931: Buffer cannot be registered"));
409}
410
411 static void
412buf_hashtab_remove(buf_T *buf)
413{
414 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
415
416 if (!HASHITEM_EMPTY(hi))
417 hash_remove(&buf_hashtab, hi);
418}
419
420/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 * Close the link to a buffer.
422 * "action" is used when there is no longer a window for the buffer.
423 * It can be:
424 * 0 buffer becomes hidden
425 * DOBUF_UNLOAD buffer is unloaded
426 * DOBUF_DELETE buffer is unloaded and removed from buffer list
427 * DOBUF_WIPE buffer is unloaded and really deleted
428 * When doing all but the first one on the current buffer, the caller should
429 * get a new buffer very soon!
430 *
431 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100432 *
433 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
434 * cause there to be only one window with this buffer. e.g. when ":quit" is
435 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 */
437 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100438close_buffer(
439 win_T *win, /* if not NULL, set b_last_cursor */
440 buf_T *buf,
441 int action,
442 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100445 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200446 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100447 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200448 win_T *the_curwin = curwin;
449 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 int unload_buf = (action != 0);
451 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
452 int wipe_buf = (action == DOBUF_WIPE);
453
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200454 /*
455 * Force unloading or deleting when 'bufhidden' says so.
456 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
457 * "hide" (otherwise we could never free or delete a buffer).
458 */
459 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
460 {
461 del_buf = TRUE;
462 unload_buf = TRUE;
463 }
464 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
465 {
466 del_buf = TRUE;
467 unload_buf = TRUE;
468 wipe_buf = TRUE;
469 }
470 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
471 unload_buf = TRUE;
472
Bram Moolenaar94053a52017-08-01 21:44:33 +0200473#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200474 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200475 {
476 if (term_job_running(buf->b_term))
477 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200478 if (wipe_buf || unload_buf)
479 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200480 free_terminal(buf);
481 else
482 {
483 /* The job keeps running, hide the buffer. */
484 del_buf = FALSE;
485 unload_buf = FALSE;
486 }
487 }
488 else
489 {
490 /* A terminal buffer is wiped out if the job has finished. */
491 del_buf = TRUE;
492 unload_buf = TRUE;
493 wipe_buf = TRUE;
494 }
495 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200498 /* Disallow deleting the buffer when it is locked (already being closed or
499 * halfway a command that relies on it). Unloading is allowed. */
500 if (buf->b_locked > 0 && (del_buf || wipe_buf))
501 {
502 EMSG(_("E937: Attempt to delete a buffer that is in use"));
503 return;
504 }
505
Bram Moolenaar4033c552017-09-16 20:54:51 +0200506 /* check no autocommands closed the window */
507 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 {
509 /* Set b_last_cursor when closing the last window for the buffer.
510 * Remember the last cursor position and window options of the buffer.
511 * This used to be only for the current window, but then options like
512 * 'foldmethod' may be lost with a ":only" command. */
513 if (buf->b_nwindows == 1)
514 set_last_cursor(win);
515 buflist_setfpos(buf, win,
516 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
517 win->w_cursor.col, TRUE);
518 }
519
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200520 set_bufref(&bufref, buf);
521
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 /* When the buffer is no longer in a window, trigger BufWinLeave */
523 if (buf->b_nwindows == 1)
524 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200525 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200526 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
527 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200528 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100529 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200530 /* Autocommands deleted the buffer. */
531aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100532 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100534 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200535 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200536 if (abort_if_last && one_window())
537 /* Autocommands made this the only window. */
538 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539
540 /* When the buffer becomes hidden, but is not unloaded, trigger
541 * BufHidden */
542 if (!unload_buf)
543 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200544 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200545 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
546 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200547 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200548 /* Autocommands deleted the buffer. */
549 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200550 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200551 if (abort_if_last && one_window())
552 /* Autocommands made this the only window. */
553 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100555#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 if (aborting()) /* autocmds may abort script processing */
557 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200560
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200561 /* If the buffer was in curwin and the window has changed, go back to that
562 * window, if it still exists. This avoids that ":edit x" triggering a
563 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
564 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
565 {
566 block_autocmds();
567 goto_tabpage_win(the_curtab, the_curwin);
568 unblock_autocmds();
569 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200570
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572
573 /* decrease the link count from windows (unless not in any window) */
574 if (buf->b_nwindows > 0)
575 --buf->b_nwindows;
576
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100577#ifdef FEAT_DIFF
578 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100579 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100580#endif
581
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 /* Return when a window is displaying the buffer or when it's not
583 * unloaded. */
584 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586
587 /* Always remove the buffer when there is no file name. */
588 if (buf->b_ffname == NULL)
589 del_buf = TRUE;
590
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200591 /* When closing the current buffer stop Visual mode before freeing
592 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200593 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200594#if defined(EXITFREE)
595 && !entered_free_all_mem
596#endif
597 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200598 end_visual_mode();
599
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 /*
601 * Free all things allocated for this buffer.
602 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
603 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 /* Remember if we are closing the current buffer. Restore the number of
605 * windows, so that autocommands in buf_freeall() don't get confused. */
606 is_curbuf = (buf == curbuf);
607 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200609 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200612 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100614#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000615 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 /*
620 * It's possible that autocommands change curbuf to the one being deleted.
621 * This might cause the previous curbuf to be deleted unexpectedly. But
622 * in some cases it's OK to delete the curbuf, because a new one is
623 * obtained anyway. Therefore only return if curbuf changed to the
624 * deleted buffer.
625 */
626 if (buf == curbuf && !is_curbuf)
627 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200628
Bram Moolenaar4033c552017-09-16 20:54:51 +0200629 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200630 win->w_buffer = NULL; /* make sure we don't use the buffer now */
631
632 /* Autocommands may have opened or closed windows for this buffer.
633 * Decrement the count for the close we do here. */
634 if (buf->b_nwindows > 0)
635 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 /*
638 * Remove the buffer from the list.
639 */
640 if (wipe_buf)
641 {
642#ifdef FEAT_SUN_WORKSHOP
643 if (usingSunWorkShop)
644 workshop_file_closed_lineno((char *)buf->b_ffname,
645 (int)buf->b_last_cursor.lnum);
646#endif
647 vim_free(buf->b_ffname);
648 vim_free(buf->b_sfname);
649 if (buf->b_prev == NULL)
650 firstbuf = buf->b_next;
651 else
652 buf->b_prev->b_next = buf->b_next;
653 if (buf->b_next == NULL)
654 lastbuf = buf->b_prev;
655 else
656 buf->b_next->b_prev = buf->b_prev;
657 free_buffer(buf);
658 }
659 else
660 {
661 if (del_buf)
662 {
663 /* Free all internal variables and reset option values, to make
664 * ":bdel" compatible with Vim 5.7. */
665 free_buffer_stuff(buf, TRUE);
666
667 /* Make it look like a new buffer. */
668 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
669
670 /* Init the options when loaded again. */
671 buf->b_p_initialized = FALSE;
672 }
673 buf_clear_file(buf);
674 if (del_buf)
675 buf->b_p_bl = FALSE;
676 }
677}
678
679/*
680 * Make buffer not contain a file.
681 */
682 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100683buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684{
685 buf->b_ml.ml_line_count = 1;
686 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 buf->b_p_eol = TRUE;
689 buf->b_start_eol = TRUE;
690#ifdef FEAT_MBYTE
691 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000692 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693#endif
694 buf->b_ml.ml_mfp = NULL;
695 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
696#ifdef FEAT_NETBEANS_INTG
697 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698#endif
699}
700
701/*
702 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200703 * the file. Careful: get here with "curwin" NULL when exiting.
704 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200705 * BFA_DEL buffer is going to be deleted
706 * BFA_WIPE buffer is going to be wiped out
707 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100710buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200713 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200714 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200715 win_T *the_curwin = curwin;
716 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717
Bram Moolenaar5a497892016-09-03 16:29:04 +0200718 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200719 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200720 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200721 if (buf->b_ml.ml_mfp != NULL)
722 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200723 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
724 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200725 && !bufref_valid(&bufref))
726 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200727 return;
728 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200729 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200731 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
732 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200733 && !bufref_valid(&bufref))
734 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 return;
736 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200737 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200739 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
740 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200741 && !bufref_valid(&bufref))
742 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 return;
744 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200745 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200746
Bram Moolenaar5a497892016-09-03 16:29:04 +0200747 /* If the buffer was in curwin and the window has changed, go back to that
748 * window, if it still exists. This avoids that ":edit x" triggering a
749 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
750 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
751 {
752 block_autocmds();
753 goto_tabpage_win(the_curtab, the_curwin);
754 unblock_autocmds();
755 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200756
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100757#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000758 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100760#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761
762 /*
763 * It's possible that autocommands change curbuf to the one being deleted.
764 * This might cause curbuf to be deleted unexpectedly. But in some cases
765 * it's OK to delete the curbuf, because a new one is obtained anyway.
766 * Therefore only return if curbuf changed to the deleted buffer.
767 */
768 if (buf == curbuf && !is_curbuf)
769 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770#ifdef FEAT_DIFF
771 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
772#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200773#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100774 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200775 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100776 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200777#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000778
779#ifdef FEAT_FOLDING
780 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000781 {
782 win_T *win;
783 tabpage_T *tp;
784
785 FOR_ALL_TAB_WINDOWS(tp, win)
786 if (win->w_buffer == buf)
787 clearFolding(win);
788 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000789#endif
790
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791#ifdef FEAT_TCL
792 tcl_buffer_free(buf);
793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 ml_close(buf, TRUE); /* close and delete the memline/memfile */
795 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200796 if ((flags & BFA_KEEP_UNDO) == 0)
797 {
798 u_blockfree(buf); /* free the memory allocated for undo */
799 u_clearall(buf); /* reset all undo information */
800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200802 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000804 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805}
806
807/*
808 * Free a buffer structure and the things it contains related to the buffer
809 * itself (not the file, that must have been done already).
810 */
811 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100812free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200814 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200816#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200817 /* b:changedtick uses an item in buf_T, remove it now */
818 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200819 unref_var_dict(buf->b_vars);
820#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200821#ifdef FEAT_LUA
822 lua_buffer_free(buf);
823#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000824#ifdef FEAT_MZSCHEME
825 mzscheme_buffer_free(buf);
826#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827#ifdef FEAT_PERL
828 perl_buf_free(buf);
829#endif
830#ifdef FEAT_PYTHON
831 python_buffer_free(buf);
832#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200833#ifdef FEAT_PYTHON3
834 python3_buffer_free(buf);
835#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836#ifdef FEAT_RUBY
837 ruby_buffer_free(buf);
838#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200839#ifdef FEAT_JOB_CHANNEL
840 channel_buffer_free(buf);
841#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200842#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200843 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200844#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200845
846 buf_hashtab_remove(buf);
847
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200848 aubuflocal_remove(buf);
849
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200850 if (autocmd_busy)
851 {
852 /* Do not free the buffer structure while autocommands are executing,
853 * it's still needed. Free it when autocmd_busy is reset. */
854 buf->b_next = au_pending_free_buf;
855 au_pending_free_buf = buf;
856 }
857 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200858 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859}
860
861/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100862 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100863 */
864 static void
865init_changedtick(buf_T *buf)
866{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100867 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100868
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100869 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
870 di->di_tv.v_type = VAR_NUMBER;
871 di->di_tv.v_lock = VAR_FIXED;
872 di->di_tv.vval.v_number = 0;
873
Bram Moolenaar92769c32017-02-25 15:41:37 +0100874#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100875 STRCPY(buf->b_ct_di.di_key, "changedtick");
876 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100877#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100878}
879
880/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
882 */
883 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100884free_buffer_stuff(
885 buf_T *buf,
886 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887{
888 if (free_options)
889 {
890 clear_wininfo(buf); /* including window-local options */
891 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200892#ifdef FEAT_SPELL
893 ga_clear(&buf->b_s.b_langp);
894#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 }
896#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100897 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100898 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100899
900 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
901 hash_init(&buf->b_vars->dv_hashtab);
902 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100903 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905#endif
906#ifdef FEAT_USR_CMDS
907 uc_clear(&buf->b_ucmds); /* clear local user commands */
908#endif
909#ifdef FEAT_SIGNS
910 buf_delete_signs(buf); /* delete any signs */
911#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000912#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200913 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000914#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915#ifdef FEAT_LOCALMAP
916 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
917 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
918#endif
919#ifdef FEAT_MBYTE
Bram Moolenaard23a8232018-02-10 18:45:26 +0100920 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921#endif
922}
923
924/*
925 * Free the b_wininfo list for buffer "buf".
926 */
927 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100928clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929{
930 wininfo_T *wip;
931
932 while (buf->b_wininfo != NULL)
933 {
934 wip = buf->b_wininfo;
935 buf->b_wininfo = wip->wi_next;
936 if (wip->wi_optset)
937 {
938 clear_winopt(&wip->wi_opt);
939#ifdef FEAT_FOLDING
940 deleteFoldRecurse(&wip->wi_folds);
941#endif
942 }
943 vim_free(wip);
944 }
945}
946
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947/*
948 * Go to another buffer. Handles the result of the ATTENTION dialog.
949 */
950 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100951goto_buffer(
952 exarg_T *eap,
953 int start,
954 int dir,
955 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956{
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200957#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200958 bufref_T old_curbuf;
959
960 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961
962 swap_exists_action = SEA_DIALOG;
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200963#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
965 start, dir, count, eap->forceit);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200966#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
968 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200969# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000970 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000971
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000972 /* Reset the error/interrupt/exception state here so that
973 * aborting() returns FALSE when closing a window. */
974 enter_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200975# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000976
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000977 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 win_close(curwin, TRUE);
979 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000980 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000981
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200982# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000983 /* Restore the error/interrupt/exception state if not discarded by a
984 * new aborting error, interrupt, or uncaught exception. */
985 leave_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200986# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 }
988 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200989 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990#endif
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200991}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992
Bram Moolenaare64ac772005-12-07 20:54:59 +0000993#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994/*
995 * Handle the situation of swap_exists_action being set.
996 * It is allowed for "old_curbuf" to be NULL or invalid.
997 */
998 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200999handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001001# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001002 cleanup_T cs;
1003# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001004# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001005 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001006# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001007 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 if (swap_exists_action == SEA_QUIT)
1010 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001011# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001012 /* Reset the error/interrupt/exception state here so that
1013 * aborting() returns FALSE when closing a buffer. */
1014 enter_cleanup(&cs);
1015# endif
1016
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 /* User selected Quit at ATTENTION prompt. Go back to previous
1018 * buffer. If that buffer is gone or the same as the current one,
1019 * open a new, empty buffer. */
1020 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001021 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001022 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001023 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1024 || old_curbuf->br_buf == curbuf)
1025 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1026 else
1027 buf = old_curbuf->br_buf;
1028 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001029 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001030 enter_buffer(buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001031# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001032 if (old_tw != curbuf->b_p_tw)
1033 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001034# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001037
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001038# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001039 /* Restore the error/interrupt/exception state if not discarded by a
1040 * new aborting error, interrupt, or uncaught exception. */
1041 leave_cleanup(&cs);
1042# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 }
1044 else if (swap_exists_action == SEA_RECOVER)
1045 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001046# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001047 /* Reset the error/interrupt/exception state here so that
1048 * aborting() returns FALSE when closing a buffer. */
1049 enter_cleanup(&cs);
1050# endif
1051
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 /* User selected Recover at ATTENTION prompt. */
1053 msg_scroll = TRUE;
1054 ml_recover();
1055 MSG_PUTS("\n"); /* don't overwrite the last message */
1056 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001057 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001058
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001059# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001060 /* Restore the error/interrupt/exception state if not discarded by a
1061 * new aborting error, interrupt, or uncaught exception. */
1062 leave_cleanup(&cs);
1063# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 }
1065 swap_exists_action = SEA_NONE;
1066}
1067#endif
1068
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069/*
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}
1195
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001196static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001197
1198/*
1199 * Make the current buffer empty.
1200 * Used when it is wiped out and it's the last buffer.
1201 */
1202 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001203empty_curbuf(
1204 int close_others,
1205 int forceit,
1206 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001207{
1208 int retval;
1209 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001210 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001211
1212 if (action == DOBUF_UNLOAD)
1213 {
1214 EMSG(_("E90: Cannot unload last buffer"));
1215 return FAIL;
1216 }
1217
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001218 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001219 if (close_others)
1220 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001221 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001222
1223 setpcmark();
1224 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1225 forceit ? ECMD_FORCEIT : 0, curwin);
1226
1227 /*
1228 * do_ecmd() may create a new buffer, then we have to delete
1229 * the old one. But do_ecmd() may have done that already, check
1230 * if the buffer still exists.
1231 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001232 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001233 close_buffer(NULL, buf, action, FALSE);
1234 if (!close_others)
1235 need_fileinfo = FALSE;
1236 return retval;
1237}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238/*
1239 * Implementation of the commands for the buffer list.
1240 *
1241 * action == DOBUF_GOTO go to specified buffer
1242 * action == DOBUF_SPLIT split window and go to specified buffer
1243 * action == DOBUF_UNLOAD unload specified buffer(s)
1244 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1245 * action == DOBUF_WIPE delete specified buffer(s) really
1246 *
1247 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1248 * start == DOBUF_FIRST go to "count" buffer from first buffer
1249 * start == DOBUF_LAST go to "count" buffer from last buffer
1250 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1251 *
1252 * Return FAIL or OK.
1253 */
1254 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001255do_buffer(
1256 int action,
1257 int start,
1258 int dir, /* FORWARD or BACKWARD */
1259 int count, /* buffer number or number of buffers */
1260 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261{
1262 buf_T *buf;
1263 buf_T *bp;
1264 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1265 || action == DOBUF_WIPE);
1266
1267 switch (start)
1268 {
1269 case DOBUF_FIRST: buf = firstbuf; break;
1270 case DOBUF_LAST: buf = lastbuf; break;
1271 default: buf = curbuf; break;
1272 }
1273 if (start == DOBUF_MOD) /* find next modified buffer */
1274 {
1275 while (count-- > 0)
1276 {
1277 do
1278 {
1279 buf = buf->b_next;
1280 if (buf == NULL)
1281 buf = firstbuf;
1282 }
1283 while (buf != curbuf && !bufIsChanged(buf));
1284 }
1285 if (!bufIsChanged(buf))
1286 {
1287 EMSG(_("E84: No modified buffer found"));
1288 return FAIL;
1289 }
1290 }
1291 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1292 {
1293 while (buf != NULL && buf->b_fnum != count)
1294 buf = buf->b_next;
1295 }
1296 else
1297 {
1298 bp = NULL;
1299 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1300 {
1301 /* remember the buffer where we start, we come back there when all
1302 * buffers are unlisted. */
1303 if (bp == NULL)
1304 bp = buf;
1305 if (dir == FORWARD)
1306 {
1307 buf = buf->b_next;
1308 if (buf == NULL)
1309 buf = firstbuf;
1310 }
1311 else
1312 {
1313 buf = buf->b_prev;
1314 if (buf == NULL)
1315 buf = lastbuf;
1316 }
1317 /* don't count unlisted buffers */
1318 if (unload || buf->b_p_bl)
1319 {
1320 --count;
1321 bp = NULL; /* use this buffer as new starting point */
1322 }
1323 if (bp == buf)
1324 {
1325 /* back where we started, didn't find anything. */
1326 EMSG(_("E85: There is no listed buffer"));
1327 return FAIL;
1328 }
1329 }
1330 }
1331
1332 if (buf == NULL) /* could not find it */
1333 {
1334 if (start == DOBUF_FIRST)
1335 {
1336 /* don't warn when deleting */
1337 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001338 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 }
1340 else if (dir == FORWARD)
1341 EMSG(_("E87: Cannot go beyond last buffer"));
1342 else
1343 EMSG(_("E88: Cannot go before first buffer"));
1344 return FAIL;
1345 }
1346
1347#ifdef FEAT_GUI
1348 need_mouse_correct = TRUE;
1349#endif
1350
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 /*
1352 * delete buffer buf from memory and/or the list
1353 */
1354 if (unload)
1355 {
1356 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001357 bufref_T bufref;
1358
1359 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360
1361 /* When unloading or deleting a buffer that's already unloaded and
1362 * unlisted: fail silently. */
1363 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1364 return FAIL;
1365
1366 if (!forceit && bufIsChanged(buf))
1367 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001368#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 if ((p_confirm || cmdmod.confirm) && p_write)
1370 {
1371 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001372 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 /* Autocommand deleted buffer, oops! It's not changed
1374 * now. */
1375 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001376 /* If it's still changed fail silently, the dialog already
1377 * mentioned why it fails. */
1378 if (bufIsChanged(buf))
1379 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001381 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001382#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 {
1384 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1385 buf->b_fnum);
1386 return FAIL;
1387 }
1388 }
1389
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001390 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001391 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001392 end_visual_mode();
1393
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 /*
1395 * If deleting the last (listed) buffer, make it empty.
1396 * The last (listed) buffer cannot be unloaded.
1397 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001398 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (bp->b_p_bl && bp != buf)
1400 break;
1401 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001402 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 /*
1405 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001406 * (unless it's the only window). Repeat this so long as we end up in
1407 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001409 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001410 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001411 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001412 {
1413 if (win_close(curwin, FALSE) == FAIL)
1414 break;
1415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
1417 /*
1418 * If the buffer to be deleted is not the current one, delete it here.
1419 */
1420 if (buf != curbuf)
1421 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001422 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001423 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001424 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 return OK;
1426 }
1427
1428 /*
1429 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001430 * There should be another, otherwise it would have been handled
1431 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001432 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 * Then prefer the buffer we most recently visited.
1434 * Else try to find one that is loaded, after the current buffer,
1435 * then before the current buffer.
1436 * Finally use any buffer.
1437 */
1438 buf = NULL; /* selected buffer */
1439 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001440 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1441 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001443 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 {
1445 int jumpidx;
1446
1447 jumpidx = curwin->w_jumplistidx - 1;
1448 if (jumpidx < 0)
1449 jumpidx = curwin->w_jumplistlen - 1;
1450
1451 forward = jumpidx;
1452 while (jumpidx != curwin->w_jumplistidx)
1453 {
1454 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1455 if (buf != NULL)
1456 {
1457 if (buf == curbuf || !buf->b_p_bl)
1458 buf = NULL; /* skip current and unlisted bufs */
1459 else if (buf->b_ml.ml_mfp == NULL)
1460 {
1461 /* skip unloaded buf, but may keep it for later */
1462 if (bp == NULL)
1463 bp = buf;
1464 buf = NULL;
1465 }
1466 }
1467 if (buf != NULL) /* found a valid buffer: stop searching */
1468 break;
1469 /* advance to older entry in jump list */
1470 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1471 break;
1472 if (--jumpidx < 0)
1473 jumpidx = curwin->w_jumplistlen - 1;
1474 if (jumpidx == forward) /* List exhausted for sure */
1475 break;
1476 }
1477 }
1478#endif
1479
1480 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1481 {
1482 forward = TRUE;
1483 buf = curbuf->b_next;
1484 for (;;)
1485 {
1486 if (buf == NULL)
1487 {
1488 if (!forward) /* tried both directions */
1489 break;
1490 buf = curbuf->b_prev;
1491 forward = FALSE;
1492 continue;
1493 }
1494 /* in non-help buffer, try to skip help buffers, and vv */
1495 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1496 {
1497 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1498 break;
1499 if (bp == NULL) /* remember unloaded buf for later */
1500 bp = buf;
1501 }
1502 if (forward)
1503 buf = buf->b_next;
1504 else
1505 buf = buf->b_prev;
1506 }
1507 }
1508 if (buf == NULL) /* No loaded buffer, use unloaded one */
1509 buf = bp;
1510 if (buf == NULL) /* No loaded buffer, find listed one */
1511 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001512 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 if (buf->b_p_bl && buf != curbuf)
1514 break;
1515 }
1516 if (buf == NULL) /* Still no buffer, just take one */
1517 {
1518 if (curbuf->b_next != NULL)
1519 buf = curbuf->b_next;
1520 else
1521 buf = curbuf->b_prev;
1522 }
1523 }
1524
Bram Moolenaara02471e2014-01-10 16:43:14 +01001525 if (buf == NULL)
1526 {
1527 /* Autocommands must have wiped out all other buffers. Only option
1528 * now is to make the current buffer empty. */
1529 return empty_curbuf(FALSE, forceit, action);
1530 }
1531
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 /*
1533 * make buf current buffer
1534 */
1535 if (action == DOBUF_SPLIT) /* split window first */
1536 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001537 /* If 'switchbuf' contains "useopen": jump to first window containing
1538 * "buf" if one exists */
1539 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001540 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001541 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001542 * page containing "buf" if one exists */
1543 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 return OK;
1545 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 return FAIL;
1547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548
1549 /* go to current buffer - nothing to do */
1550 if (buf == curbuf)
1551 return OK;
1552
1553 /*
1554 * Check if the current buffer may be abandoned.
1555 */
1556 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1557 {
1558#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1559 if ((p_confirm || cmdmod.confirm) && p_write)
1560 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001561 bufref_T bufref;
1562
1563 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001565 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 /* Autocommand deleted buffer, oops! */
1567 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 }
1569 if (bufIsChanged(curbuf))
1570#endif
1571 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001572 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 return FAIL;
1574 }
1575 }
1576
1577 /* Go to the other buffer. */
1578 set_curbuf(buf, action);
1579
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001581 {
1582 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001585#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 if (aborting()) /* autocmds may abort script processing */
1587 return FAIL;
1588#endif
1589
1590 return OK;
1591}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592
1593/*
1594 * Set current buffer to "buf". Executes autocommands and closes current
1595 * buffer. "action" tells how to close the current buffer:
1596 * DOBUF_GOTO free or hide it
1597 * DOBUF_SPLIT nothing
1598 * DOBUF_UNLOAD unload it
1599 * DOBUF_DEL delete it
1600 * DOBUF_WIPE wipe it out
1601 */
1602 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001603set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604{
1605 buf_T *prevbuf;
1606 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1607 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001608#ifdef FEAT_SYN_HL
1609 long old_tw = curbuf->b_p_tw;
1610#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001611 bufref_T newbufref;
1612 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001615 if (!cmdmod.keepalt)
1616 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001617 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 /* Don't restart Select mode after switching to another buffer. */
1620 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001622 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1623 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001625 set_bufref(&prevbufref, prevbuf);
1626 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001628 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1629 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001630 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001631 || (bufref_valid(&prevbufref)
1632 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001633#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001634 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001636 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001638#ifdef FEAT_SYN_HL
1639 if (prevbuf == curwin->w_buffer)
1640 reset_synblock(curwin);
1641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001643 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001644#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001645 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001647 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001649 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001650 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001651 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001652 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1654 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001655 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001656 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001657 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001658 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001659 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001660 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001662 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001663 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001664 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1665 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001666#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001667 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001669 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001670 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001672#ifdef FEAT_SYN_HL
1673 if (old_tw != curbuf->b_p_tw)
1674 check_colorcolumn(curwin);
1675#endif
1676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677}
1678
1679/*
1680 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001681 * Old curbuf must have been abandoned already! This also means "curbuf" may
1682 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 */
1684 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001685enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686{
1687 /* Copy buffer and window local option values. Not for a help buffer. */
1688 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1689 if (!buf->b_help)
1690 get_winopts(buf);
1691#ifdef FEAT_FOLDING
1692 else
1693 /* Remove all folds in the window. */
1694 clearFolding(curwin);
1695 foldUpdateAll(curwin); /* update folds (later). */
1696#endif
1697
1698 /* Get the buffer in the current window. */
1699 curwin->w_buffer = buf;
1700 curbuf = buf;
1701 ++curbuf->b_nwindows;
1702
1703#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001704 if (curwin->w_p_diff)
1705 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706#endif
1707
Bram Moolenaara971b822011-09-14 14:43:25 +02001708#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001709 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001710#endif
1711
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 /* Cursor on first line by default. */
1713 curwin->w_cursor.lnum = 1;
1714 curwin->w_cursor.col = 0;
1715#ifdef FEAT_VIRTUALEDIT
1716 curwin->w_cursor.coladd = 0;
1717#endif
1718 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001719 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001721 /* mark cursor position as being invalid */
1722 curwin->w_valid = 0;
1723
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 /* Make sure the buffer is loaded. */
1725 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001726 {
1727 /* If there is no filetype, allow for detecting one. Esp. useful for
1728 * ":ball" used in a autocommand. If there already is a filetype we
1729 * might prefer to keep it. */
1730 if (*curbuf->b_p_ft == NUL)
1731 did_filetype = FALSE;
1732
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001733 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 else
1736 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001737 if (!msg_silent)
1738 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001741#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001743#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1745 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 }
1747
1748 /* If autocommands did not change the cursor position, restore cursor lnum
1749 * and possibly cursor col. */
1750 if (curwin->w_cursor.lnum == 1 && inindent(0))
1751 buflist_getfpos();
1752
1753 check_arg_idx(curwin); /* check for valid arg_idx */
1754#ifdef FEAT_TITLE
1755 maketitle();
1756#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001757 /* when autocmds didn't change it */
1758 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1760
Bram Moolenaar009b2592004-10-24 19:18:58 +00001761#ifdef FEAT_NETBEANS_INTG
1762 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001763 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001764#endif
1765
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001766 /* Change directories when the 'acd' option is set. */
1767 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768
1769#ifdef FEAT_KEYMAP
1770 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001771 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001773#ifdef FEAT_SPELL
1774 /* May need to set the spell language. Can only do this after the buffer
1775 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001776 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1777 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001778#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001779#ifdef FEAT_VIMINFO
1780 curbuf->b_last_used = vim_time();
1781#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001782
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 redraw_later(NOT_VALID);
1784}
1785
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001786#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1787/*
1788 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001789 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001790 */
1791 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001792do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001793{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001794 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001795 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001796 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001797 shorten_fnames(TRUE);
1798}
1799#endif
1800
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001801 void
1802no_write_message(void)
1803{
1804#ifdef FEAT_TERMINAL
1805 if (term_job_running(curbuf->b_term))
1806 EMSG(_("E948: Job still running (add ! to end the job)"));
1807 else
1808#endif
1809 EMSG(_("E37: No write since last change (add ! to override)"));
1810}
1811
1812 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001813no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001814{
1815#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001816 if (term_job_running(buf->b_term))
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001817 EMSG(_("E948: Job still running"));
1818 else
1819#endif
1820 EMSG(_("E37: No write since last change"));
1821}
1822
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823/*
1824 * functions for dealing with the buffer list
1825 */
1826
Bram Moolenaar480778b2016-07-14 22:09:39 +02001827static int top_file_num = 1; /* highest file number */
1828
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829/*
1830 * Add a file name to the buffer list. Return a pointer to the buffer.
1831 * If the same file name already exists return a pointer to that buffer.
1832 * If it does not exist, or if fname == NULL, a new entry is created.
1833 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1834 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1835 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001836 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001837 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1838 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 * This is the ONLY way to create a new buffer.
1840 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001842buflist_new(
1843 char_u *ffname, /* full path of fname or relative */
1844 char_u *sfname, /* short fname or NULL */
1845 linenr_T lnum, /* preferred cursor line */
1846 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847{
1848 buf_T *buf;
1849#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001850 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#endif
1852
Bram Moolenaar480778b2016-07-14 22:09:39 +02001853 if (top_file_num == 1)
1854 hash_init(&buf_hashtab);
1855
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1857
1858 /*
1859 * If file name already exists in the list, update the entry.
1860 */
1861#ifdef UNIX
1862 /* On Unix we can use inode numbers when the file exists. Works better
1863 * for hard links. */
1864 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1865 st.st_dev = (dev_T)-1;
1866#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001867 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868#ifdef UNIX
1869 buflist_findname_stat(ffname, &st)
1870#else
1871 buflist_findname(ffname)
1872#endif
1873 ) != NULL)
1874 {
1875 vim_free(ffname);
1876 if (lnum != 0)
1877 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001878
1879 if ((flags & BLN_NOOPT) == 0)
1880 /* copy the options now, if 'cpo' doesn't have 's' and not done
1881 * already */
1882 buf_copy_options(buf, 0);
1883
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1885 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001886 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001887
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001889 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001891 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001892 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001893 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001894 return NULL;
1895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 }
1897 return buf;
1898 }
1899
1900 /*
1901 * If the current buffer has no name and no contents, use the current
1902 * buffer. Otherwise: Need to allocate a new buffer structure.
1903 *
1904 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001905 * (A spell file buffer is allocated in spell.c, but that's not a normal
1906 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 */
1908 buf = NULL;
1909 if ((flags & BLN_CURBUF)
1910 && curbuf != NULL
1911 && curbuf->b_ffname == NULL
1912 && curbuf->b_nwindows <= 1
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001913 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 {
1915 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 /* It's like this buffer is deleted. Watch out for autocommands that
1917 * change curbuf! If that happens, allocate a new buffer anyway. */
1918 if (curbuf->b_p_bl)
1919 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1920 if (buf == curbuf)
1921 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001922#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001923 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 {
1928 /* Make sure 'bufhidden' and 'buftype' are empty */
1929 clear_string_option(&buf->b_p_bh);
1930 clear_string_option(&buf->b_p_bt);
1931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 }
1933 if (buf != curbuf || curbuf == NULL)
1934 {
1935 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1936 if (buf == NULL)
1937 {
1938 vim_free(ffname);
1939 return NULL;
1940 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001941#ifdef FEAT_EVAL
1942 /* init b: variables */
1943 buf->b_vars = dict_alloc();
1944 if (buf->b_vars == NULL)
1945 {
1946 vim_free(ffname);
1947 vim_free(buf);
1948 return NULL;
1949 }
1950 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1951#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001952 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 }
1954
1955 if (ffname != NULL)
1956 {
1957 buf->b_ffname = ffname;
1958 buf->b_sfname = vim_strsave(sfname);
1959 }
1960
1961 clear_wininfo(buf);
1962 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1963
1964 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1965 || buf->b_wininfo == NULL)
1966 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001967 VIM_CLEAR(buf->b_ffname);
1968 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 if (buf != curbuf)
1970 free_buffer(buf);
1971 return NULL;
1972 }
1973
1974 if (buf == curbuf)
1975 {
1976 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001977 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 if (buf != curbuf) /* autocommands deleted the buffer! */
1979 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001980#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001981 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 return NULL;
1983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01001985
1986 /* Init the options. */
1987 buf->b_p_initialized = FALSE;
1988 buf_copy_options(buf, BCO_ENTER);
1989
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990#ifdef FEAT_KEYMAP
1991 /* need to reload lmaps and set b:keymap_name */
1992 curbuf->b_kmap_state |= KEYMAP_INIT;
1993#endif
1994 }
1995 else
1996 {
1997 /*
1998 * put new buffer at the end of the buffer list
1999 */
2000 buf->b_next = NULL;
2001 if (firstbuf == NULL) /* buffer list is empty */
2002 {
2003 buf->b_prev = NULL;
2004 firstbuf = buf;
2005 }
2006 else /* append new buffer at end of list */
2007 {
2008 lastbuf->b_next = buf;
2009 buf->b_prev = lastbuf;
2010 }
2011 lastbuf = buf;
2012
2013 buf->b_fnum = top_file_num++;
2014 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2015 {
2016 EMSG(_("W14: Warning: List of file names overflow"));
2017 if (emsg_silent == 0)
2018 {
2019 out_flush();
2020 ui_delay(3000L, TRUE); /* make sure it is noticed */
2021 }
2022 top_file_num = 1;
2023 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002024 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025
2026 /*
2027 * Always copy the options from the current buffer.
2028 */
2029 buf_copy_options(buf, BCO_ALWAYS);
2030 }
2031
2032 buf->b_wininfo->wi_fpos.lnum = lnum;
2033 buf->b_wininfo->wi_win = curwin;
2034
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002035#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002036 hash_init(&buf->b_s.b_keywtab);
2037 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038#endif
2039
2040 buf->b_fname = buf->b_sfname;
2041#ifdef UNIX
2042 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002043 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 else
2045 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002046 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 buf->b_dev = st.st_dev;
2048 buf->b_ino = st.st_ino;
2049 }
2050#endif
2051 buf->b_u_synced = TRUE;
2052 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002053 if (flags & BLN_DUMMY)
2054 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 buf_clear_file(buf);
2056 clrallmarks(buf); /* clear marks */
2057 fmarks_check_names(buf); /* check file marks for this file */
2058 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 if (!(flags & BLN_DUMMY))
2060 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002061 bufref_T bufref;
2062
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002063 /* Tricky: these autocommands may change the buffer list. They could
2064 * also split the window with re-using the one empty buffer. This may
2065 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002066 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002067 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002068 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002069 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002071 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002072 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002073 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002074 return NULL;
2075 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002076#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002077 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081
2082 return buf;
2083}
2084
2085/*
2086 * Free the memory for the options of a buffer.
2087 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2088 * 'fileencoding'.
2089 */
2090 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002091free_buf_options(
2092 buf_T *buf,
2093 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094{
2095 if (free_p_ff)
2096 {
2097#ifdef FEAT_MBYTE
2098 clear_string_option(&buf->b_p_fenc);
2099#endif
2100 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 clear_string_option(&buf->b_p_bh);
2102 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 }
2104#ifdef FEAT_FIND_ID
2105 clear_string_option(&buf->b_p_def);
2106 clear_string_option(&buf->b_p_inc);
2107# ifdef FEAT_EVAL
2108 clear_string_option(&buf->b_p_inex);
2109# endif
2110#endif
2111#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2112 clear_string_option(&buf->b_p_inde);
2113 clear_string_option(&buf->b_p_indk);
2114#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002115#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2116 clear_string_option(&buf->b_p_bexpr);
2117#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002118#if defined(FEAT_CRYPT)
2119 clear_string_option(&buf->b_p_cm);
2120#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002121 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002122#if defined(FEAT_EVAL)
2123 clear_string_option(&buf->b_p_fex);
2124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125#ifdef FEAT_CRYPT
2126 clear_string_option(&buf->b_p_key);
2127#endif
2128 clear_string_option(&buf->b_p_kp);
2129 clear_string_option(&buf->b_p_mps);
2130 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002131 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 clear_string_option(&buf->b_p_isk);
2133#ifdef FEAT_KEYMAP
2134 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002135 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 ga_clear(&buf->b_kmap_ga);
2137#endif
2138#ifdef FEAT_COMMENTS
2139 clear_string_option(&buf->b_p_com);
2140#endif
2141#ifdef FEAT_FOLDING
2142 clear_string_option(&buf->b_p_cms);
2143#endif
2144 clear_string_option(&buf->b_p_nf);
2145#ifdef FEAT_SYN_HL
2146 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002147 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002148#endif
2149#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002150 clear_string_option(&buf->b_s.b_p_spc);
2151 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002152 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002153 buf->b_s.b_cap_prog = NULL;
2154 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155#endif
2156#ifdef FEAT_SEARCHPATH
2157 clear_string_option(&buf->b_p_sua);
2158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160#ifdef FEAT_CINDENT
2161 clear_string_option(&buf->b_p_cink);
2162 clear_string_option(&buf->b_p_cino);
2163#endif
2164#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2165 clear_string_option(&buf->b_p_cinw);
2166#endif
2167#ifdef FEAT_INS_EXPAND
2168 clear_string_option(&buf->b_p_cpt);
2169#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002170#ifdef FEAT_COMPL_FUNC
2171 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002172 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174#ifdef FEAT_QUICKFIX
2175 clear_string_option(&buf->b_p_gp);
2176 clear_string_option(&buf->b_p_mp);
2177 clear_string_option(&buf->b_p_efm);
2178#endif
2179 clear_string_option(&buf->b_p_ep);
2180 clear_string_option(&buf->b_p_path);
2181 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002182 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183#ifdef FEAT_INS_EXPAND
2184 clear_string_option(&buf->b_p_dict);
2185 clear_string_option(&buf->b_p_tsr);
2186#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002187#ifdef FEAT_TEXTOBJ
2188 clear_string_option(&buf->b_p_qe);
2189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002191 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002192#ifdef FEAT_LISP
2193 clear_string_option(&buf->b_p_lw);
2194#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002195 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002196#ifdef FEAT_MBYTE
2197 clear_string_option(&buf->b_p_menc);
2198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199}
2200
2201/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002202 * Get alternate file "n".
2203 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2204 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 * if (options & GETF_SETMARK) call setpcmark()
2206 * if (options & GETF_ALT) we are jumping to an alternate file.
2207 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2208 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002209 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 */
2211 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002212buflist_getfile(
2213 int n,
2214 linenr_T lnum,
2215 int options,
2216 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217{
2218 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 pos_T *fpos;
2221 colnr_T col;
2222
2223 buf = buflist_findnr(n);
2224 if (buf == NULL)
2225 {
2226 if ((options & GETF_ALT) && n == 0)
2227 EMSG(_(e_noalt));
2228 else
2229 EMSGN(_("E92: Buffer %ld not found"), n);
2230 return FAIL;
2231 }
2232
2233 /* if alternate file is the current buffer, nothing to do */
2234 if (buf == curbuf)
2235 return OK;
2236
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002237 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002238 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002239 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002241 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002242 if (curbuf_locked())
2243 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244
2245 /* altfpos may be changed by getfile(), get it now */
2246 if (lnum == 0)
2247 {
2248 fpos = buflist_findfpos(buf);
2249 lnum = fpos->lnum;
2250 col = fpos->col;
2251 }
2252 else
2253 col = 0;
2254
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 if (options & GETF_SWITCH)
2256 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002257 /* If 'switchbuf' contains "useopen": jump to first window containing
2258 * "buf" if one exists */
2259 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002261
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002262 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002263 * page containing "buf" if one exists */
2264 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002265 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002266
2267 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2268 * current buffer isn't empty: open new tab or window */
2269 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002270 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002272 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002273 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002274 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2275 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002277 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 }
2279 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280
2281 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002282 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2283 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 {
2285 --RedrawingDisabled;
2286
2287 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2288 if (!p_sol && col != 0)
2289 {
2290 curwin->w_cursor.col = col;
2291 check_cursor_col();
2292#ifdef FEAT_VIRTUALEDIT
2293 curwin->w_cursor.coladd = 0;
2294#endif
2295 curwin->w_set_curswant = TRUE;
2296 }
2297 return OK;
2298 }
2299 --RedrawingDisabled;
2300 return FAIL;
2301}
2302
2303/*
2304 * go to the last know line number for the current buffer
2305 */
2306 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002307buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308{
2309 pos_T *fpos;
2310
2311 fpos = buflist_findfpos(curbuf);
2312
2313 curwin->w_cursor.lnum = fpos->lnum;
2314 check_cursor_lnum();
2315
2316 if (p_sol)
2317 curwin->w_cursor.col = 0;
2318 else
2319 {
2320 curwin->w_cursor.col = fpos->col;
2321 check_cursor_col();
2322#ifdef FEAT_VIRTUALEDIT
2323 curwin->w_cursor.coladd = 0;
2324#endif
2325 curwin->w_set_curswant = TRUE;
2326 }
2327}
2328
Bram Moolenaar81695252004-12-29 20:58:21 +00002329#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2330/*
2331 * Find file in buffer list by name (it has to be for the current window).
2332 * Returns NULL if not found.
2333 */
2334 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002335buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002336{
2337 char_u *ffname;
2338 buf_T *buf = NULL;
2339
2340 /* First make the name into a full path name */
2341 ffname = FullName_save(fname,
2342#ifdef UNIX
2343 TRUE /* force expansion, get rid of symbolic links */
2344#else
2345 FALSE
2346#endif
2347 );
2348 if (ffname != NULL)
2349 {
2350 buf = buflist_findname(ffname);
2351 vim_free(ffname);
2352 }
2353 return buf;
2354}
2355#endif
2356
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357/*
2358 * Find file in buffer list by name (it has to be for the current window).
2359 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002360 * Skips dummy buffers.
2361 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 */
2363 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002364buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365{
2366#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002367 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368
2369 if (mch_stat((char *)ffname, &st) < 0)
2370 st.st_dev = (dev_T)-1;
2371 return buflist_findname_stat(ffname, &st);
2372}
2373
2374/*
2375 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2376 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002377 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 */
2379 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002380buflist_findname_stat(
2381 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002382 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383{
2384#endif
2385 buf_T *buf;
2386
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002387 /* Start at the last buffer, expect to find a match sooner. */
2388 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002389 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390#ifdef UNIX
2391 , stp
2392#endif
2393 ))
2394 return buf;
2395 return NULL;
2396}
2397
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398/*
2399 * Find file in buffer list by a regexp pattern.
2400 * Return fnum of the found buffer.
2401 * Return < 0 for error.
2402 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002404buflist_findpat(
2405 char_u *pattern,
2406 char_u *pattern_end, /* pointer to first char after pattern */
2407 int unlisted, /* find unlisted buffers */
2408 int diffmode UNUSED, /* find diff-mode buffers only */
2409 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
2411 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 int match = -1;
2413 int find_listed;
2414 char_u *pat;
2415 char_u *patend;
2416 int attempt;
2417 char_u *p;
2418 int toggledollar;
2419
2420 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2421 {
2422 if (*pattern == '%')
2423 match = curbuf->b_fnum;
2424 else
2425 match = curwin->w_alt_fnum;
2426#ifdef FEAT_DIFF
2427 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2428 match = -1;
2429#endif
2430 }
2431
2432 /*
2433 * Try four ways of matching a listed buffer:
2434 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002435 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 * attempt == 2: with '$' at end (only match at end)
2437 * attempt == 3: with '^' at start and '$' at end (only full match)
2438 * Repeat this for finding an unlisted buffer if there was no matching
2439 * listed buffer.
2440 */
2441 else
2442 {
2443 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2444 if (pat == NULL)
2445 return -1;
2446 patend = pat + STRLEN(pat) - 1;
2447 toggledollar = (patend > pat && *patend == '$');
2448
2449 /* First try finding a listed buffer. If not found and "unlisted"
2450 * is TRUE, try finding an unlisted buffer. */
2451 find_listed = TRUE;
2452 for (;;)
2453 {
2454 for (attempt = 0; attempt <= 3; ++attempt)
2455 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002456 regmatch_T regmatch;
2457
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 /* may add '^' and '$' */
2459 if (toggledollar)
2460 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2461 p = pat;
2462 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2463 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002464 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2465 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 {
2467 vim_free(pat);
2468 return -1;
2469 }
2470
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002471 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 if (buf->b_p_bl == find_listed
2473#ifdef FEAT_DIFF
2474 && (!diffmode || diff_mode_buf(buf))
2475#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002476 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002478 if (curtab_only)
2479 {
2480 /* Ignore the match if the buffer is not open in
2481 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002482 win_T *wp;
2483
Bram Moolenaar29323592016-07-24 22:04:11 +02002484 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002485 if (wp->w_buffer == buf)
2486 break;
2487 if (wp == NULL)
2488 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002489 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 if (match >= 0) /* already found a match */
2491 {
2492 match = -2;
2493 break;
2494 }
2495 match = buf->b_fnum; /* remember first match */
2496 }
2497
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002498 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 if (match >= 0) /* found one match */
2500 break;
2501 }
2502
2503 /* Only search for unlisted buffers if there was no match with
2504 * a listed buffer. */
2505 if (!unlisted || !find_listed || match != -1)
2506 break;
2507 find_listed = FALSE;
2508 }
2509
2510 vim_free(pat);
2511 }
2512
2513 if (match == -2)
2514 EMSG2(_("E93: More than one match for %s"), pattern);
2515 else if (match < 0)
2516 EMSG2(_("E94: No matching buffer for %s"), pattern);
2517 return match;
2518}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519
2520#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2521
2522/*
2523 * Find all buffer names that match.
2524 * For command line expansion of ":buf" and ":sbuf".
2525 * Return OK if matches found, FAIL otherwise.
2526 */
2527 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002528ExpandBufnames(
2529 char_u *pat,
2530 int *num_file,
2531 char_u ***file,
2532 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533{
2534 int count = 0;
2535 buf_T *buf;
2536 int round;
2537 char_u *p;
2538 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002539 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540
2541 *num_file = 0; /* return values in case of FAIL */
2542 *file = NULL;
2543
Bram Moolenaar05159a02005-02-26 23:04:13 +00002544 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2545 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002547 patc = alloc((unsigned)STRLEN(pat) + 11);
2548 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002550 STRCPY(patc, "\\(^\\|[\\/]\\)");
2551 STRCPY(patc + 11, pat + 1);
2552 }
2553 else
2554 patc = pat;
2555
2556 /*
2557 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002558 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002559 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002560 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002561 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002562 regmatch_T regmatch;
2563
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002564 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002565 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002566 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2567 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002568 {
2569 if (patc != pat)
2570 vim_free(patc);
2571 return FAIL;
2572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573
2574 /*
2575 * round == 1: Count the matches.
2576 * round == 2: Build the array to keep the matches.
2577 */
2578 for (round = 1; round <= 2; ++round)
2579 {
2580 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002581 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 {
2583 if (!buf->b_p_bl) /* skip unlisted buffers */
2584 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002585 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 if (p != NULL)
2587 {
2588 if (round == 1)
2589 ++count;
2590 else
2591 {
2592 if (options & WILD_HOME_REPLACE)
2593 p = home_replace_save(buf, p);
2594 else
2595 p = vim_strsave(p);
2596 (*file)[count++] = p;
2597 }
2598 }
2599 }
2600 if (count == 0) /* no match found, break here */
2601 break;
2602 if (round == 1)
2603 {
2604 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2605 if (*file == NULL)
2606 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002607 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002608 if (patc != pat)
2609 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 return FAIL;
2611 }
2612 }
2613 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002614 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 if (count) /* match(es) found, break here */
2616 break;
2617 }
2618
Bram Moolenaar05159a02005-02-26 23:04:13 +00002619 if (patc != pat)
2620 vim_free(patc);
2621
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 *num_file = count;
2623 return (count == 0 ? FAIL : OK);
2624}
2625
2626#endif /* FEAT_CMDL_COMPL */
2627
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628/*
2629 * Check for a match on the file name for buffer "buf" with regprog "prog".
2630 */
2631 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002632buflist_match(
2633 regmatch_T *rmp,
2634 buf_T *buf,
2635 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636{
2637 char_u *match;
2638
2639 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002640 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002642 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643
2644 return match;
2645}
2646
2647/*
2648 * Try matching the regexp in "prog" with file name "name".
2649 * Return "name" when there is a match, NULL when not.
2650 */
2651 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002652fname_match(
2653 regmatch_T *rmp,
2654 char_u *name,
2655 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656{
2657 char_u *match = NULL;
2658 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659
2660 if (name != NULL)
2661 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002662 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002663 rmp->rm_ic = p_fic || ignore_case;
2664 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 match = name;
2666 else
2667 {
2668 /* Replace $(HOME) with '~' and try matching again. */
2669 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002670 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 match = name;
2672 vim_free(p);
2673 }
2674 }
2675
2676 return match;
2677}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678
2679/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002680 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 */
2682 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002683buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002685 char_u key[VIM_SIZEOF_INT * 2 + 1];
2686 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687
2688 if (nr == 0)
2689 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002690 sprintf((char *)key, "%x", nr);
2691 hi = hash_find(&buf_hashtab, key);
2692
2693 if (!HASHITEM_EMPTY(hi))
2694 return (buf_T *)(hi->hi_key
2695 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 return NULL;
2697}
2698
2699/*
2700 * Get name of file 'n' in the buffer list.
2701 * When the file has no name an empty string is returned.
2702 * home_replace() is used to shorten the file name (used for marks).
2703 * Returns a pointer to allocated memory, of NULL when failed.
2704 */
2705 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002706buflist_nr2name(
2707 int n,
2708 int fullname,
2709 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710{
2711 buf_T *buf;
2712
2713 buf = buflist_findnr(n);
2714 if (buf == NULL)
2715 return NULL;
2716 return home_replace_save(helptail ? buf : NULL,
2717 fullname ? buf->b_ffname : buf->b_fname);
2718}
2719
2720/*
2721 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2722 * When "copy_options" is TRUE save the local window option values.
2723 * When "lnum" is 0 only do the options.
2724 */
2725 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002726buflist_setfpos(
2727 buf_T *buf,
2728 win_T *win,
2729 linenr_T lnum,
2730 colnr_T col,
2731 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732{
2733 wininfo_T *wip;
2734
2735 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2736 if (wip->wi_win == win)
2737 break;
2738 if (wip == NULL)
2739 {
2740 /* allocate a new entry */
2741 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2742 if (wip == NULL)
2743 return;
2744 wip->wi_win = win;
2745 if (lnum == 0) /* set lnum even when it's 0 */
2746 lnum = 1;
2747 }
2748 else
2749 {
2750 /* remove the entry from the list */
2751 if (wip->wi_prev)
2752 wip->wi_prev->wi_next = wip->wi_next;
2753 else
2754 buf->b_wininfo = wip->wi_next;
2755 if (wip->wi_next)
2756 wip->wi_next->wi_prev = wip->wi_prev;
2757 if (copy_options && wip->wi_optset)
2758 {
2759 clear_winopt(&wip->wi_opt);
2760#ifdef FEAT_FOLDING
2761 deleteFoldRecurse(&wip->wi_folds);
2762#endif
2763 }
2764 }
2765 if (lnum != 0)
2766 {
2767 wip->wi_fpos.lnum = lnum;
2768 wip->wi_fpos.col = col;
2769 }
2770 if (copy_options)
2771 {
2772 /* Save the window-specific option values. */
2773 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2774#ifdef FEAT_FOLDING
2775 wip->wi_fold_manual = win->w_fold_manual;
2776 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2777#endif
2778 wip->wi_optset = TRUE;
2779 }
2780
2781 /* insert the entry in front of the list */
2782 wip->wi_next = buf->b_wininfo;
2783 buf->b_wininfo = wip;
2784 wip->wi_prev = NULL;
2785 if (wip->wi_next)
2786 wip->wi_next->wi_prev = wip;
2787
2788 return;
2789}
2790
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002791#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002792static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002793
2794/*
2795 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2796 * page. That's because a diff is local to a tab page.
2797 */
2798 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002799wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002800{
2801 win_T *wp;
2802
2803 if (wip->wi_opt.wo_diff)
2804 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002805 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002806 /* return FALSE when it's a window in the current tab page, thus
2807 * the buffer was in diff mode here */
2808 if (wip->wi_win == wp)
2809 return FALSE;
2810 return TRUE;
2811 }
2812 return FALSE;
2813}
2814#endif
2815
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816/*
2817 * Find info for the current window in buffer "buf".
2818 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002819 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2820 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 * Returns NULL when there isn't any info.
2822 */
2823 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002824find_wininfo(
2825 buf_T *buf,
2826 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827{
2828 wininfo_T *wip;
2829
2830 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002831 if (wip->wi_win == curwin
2832#ifdef FEAT_DIFF
2833 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2834#endif
2835 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002837
2838 /* If no wininfo for curwin, use the first in the list (that doesn't have
2839 * 'diff' set and is in another tab page). */
2840 if (wip == NULL)
2841 {
2842#ifdef FEAT_DIFF
2843 if (skip_diff_buffer)
2844 {
2845 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2846 if (!wininfo_other_tab_diff(wip))
2847 break;
2848 }
2849 else
2850#endif
2851 wip = buf->b_wininfo;
2852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 return wip;
2854}
2855
2856/*
2857 * Reset the local window options to the values last used in this window.
2858 * If the buffer wasn't used in this window before, use the values from
2859 * the most recently used window. If the values were never set, use the
2860 * global values for the window.
2861 */
2862 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002863get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864{
2865 wininfo_T *wip;
2866
2867 clear_winopt(&curwin->w_onebuf_opt);
2868#ifdef FEAT_FOLDING
2869 clearFolding(curwin);
2870#endif
2871
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002872 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 if (wip != NULL && wip->wi_optset)
2874 {
2875 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2876#ifdef FEAT_FOLDING
2877 curwin->w_fold_manual = wip->wi_fold_manual;
2878 curwin->w_foldinvalid = TRUE;
2879 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2880#endif
2881 }
2882 else
2883 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2884
2885#ifdef FEAT_FOLDING
2886 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2887 if (p_fdls >= 0)
2888 curwin->w_p_fdl = p_fdls;
2889#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002890#ifdef FEAT_SYN_HL
2891 check_colorcolumn(curwin);
2892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893}
2894
2895/*
2896 * Find the position (lnum and col) for the buffer 'buf' for the current
2897 * window.
2898 * Returns a pointer to no_position if no position is found.
2899 */
2900 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002901buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902{
2903 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002904 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002906 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 if (wip != NULL)
2908 return &(wip->wi_fpos);
2909 else
2910 return &no_position;
2911}
2912
2913/*
2914 * Find the lnum for the buffer 'buf' for the current window.
2915 */
2916 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002917buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918{
2919 return buflist_findfpos(buf)->lnum;
2920}
2921
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002923 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002926buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927{
2928 buf_T *buf;
2929 int len;
2930 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002931 int ro_char;
2932 int changed_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
2934 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2935 {
2936 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002937 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2938 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2939 || (vim_strchr(eap->arg, '+')
2940 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2941 || (vim_strchr(eap->arg, 'a')
2942 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2943 || (vim_strchr(eap->arg, 'h')
2944 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2945 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2946 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2947 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2948 || (vim_strchr(eap->arg, '%') && buf != curbuf)
2949 || (vim_strchr(eap->arg, '#')
2950 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002953 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 else
2955 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002956 if (message_filtered(NameBuff))
2957 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002959 changed_char = (buf->b_flags & BF_READERR) ? 'x'
2960 : (bufIsChanged(buf) ? '+' : ' ');
2961#ifdef FEAT_TERMINAL
2962 if (term_job_running(buf->b_term))
2963 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02002964 if (term_none_open(buf->b_term))
2965 ro_char = '?';
2966 else
2967 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002968 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
2969 * closing, but it's not actually changed. */
2970 }
2971 else if (buf->b_term != NULL)
2972 ro_char = 'F';
2973 else
2974#endif
2975 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
2976
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002977 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00002978 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 buf->b_fnum,
2980 buf->b_p_bl ? ' ' : 'u',
2981 buf == curbuf ? '%' :
2982 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2983 buf->b_ml.ml_mfp == NULL ? ' ' :
2984 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002985 ro_char,
2986 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00002987 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01002988 if (len > IOSIZE - 20)
2989 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990
2991 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 i = 40 - vim_strsize(IObuff);
2993 do
2994 {
2995 IObuff[len++] = ' ';
2996 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002997 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
2998 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002999 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 msg_outtrans(IObuff);
3001 out_flush(); /* output one line at a time */
3002 ui_breakcheck();
3003 }
3004}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
3006/*
3007 * Get file name and line number for file 'fnum'.
3008 * Used by DoOneCmd() for translating '%' and '#'.
3009 * Used by insert_reg() and cmdline_paste() for '#' register.
3010 * Return FAIL if not found, OK for success.
3011 */
3012 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003013buflist_name_nr(
3014 int fnum,
3015 char_u **fname,
3016 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 buf_T *buf;
3019
3020 buf = buflist_findnr(fnum);
3021 if (buf == NULL || buf->b_fname == NULL)
3022 return FAIL;
3023
3024 *fname = buf->b_fname;
3025 *lnum = buflist_findlnum(buf);
3026
3027 return OK;
3028}
3029
3030/*
3031 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3032 * The file name with the full path is also remembered, for when :cd is used.
3033 * Returns FAIL for failure (file name already in use by other buffer)
3034 * OK otherwise.
3035 */
3036 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003037setfname(
3038 buf_T *buf,
3039 char_u *ffname,
3040 char_u *sfname,
3041 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042{
Bram Moolenaar81695252004-12-29 20:58:21 +00003043 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003045 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046#endif
3047
3048 if (ffname == NULL || *ffname == NUL)
3049 {
3050 /* Removing the name. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01003051 VIM_CLEAR(buf->b_ffname);
3052 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053#ifdef UNIX
3054 st.st_dev = (dev_T)-1;
3055#endif
3056 }
3057 else
3058 {
3059 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3060 if (ffname == NULL) /* out of memory */
3061 return FAIL;
3062
3063 /*
3064 * if the file name is already used in another buffer:
3065 * - if the buffer is loaded, fail
3066 * - if the buffer is not loaded, delete it from the list
3067 */
3068#ifdef UNIX
3069 if (mch_stat((char *)ffname, &st) < 0)
3070 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003071#endif
3072 if (!(buf->b_flags & BF_DUMMY))
3073#ifdef UNIX
3074 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003076 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077#endif
3078 if (obuf != NULL && obuf != buf)
3079 {
3080 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3081 {
3082 if (message)
3083 EMSG(_("E95: Buffer with this name already exists"));
3084 vim_free(ffname);
3085 return FAIL;
3086 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003087 /* delete from the list */
3088 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 }
3090 sfname = vim_strsave(sfname);
3091 if (ffname == NULL || sfname == NULL)
3092 {
3093 vim_free(sfname);
3094 vim_free(ffname);
3095 return FAIL;
3096 }
3097#ifdef USE_FNAME_CASE
3098# ifdef USE_LONG_FNAME
3099 if (USE_LONG_FNAME)
3100# endif
3101 fname_case(sfname, 0); /* set correct case for short file name */
3102#endif
3103 vim_free(buf->b_ffname);
3104 vim_free(buf->b_sfname);
3105 buf->b_ffname = ffname;
3106 buf->b_sfname = sfname;
3107 }
3108 buf->b_fname = buf->b_sfname;
3109#ifdef UNIX
3110 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003111 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 else
3113 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003114 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 buf->b_dev = st.st_dev;
3116 buf->b_ino = st.st_ino;
3117 }
3118#endif
3119
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
3122 buf_name_changed(buf);
3123 return OK;
3124}
3125
3126/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003127 * Crude way of changing the name of a buffer. Use with care!
3128 * The name should be relative to the current directory.
3129 */
3130 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003131buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003132{
3133 buf_T *buf;
3134
3135 buf = buflist_findnr(fnum);
3136 if (buf != NULL)
3137 {
3138 vim_free(buf->b_sfname);
3139 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003140 buf->b_ffname = vim_strsave(name);
3141 buf->b_sfname = NULL;
3142 /* Allocate ffname and expand into full path. Also resolves .lnk
3143 * files on Win32. */
3144 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003145 buf->b_fname = buf->b_sfname;
3146 }
3147}
3148
3149/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 * Take care of what needs to be done when the name of buffer "buf" has
3151 * changed.
3152 */
3153 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003154buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155{
3156 /*
3157 * If the file name changed, also change the name of the swapfile
3158 */
3159 if (buf->b_ml.ml_mfp != NULL)
3160 ml_setname(buf);
3161
3162 if (curwin->w_buffer == buf)
3163 check_arg_idx(curwin); /* check file name for arg list */
3164#ifdef FEAT_TITLE
3165 maketitle(); /* set window title */
3166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 fmarks_check_names(buf); /* check named file marks */
3169 ml_timestamp(buf); /* reset timestamp */
3170}
3171
3172/*
3173 * set alternate file name for current window
3174 *
3175 * Used by do_one_cmd(), do_write() and do_ecmd().
3176 * Return the buffer.
3177 */
3178 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003179setaltfname(
3180 char_u *ffname,
3181 char_u *sfname,
3182 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183{
3184 buf_T *buf;
3185
3186 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3187 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003188 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 curwin->w_alt_fnum = buf->b_fnum;
3190 return buf;
3191}
3192
3193/*
3194 * Get alternate file name for current window.
3195 * Return NULL if there isn't any, and give error message if requested.
3196 */
3197 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003198getaltfname(
3199 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200{
3201 char_u *fname;
3202 linenr_T dummy;
3203
3204 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3205 {
3206 if (errmsg)
3207 EMSG(_(e_noalt));
3208 return NULL;
3209 }
3210 return fname;
3211}
3212
3213/*
3214 * Add a file name to the buflist and return its number.
3215 * Uses same flags as buflist_new(), except BLN_DUMMY.
3216 *
3217 * used by qf_init(), main() and doarglist()
3218 */
3219 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003220buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221{
3222 buf_T *buf;
3223
3224 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3225 if (buf != NULL)
3226 return buf->b_fnum;
3227 return 0;
3228}
3229
3230#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3231/*
3232 * Adjust slashes in file names. Called after 'shellslash' was set.
3233 */
3234 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003235buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236{
3237 buf_T *bp;
3238
Bram Moolenaar29323592016-07-24 22:04:11 +02003239 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 {
3241 if (bp->b_ffname != NULL)
3242 slash_adjust(bp->b_ffname);
3243 if (bp->b_sfname != NULL)
3244 slash_adjust(bp->b_sfname);
3245 }
3246}
3247#endif
3248
3249/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003250 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 * Also save the local window option values.
3252 */
3253 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003254buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003256 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257}
3258
3259/*
3260 * Return TRUE if 'ffname' is not the same file as current file.
3261 * Fname must have a full path (expanded by mch_FullName()).
3262 */
3263 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003264otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265{
3266 return otherfile_buf(curbuf, ffname
3267#ifdef UNIX
3268 , NULL
3269#endif
3270 );
3271}
3272
3273 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003274otherfile_buf(
3275 buf_T *buf,
3276 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003278 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003280 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
3282 /* no name is different */
3283 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3284 return TRUE;
3285 if (fnamecmp(ffname, buf->b_ffname) == 0)
3286 return FALSE;
3287#ifdef UNIX
3288 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003289 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290
Bram Moolenaar8767f522016-07-01 17:17:39 +02003291 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 if (stp == NULL)
3293 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003294 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 st.st_dev = (dev_T)-1;
3296 stp = &st;
3297 }
3298 /* Use dev/ino to check if the files are the same, even when the names
3299 * are different (possible with links). Still need to compare the
3300 * name above, for when the file doesn't exist yet.
3301 * Problem: The dev/ino changes when a file is deleted (and created
3302 * again) and remains the same when renamed/moved. We don't want to
3303 * mch_stat() each buffer each time, that would be too slow. Get the
3304 * dev/ino again when they appear to match, but not when they appear
3305 * to be different: Could skip a buffer when it's actually the same
3306 * file. */
3307 if (buf_same_ino(buf, stp))
3308 {
3309 buf_setino(buf);
3310 if (buf_same_ino(buf, stp))
3311 return FALSE;
3312 }
3313 }
3314#endif
3315 return TRUE;
3316}
3317
3318#if defined(UNIX) || defined(PROTO)
3319/*
3320 * Set inode and device number for a buffer.
3321 * Must always be called when b_fname is changed!.
3322 */
3323 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003324buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003326 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327
3328 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3329 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003330 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 buf->b_dev = st.st_dev;
3332 buf->b_ino = st.st_ino;
3333 }
3334 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003335 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336}
3337
3338/*
3339 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3340 */
3341 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003342buf_same_ino(
3343 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003344 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003346 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 && stp->st_dev == buf->b_dev
3348 && stp->st_ino == buf->b_ino);
3349}
3350#endif
3351
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003352/*
3353 * Print info about the current buffer.
3354 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003356fileinfo(
3357 int fullname, /* when non-zero print full path */
3358 int shorthelp,
3359 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360{
3361 char_u *name;
3362 int n;
3363 char_u *p;
3364 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003365 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366
3367 buffer = alloc(IOSIZE);
3368 if (buffer == NULL)
3369 return;
3370
3371 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3372 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003373 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 p = buffer + STRLEN(buffer);
3375 }
3376 else
3377 p = buffer;
3378
3379 *p++ = '"';
3380 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003381 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 else
3383 {
3384 if (!fullname && curbuf->b_fname != NULL)
3385 name = curbuf->b_fname;
3386 else
3387 name = curbuf->b_ffname;
3388 home_replace(shorthelp ? curbuf : NULL, name, p,
3389 (int)(IOSIZE - (p - buffer)), TRUE);
3390 }
3391
Bram Moolenaara800b422010-06-27 01:15:55 +02003392 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 curbufIsChanged() ? (shortmess(SHM_MOD)
3394 ? " [+]" : _(" [Modified]")) : " ",
3395 (curbuf->b_flags & BF_NOTEDITED)
3396#ifdef FEAT_QUICKFIX
3397 && !bt_dontwrite(curbuf)
3398#endif
3399 ? _("[Not edited]") : "",
3400 (curbuf->b_flags & BF_NEW)
3401#ifdef FEAT_QUICKFIX
3402 && !bt_dontwrite(curbuf)
3403#endif
3404 ? _("[New file]") : "",
3405 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003406 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 : _("[readonly]")) : "",
3408 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3409 || curbuf->b_p_ro) ?
3410 " " : "");
3411 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3412 * causes an overflow, thus for large numbers divide instead. */
3413 if (curwin->w_cursor.lnum > 1000000L)
3414 n = (int)(((long)curwin->w_cursor.lnum) /
3415 ((long)curbuf->b_ml.ml_line_count / 100L));
3416 else
3417 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3418 (long)curbuf->b_ml.ml_line_count);
3419 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3420 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003421 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 }
3423#ifdef FEAT_CMDL_INFO
3424 else if (p_ru)
3425 {
3426 /* Current line and column are already on the screen -- webb */
3427 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003428 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003430 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 (long)curbuf->b_ml.ml_line_count, n);
3432 }
3433#endif
3434 else
3435 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003436 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 _("line %ld of %ld --%d%%-- col "),
3438 (long)curwin->w_cursor.lnum,
3439 (long)curbuf->b_ml.ml_line_count,
3440 n);
3441 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003442 len = STRLEN(buffer);
3443 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3445 }
3446
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003447 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448
3449 if (dont_truncate)
3450 {
3451 /* Temporarily set msg_scroll to avoid the message being truncated.
3452 * First call msg_start() to get the message in the right place. */
3453 msg_start();
3454 n = msg_scroll;
3455 msg_scroll = TRUE;
3456 msg(buffer);
3457 msg_scroll = n;
3458 }
3459 else
3460 {
3461 p = msg_trunc_attr(buffer, FALSE, 0);
3462 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 /* Need to repeat the message after redrawing when:
3464 * - When restart_edit is set (otherwise there will be a delay
3465 * before redrawing).
3466 * - When the screen was scrolled but there is no wait-return
3467 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003468 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 }
3470
3471 vim_free(buffer);
3472}
3473
3474 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003475col_print(
3476 char_u *buf,
3477 size_t buflen,
3478 int col,
3479 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480{
3481 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003482 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003484 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485}
3486
3487#if defined(FEAT_TITLE) || defined(PROTO)
3488/*
3489 * put file name in title bar of window and in icon title
3490 */
3491
3492static char_u *lasttitle = NULL;
3493static char_u *lasticon = NULL;
3494
3495 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003496maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497{
3498 char_u *p;
3499 char_u *t_str = NULL;
3500 char_u *i_name;
3501 char_u *i_str = NULL;
3502 int maxlen = 0;
3503 int len;
3504 int mustset;
3505 char_u buf[IOSIZE];
3506 int off;
3507
3508 if (!redrawing())
3509 {
3510 /* Postpone updating the title when 'lazyredraw' is set. */
3511 need_maketitle = TRUE;
3512 return;
3513 }
3514
3515 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003516 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 return;
3518
3519 if (p_title)
3520 {
3521 if (p_titlelen > 0)
3522 {
3523 maxlen = p_titlelen * Columns / 100;
3524 if (maxlen < 10)
3525 maxlen = 10;
3526 }
3527
3528 t_str = buf;
3529 if (*p_titlestring != NUL)
3530 {
3531#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003532 if (stl_syntax & STL_IN_TITLE)
3533 {
3534 int use_sandbox = FALSE;
3535 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003536
3537# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003538 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003539# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003540 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003542 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003543 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003544 if (called_emsg)
3545 set_string_option_direct((char_u *)"titlestring", -1,
3546 (char_u *)"", OPT_FREE, SID_ERROR);
3547 called_emsg |= save_called_emsg;
3548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 else
3550#endif
3551 t_str = p_titlestring;
3552 }
3553 else
3554 {
3555 /* format: "fname + (path) (1 of 2) - VIM" */
3556
Bram Moolenaar2c666692012-09-05 13:30:40 +02003557#define SPACE_FOR_FNAME (IOSIZE - 100)
3558#define SPACE_FOR_DIR (IOSIZE - 20)
3559#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003561 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003562#ifdef FEAT_TERMINAL
3563 else if (curbuf->b_term != NULL)
3564 {
3565 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3566 SPACE_FOR_FNAME);
3567 }
3568#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 else
3570 {
3571 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003572 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 }
3575
Bram Moolenaar21554412017-07-24 21:44:43 +02003576#ifdef FEAT_TERMINAL
3577 if (curbuf->b_term == NULL)
3578#endif
3579 switch (bufIsChanged(curbuf)
3580 + (curbuf->b_p_ro * 2)
3581 + (!curbuf->b_p_ma * 4))
3582 {
3583 case 1: STRCAT(buf, " +"); break;
3584 case 2: STRCAT(buf, " ="); break;
3585 case 3: STRCAT(buf, " =+"); break;
3586 case 4:
3587 case 6: STRCAT(buf, " -"); break;
3588 case 5:
3589 case 7: STRCAT(buf, " -+"); break;
3590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591
Bram Moolenaar21554412017-07-24 21:44:43 +02003592 if (curbuf->b_fname != NULL
3593#ifdef FEAT_TERMINAL
3594 && curbuf->b_term == NULL
3595#endif
3596 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 {
3598 /* Get path of file, replace home dir with ~ */
3599 off = (int)STRLEN(buf);
3600 buf[off++] = ' ';
3601 buf[off++] = '(';
3602 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003603 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604#ifdef BACKSLASH_IN_FILENAME
3605 /* avoid "c:/name" to be reduced to "c" */
3606 if (isalpha(buf[off]) && buf[off + 1] == ':')
3607 off += 2;
3608#endif
3609 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003610 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003612 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003613 /* must be a help buffer */
3614 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003615 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003616 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003619
Bram Moolenaar2c666692012-09-05 13:30:40 +02003620 /* Translate unprintable chars and concatenate. Keep some
3621 * room for the server name. When there is no room (very long
3622 * file name) use (...). */
3623 if (off < SPACE_FOR_DIR)
3624 {
3625 p = transstr(buf + off);
3626 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3627 vim_free(p);
3628 }
3629 else
3630 {
3631 vim_strncpy(buf + off, (char_u *)"...",
3632 (size_t)(SPACE_FOR_ARGNR - off));
3633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 STRCAT(buf, ")");
3635 }
3636
Bram Moolenaar2c666692012-09-05 13:30:40 +02003637 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638
3639#if defined(FEAT_CLIENTSERVER)
3640 if (serverName != NULL)
3641 {
3642 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003643 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 }
3645 else
3646#endif
3647 STRCAT(buf, " - VIM");
3648
3649 if (maxlen > 0)
3650 {
3651 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003652 if (vim_strsize(buf) > maxlen)
3653 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 }
3655 }
3656 }
3657 mustset = ti_change(t_str, &lasttitle);
3658
3659 if (p_icon)
3660 {
3661 i_str = buf;
3662 if (*p_iconstring != NUL)
3663 {
3664#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003665 if (stl_syntax & STL_IN_ICON)
3666 {
3667 int use_sandbox = FALSE;
3668 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003669
3670# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003671 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003672# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003673 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003675 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003676 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003677 if (called_emsg)
3678 set_string_option_direct((char_u *)"iconstring", -1,
3679 (char_u *)"", OPT_FREE, SID_ERROR);
3680 called_emsg |= save_called_emsg;
3681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 else
3683#endif
3684 i_str = p_iconstring;
3685 }
3686 else
3687 {
3688 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003689 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 else /* use file name only in icon */
3691 i_name = gettail(curbuf->b_ffname);
3692 *i_str = NUL;
3693 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003694 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 if (len > 100)
3696 {
3697 len -= 100;
3698#ifdef FEAT_MBYTE
3699 if (has_mbyte)
3700 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3701#endif
3702 i_name += len;
3703 }
3704 STRCPY(i_str, i_name);
3705 trans_characters(i_str, IOSIZE);
3706 }
3707 }
3708
3709 mustset |= ti_change(i_str, &lasticon);
3710
3711 if (mustset)
3712 resettitle();
3713}
3714
3715/*
3716 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3717 * from "str" if it does.
3718 * Return TRUE when "*last" changed.
3719 */
3720 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003721ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722{
3723 if ((str == NULL) != (*last == NULL)
3724 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3725 {
3726 vim_free(*last);
3727 if (str == NULL)
3728 *last = NULL;
3729 else
3730 *last = vim_strsave(str);
3731 return TRUE;
3732 }
3733 return FALSE;
3734}
3735
3736/*
3737 * Put current window title back (used after calling a shell)
3738 */
3739 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003740resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741{
3742 mch_settitle(lasttitle, lasticon);
3743}
Bram Moolenaarea408852005-06-25 22:49:46 +00003744
3745# if defined(EXITFREE) || defined(PROTO)
3746 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003747free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003748{
3749 vim_free(lasttitle);
3750 vim_free(lasticon);
3751}
3752# endif
3753
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754#endif /* FEAT_TITLE */
3755
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003756#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003758 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 * Return length of string in screen cells.
3760 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003761 * Normally works for window "wp", except when working for 'tabline' then it
3762 * is "curwin".
3763 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 * Items are drawn interspersed with the text that surrounds it
3765 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3766 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3767 *
3768 * If maxwidth is not zero, the string will be filled at any middle marker
3769 * or truncated if too long, fillchar is used for all whitespace.
3770 */
3771 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003772build_stl_str_hl(
3773 win_T *wp,
3774 char_u *out, /* buffer to write into != NameBuff */
3775 size_t outlen, /* length of out[] */
3776 char_u *fmt,
3777 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3778 int fillchar,
3779 int maxwidth,
3780 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3781 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782{
3783 char_u *p;
3784 char_u *s;
3785 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003786 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003788 win_T *save_curwin;
3789 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790#endif
3791 int empty_line;
3792 colnr_T virtcol;
3793 long l;
3794 long n;
3795 int prevchar_isflag;
3796 int prevchar_isitem;
3797 int itemisflag;
3798 int fillable;
3799 char_u *str;
3800 long num;
3801 int width;
3802 int itemcnt;
3803 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003804 int group_end_userhl;
3805 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 int groupitem[STL_MAX_ITEM];
3807 int groupdepth;
3808 struct stl_item
3809 {
3810 char_u *start;
3811 int minwid;
3812 int maxwid;
3813 enum
3814 {
3815 Normal,
3816 Empty,
3817 Group,
3818 Middle,
3819 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003820 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 Trunc
3822 } type;
3823 } item[STL_MAX_ITEM];
3824 int minwid;
3825 int maxwid;
3826 int zeropad;
3827 char_u base;
3828 char_u opt;
3829#define TMPLEN 70
3830 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003831 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003832 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003833 int save_must_redraw = must_redraw;
3834 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003835
3836#ifdef FEAT_EVAL
3837 /*
3838 * When the format starts with "%!" then evaluate it as an expression and
3839 * use the result as the actual format string.
3840 */
3841 if (fmt[0] == '%' && fmt[1] == '!')
3842 {
3843 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3844 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003845 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003846 }
3847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848
3849 if (fillchar == 0)
3850 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003851#ifdef FEAT_MBYTE
3852 /* Can't handle a multi-byte fill character yet. */
3853 else if (mb_char2len(fillchar) > 1)
3854 fillchar = '-';
3855#endif
3856
Bram Moolenaar567199b2013-04-24 16:52:36 +02003857 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3858 * p will become invalid when getting another buffer line. */
3859 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3860 empty_line = (*p == NUL);
3861
3862 /* Get the byte value now, in case we need it below. This is more
3863 * efficient than making a copy of the line. */
3864 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3865 byteval = 0;
3866 else
3867#ifdef FEAT_MBYTE
3868 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3869#else
3870 byteval = p[wp->w_cursor.col];
3871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872
3873 groupdepth = 0;
3874 p = out;
3875 curitem = 0;
3876 prevchar_isflag = TRUE;
3877 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003878 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003880 if (curitem == STL_MAX_ITEM)
3881 {
3882 /* There are too many items. Add the error code to the statusline
3883 * to give the user a hint about what went wrong. */
3884 if (p + 6 < out + outlen)
3885 {
3886 mch_memmove(p, " E541", (size_t)5);
3887 p += 5;
3888 }
3889 break;
3890 }
3891
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 if (*s != NUL && *s != '%')
3893 prevchar_isflag = prevchar_isitem = FALSE;
3894
3895 /*
3896 * Handle up to the next '%' or the end.
3897 */
3898 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3899 *p++ = *s++;
3900 if (*s == NUL || p + 1 >= out + outlen)
3901 break;
3902
3903 /*
3904 * Handle one '%' item.
3905 */
3906 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003907 if (*s == NUL) /* ignore trailing % */
3908 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 if (*s == '%')
3910 {
3911 if (p + 1 >= out + outlen)
3912 break;
3913 *p++ = *s++;
3914 prevchar_isflag = prevchar_isitem = FALSE;
3915 continue;
3916 }
3917 if (*s == STL_MIDDLEMARK)
3918 {
3919 s++;
3920 if (groupdepth > 0)
3921 continue;
3922 item[curitem].type = Middle;
3923 item[curitem++].start = p;
3924 continue;
3925 }
3926 if (*s == STL_TRUNCMARK)
3927 {
3928 s++;
3929 item[curitem].type = Trunc;
3930 item[curitem++].start = p;
3931 continue;
3932 }
3933 if (*s == ')')
3934 {
3935 s++;
3936 if (groupdepth < 1)
3937 continue;
3938 groupdepth--;
3939
3940 t = item[groupitem[groupdepth]].start;
3941 *p = NUL;
3942 l = vim_strsize(t);
3943 if (curitem > groupitem[groupdepth] + 1
3944 && item[groupitem[groupdepth]].minwid == 0)
3945 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003946 /* remove group if all items are empty and highlight group
3947 * doesn't change */
3948 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02003949 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
3950 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003951 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02003952 {
3953 group_start_userhl = group_end_userhl = item[n].minwid;
3954 break;
3955 }
3956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003958 {
3959 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003961 if (item[n].type == Highlight)
3962 group_end_userhl = item[n].minwid;
3963 }
3964 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 {
3966 p = t;
3967 l = 0;
3968 }
3969 }
3970 if (l > item[groupitem[groupdepth]].maxwid)
3971 {
3972 /* truncate, remove n bytes of text at the start */
3973#ifdef FEAT_MBYTE
3974 if (has_mbyte)
3975 {
3976 /* Find the first character that should be included. */
3977 n = 0;
3978 while (l >= item[groupitem[groupdepth]].maxwid)
3979 {
3980 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003981 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 }
3983 }
3984 else
3985#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003986 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987
3988 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003989 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 p = p - n + 1;
3991#ifdef FEAT_MBYTE
3992 /* Fill up space left over by half a double-wide char. */
3993 while (++l < item[groupitem[groupdepth]].minwid)
3994 *p++ = fillchar;
3995#endif
3996
3997 /* correct the start of the items for the truncation */
3998 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3999 {
4000 item[l].start -= n;
4001 if (item[l].start < t)
4002 item[l].start = t;
4003 }
4004 }
4005 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4006 {
4007 /* fill */
4008 n = item[groupitem[groupdepth]].minwid;
4009 if (n < 0)
4010 {
4011 /* fill by appending characters */
4012 n = 0 - n;
4013 while (l++ < n && p + 1 < out + outlen)
4014 *p++ = fillchar;
4015 }
4016 else
4017 {
4018 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004019 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 l = n - l;
4021 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004022 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 p += l;
4024 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4025 item[n].start += l;
4026 for ( ; l > 0; l--)
4027 *t++ = fillchar;
4028 }
4029 }
4030 continue;
4031 }
4032 minwid = 0;
4033 maxwid = 9999;
4034 zeropad = FALSE;
4035 l = 1;
4036 if (*s == '0')
4037 {
4038 s++;
4039 zeropad = TRUE;
4040 }
4041 if (*s == '-')
4042 {
4043 s++;
4044 l = -1;
4045 }
4046 if (VIM_ISDIGIT(*s))
4047 {
4048 minwid = (int)getdigits(&s);
4049 if (minwid < 0) /* overflow */
4050 minwid = 0;
4051 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004052 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 {
4054 item[curitem].type = Highlight;
4055 item[curitem].start = p;
4056 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4057 s++;
4058 curitem++;
4059 continue;
4060 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004061 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4062 {
4063 if (*s == STL_TABCLOSENR)
4064 {
4065 if (minwid == 0)
4066 {
4067 /* %X ends the close label, go back to the previously
4068 * define tab label nr. */
4069 for (n = curitem - 1; n >= 0; --n)
4070 if (item[n].type == TabPage && item[n].minwid >= 0)
4071 {
4072 minwid = item[n].minwid;
4073 break;
4074 }
4075 }
4076 else
4077 /* close nrs are stored as negative values */
4078 minwid = - minwid;
4079 }
4080 item[curitem].type = TabPage;
4081 item[curitem].start = p;
4082 item[curitem].minwid = minwid;
4083 s++;
4084 curitem++;
4085 continue;
4086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 if (*s == '.')
4088 {
4089 s++;
4090 if (VIM_ISDIGIT(*s))
4091 {
4092 maxwid = (int)getdigits(&s);
4093 if (maxwid <= 0) /* overflow */
4094 maxwid = 50;
4095 }
4096 }
4097 minwid = (minwid > 50 ? 50 : minwid) * l;
4098 if (*s == '(')
4099 {
4100 groupitem[groupdepth++] = curitem;
4101 item[curitem].type = Group;
4102 item[curitem].start = p;
4103 item[curitem].minwid = minwid;
4104 item[curitem].maxwid = maxwid;
4105 s++;
4106 curitem++;
4107 continue;
4108 }
4109 if (vim_strchr(STL_ALL, *s) == NULL)
4110 {
4111 s++;
4112 continue;
4113 }
4114 opt = *s++;
4115
4116 /* OK - now for the real work */
4117 base = 'D';
4118 itemisflag = FALSE;
4119 fillable = TRUE;
4120 num = -1;
4121 str = NULL;
4122 switch (opt)
4123 {
4124 case STL_FILEPATH:
4125 case STL_FULLPATH:
4126 case STL_FILENAME:
4127 fillable = FALSE; /* don't change ' ' to fillchar */
4128 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004129 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 else
4131 {
4132 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004133 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4135 }
4136 trans_characters(NameBuff, MAXPATHL);
4137 if (opt != STL_FILENAME)
4138 str = NameBuff;
4139 else
4140 str = gettail(NameBuff);
4141 break;
4142
4143 case STL_VIM_EXPR: /* '{' */
4144 itemisflag = TRUE;
4145 t = p;
4146 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4147 *p++ = *s++;
4148 if (*s != '}') /* missing '}' or out of space */
4149 break;
4150 s++;
4151 *p = 0;
4152 p = t;
4153
4154#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004155 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4157
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004158 save_curbuf = curbuf;
4159 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 curwin = wp;
4161 curbuf = wp->w_buffer;
4162
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004163 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004165 curwin = save_curwin;
4166 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004167 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168
4169 if (str != NULL && *str != 0)
4170 {
4171 if (*skipdigits(str) == NUL)
4172 {
4173 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004174 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 itemisflag = FALSE;
4176 }
4177 }
4178#endif
4179 break;
4180
4181 case STL_LINE:
4182 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4183 ? 0L : (long)(wp->w_cursor.lnum);
4184 break;
4185
4186 case STL_NUMLINES:
4187 num = wp->w_buffer->b_ml.ml_line_count;
4188 break;
4189
4190 case STL_COLUMN:
4191 num = !(State & INSERT) && empty_line
4192 ? 0 : (int)wp->w_cursor.col + 1;
4193 break;
4194
4195 case STL_VIRTCOL:
4196 case STL_VIRTCOL_ALT:
4197 /* In list mode virtcol needs to be recomputed */
4198 virtcol = wp->w_virtcol;
4199 if (wp->w_p_list && lcs_tab1 == NUL)
4200 {
4201 wp->w_p_list = FALSE;
4202 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4203 wp->w_p_list = TRUE;
4204 }
4205 ++virtcol;
4206 /* Don't display %V if it's the same as %c. */
4207 if (opt == STL_VIRTCOL_ALT
4208 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4209 ? 0 : (int)wp->w_cursor.col + 1)))
4210 break;
4211 num = (long)virtcol;
4212 break;
4213
4214 case STL_PERCENTAGE:
4215 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4216 (long)wp->w_buffer->b_ml.ml_line_count);
4217 break;
4218
4219 case STL_ALTPERCENT:
4220 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004221 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 break;
4223
4224 case STL_ARGLISTSTAT:
4225 fillable = FALSE;
4226 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004227 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 str = tmp;
4229 break;
4230
4231 case STL_KEYMAP:
4232 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004233 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 str = tmp;
4235 break;
4236 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004237#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004238 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239#else
4240 num = 0;
4241#endif
4242 break;
4243
4244 case STL_BUFNO:
4245 num = wp->w_buffer->b_fnum;
4246 break;
4247
4248 case STL_OFFSET_X:
4249 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004250 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 case STL_OFFSET:
4252#ifdef FEAT_BYTEOFF
4253 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4254 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4255 0L : l + 1 + (!(State & INSERT) && empty_line ?
4256 0 : (int)wp->w_cursor.col);
4257#endif
4258 break;
4259
4260 case STL_BYTEVAL_X:
4261 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004262 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004264 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 if (num == NL)
4266 num = 0;
4267 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4268 num = NL;
4269 break;
4270
4271 case STL_ROFLAG:
4272 case STL_ROFLAG_ALT:
4273 itemisflag = TRUE;
4274 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004275 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 break;
4277
4278 case STL_HELPFLAG:
4279 case STL_HELPFLAG_ALT:
4280 itemisflag = TRUE;
4281 if (wp->w_buffer->b_help)
4282 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004283 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 break;
4285
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 case STL_FILETYPE:
4287 if (*wp->w_buffer->b_p_ft != NUL
4288 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4289 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004290 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4291 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 str = tmp;
4293 }
4294 break;
4295
4296 case STL_FILETYPE_ALT:
4297 itemisflag = TRUE;
4298 if (*wp->w_buffer->b_p_ft != NUL
4299 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4300 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004301 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4302 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 for (t = tmp; *t != 0; t++)
4304 *t = TOUPPER_LOC(*t);
4305 str = tmp;
4306 }
4307 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308
Bram Moolenaar4033c552017-09-16 20:54:51 +02004309#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 case STL_PREVIEWFLAG:
4311 case STL_PREVIEWFLAG_ALT:
4312 itemisflag = TRUE;
4313 if (wp->w_p_pvw)
4314 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4315 : _("[Preview]"));
4316 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004317
4318 case STL_QUICKFIX:
4319 if (bt_quickfix(wp->w_buffer))
4320 str = (char_u *)(wp->w_llist_ref
4321 ? _(msg_loclist)
4322 : _(msg_qflist));
4323 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324#endif
4325
4326 case STL_MODIFIED:
4327 case STL_MODIFIED_ALT:
4328 itemisflag = TRUE;
4329 switch ((opt == STL_MODIFIED_ALT)
4330 + bufIsChanged(wp->w_buffer) * 2
4331 + (!wp->w_buffer->b_p_ma) * 4)
4332 {
4333 case 2: str = (char_u *)"[+]"; break;
4334 case 3: str = (char_u *)",+"; break;
4335 case 4: str = (char_u *)"[-]"; break;
4336 case 5: str = (char_u *)",-"; break;
4337 case 6: str = (char_u *)"[+-]"; break;
4338 case 7: str = (char_u *)",+-"; break;
4339 }
4340 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004341
4342 case STL_HIGHLIGHT:
4343 t = s;
4344 while (*s != '#' && *s != NUL)
4345 ++s;
4346 if (*s == '#')
4347 {
4348 item[curitem].type = Highlight;
4349 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004350 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004351 curitem++;
4352 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004353 if (*s != NUL)
4354 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004355 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 }
4357
4358 item[curitem].start = p;
4359 item[curitem].type = Normal;
4360 if (str != NULL && *str)
4361 {
4362 t = str;
4363 if (itemisflag)
4364 {
4365 if ((t[0] && t[1])
4366 && ((!prevchar_isitem && *t == ',')
4367 || (prevchar_isflag && *t == ' ')))
4368 t++;
4369 prevchar_isflag = TRUE;
4370 }
4371 l = vim_strsize(t);
4372 if (l > 0)
4373 prevchar_isitem = TRUE;
4374 if (l > maxwid)
4375 {
4376 while (l >= maxwid)
4377#ifdef FEAT_MBYTE
4378 if (has_mbyte)
4379 {
4380 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004381 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 }
4383 else
4384#endif
4385 l -= byte2cells(*t++);
4386 if (p + 1 >= out + outlen)
4387 break;
4388 *p++ = '<';
4389 }
4390 if (minwid > 0)
4391 {
4392 for (; l < minwid && p + 1 < out + outlen; l++)
4393 {
4394 /* Don't put a "-" in front of a digit. */
4395 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4396 *p++ = ' ';
4397 else
4398 *p++ = fillchar;
4399 }
4400 minwid = 0;
4401 }
4402 else
4403 minwid *= -1;
4404 while (*t && p + 1 < out + outlen)
4405 {
4406 *p++ = *t++;
4407 /* Change a space by fillchar, unless fillchar is '-' and a
4408 * digit follows. */
4409 if (fillable && p[-1] == ' '
4410 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4411 p[-1] = fillchar;
4412 }
4413 for (; l < minwid && p + 1 < out + outlen; l++)
4414 *p++ = fillchar;
4415 }
4416 else if (num >= 0)
4417 {
4418 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4419 char_u nstr[20];
4420
4421 if (p + 20 >= out + outlen)
4422 break; /* not sufficient space */
4423 prevchar_isitem = TRUE;
4424 t = nstr;
4425 if (opt == STL_VIRTCOL_ALT)
4426 {
4427 *t++ = '-';
4428 minwid--;
4429 }
4430 *t++ = '%';
4431 if (zeropad)
4432 *t++ = '0';
4433 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004434 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 *t = 0;
4436
4437 for (n = num, l = 1; n >= nbase; n /= nbase)
4438 l++;
4439 if (opt == STL_VIRTCOL_ALT)
4440 l++;
4441 if (l > maxwid)
4442 {
4443 l += 2;
4444 n = l - maxwid;
4445 while (l-- > maxwid)
4446 num /= nbase;
4447 *t++ = '>';
4448 *t++ = '%';
4449 *t = t[-3];
4450 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004451 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4452 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 }
4454 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004455 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4456 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 p += STRLEN(p);
4458 }
4459 else
4460 item[curitem].type = Empty;
4461
4462 if (opt == STL_VIM_EXPR)
4463 vim_free(str);
4464
4465 if (num >= 0 || (!itemisflag && str && *str))
4466 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4467 curitem++;
4468 }
4469 *p = NUL;
4470 itemcnt = curitem;
4471
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004472#ifdef FEAT_EVAL
4473 if (usefmt != fmt)
4474 vim_free(usefmt);
4475#endif
4476
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 width = vim_strsize(out);
4478 if (maxwidth > 0 && width > maxwidth)
4479 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004480 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 l = 0;
4482 if (itemcnt == 0)
4483 s = out;
4484 else
4485 {
4486 for ( ; l < itemcnt; l++)
4487 if (item[l].type == Trunc)
4488 {
4489 /* Truncate at %< item. */
4490 s = item[l].start;
4491 break;
4492 }
4493 if (l == itemcnt)
4494 {
4495 /* No %< item, truncate first item. */
4496 s = item[0].start;
4497 l = 0;
4498 }
4499 }
4500
4501 if (width - vim_strsize(s) >= maxwidth)
4502 {
4503 /* Truncation mark is beyond max length */
4504#ifdef FEAT_MBYTE
4505 if (has_mbyte)
4506 {
4507 s = out;
4508 width = 0;
4509 for (;;)
4510 {
4511 width += ptr2cells(s);
4512 if (width >= maxwidth)
4513 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004514 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 }
4516 /* Fill up for half a double-wide character. */
4517 while (++width < maxwidth)
4518 *s++ = fillchar;
4519 }
4520 else
4521#endif
4522 s = out + maxwidth - 1;
4523 for (l = 0; l < itemcnt; l++)
4524 if (item[l].start > s)
4525 break;
4526 itemcnt = l;
4527 *s++ = '>';
4528 *s = 0;
4529 }
4530 else
4531 {
4532#ifdef FEAT_MBYTE
4533 if (has_mbyte)
4534 {
4535 n = 0;
4536 while (width >= maxwidth)
4537 {
4538 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004539 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 }
4541 }
4542 else
4543#endif
4544 n = width - maxwidth + 1;
4545 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004546 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 *s = '<';
4548
4549 /* Fill up for half a double-wide character. */
4550 while (++width < maxwidth)
4551 {
4552 s = s + STRLEN(s);
4553 *s++ = fillchar;
4554 *s = NUL;
4555 }
4556
4557 --n; /* count the '<' */
4558 for (; l < itemcnt; l++)
4559 {
4560 if (item[l].start - n >= s)
4561 item[l].start -= n;
4562 else
4563 item[l].start = s;
4564 }
4565 }
4566 width = maxwidth;
4567 }
4568 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4569 {
4570 /* Apply STL_MIDDLE if any */
4571 for (l = 0; l < itemcnt; l++)
4572 if (item[l].type == Middle)
4573 break;
4574 if (l < itemcnt)
4575 {
4576 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004577 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 for (s = item[l].start; s < p; s++)
4579 *s = fillchar;
4580 for (l++; l < itemcnt; l++)
4581 item[l].start += maxwidth - width;
4582 width = maxwidth;
4583 }
4584 }
4585
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004586 /* Store the info about highlighting. */
4587 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004589 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 for (l = 0; l < itemcnt; l++)
4591 {
4592 if (item[l].type == Highlight)
4593 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004594 sp->start = item[l].start;
4595 sp->userhl = item[l].minwid;
4596 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 }
4598 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004599 sp->start = NULL;
4600 sp->userhl = 0;
4601 }
4602
4603 /* Store the info about tab pages labels. */
4604 if (tabtab != NULL)
4605 {
4606 sp = tabtab;
4607 for (l = 0; l < itemcnt; l++)
4608 {
4609 if (item[l].type == TabPage)
4610 {
4611 sp->start = item[l].start;
4612 sp->userhl = item[l].minwid;
4613 sp++;
4614 }
4615 }
4616 sp->start = NULL;
4617 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 }
4619
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004620 /* When inside update_screen we do not want redrawing a stausline, ruler,
4621 * title, etc. to trigger another redraw, it may cause an endless loop. */
4622 if (updating_screen)
4623 {
4624 must_redraw = save_must_redraw;
4625 curwin->w_redr_type = save_redr_type;
4626 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004627
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 return width;
4629}
4630#endif /* FEAT_STL_OPT */
4631
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004632#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4633 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004635 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4636 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 */
4638 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004639get_rel_pos(
4640 win_T *wp,
4641 char_u *buf,
4642 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643{
4644 long above; /* number of lines above window */
4645 long below; /* number of lines below window */
4646
Bram Moolenaar0027c212015-01-07 13:31:52 +01004647 if (buflen < 3) /* need at least 3 chars for writing */
4648 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 above = wp->w_topline - 1;
4650#ifdef FEAT_DIFF
4651 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004652 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4653 above = 0; /* All buffer lines are displayed and there is an
4654 * indication of filler lines, that can be considered
4655 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656#endif
4657 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4658 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004659 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4660 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004662 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004664 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 ? (int)(above / ((above + below) / 100L))
4666 : (int)(above * 100L / (above + below)));
4667}
4668#endif
4669
4670/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004671 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 * Return TRUE if it was appended.
4673 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004674 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004675append_arg_number(
4676 win_T *wp,
4677 char_u *buf,
4678 int buflen,
4679 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680{
4681 char_u *p;
4682
4683 if (ARGCOUNT <= 1) /* nothing to do */
4684 return FALSE;
4685
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004686 p = buf + STRLEN(buf); /* go to the end of the buffer */
4687 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 return FALSE;
4689 *p++ = ' ';
4690 *p++ = '(';
4691 if (add_file)
4692 {
4693 STRCPY(p, "file ");
4694 p += 5;
4695 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004696 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4697 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4699 return TRUE;
4700}
4701
4702/*
4703 * If fname is not a full path, make it a full path.
4704 * Returns pointer to allocated memory (NULL for failure).
4705 */
4706 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004707fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708{
4709 /*
4710 * Force expanding the path always for Unix, because symbolic links may
4711 * mess up the full path name, even though it starts with a '/'.
4712 * Also expand when there is ".." in the file name, try to remove it,
4713 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004714 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 * For MS-Windows also expand names like "longna~1" to "longname".
4716 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004717#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 return FullName_save(fname, TRUE);
4719#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004720 if (!vim_isAbsName(fname)
4721 || strstr((char *)fname, "..") != NULL
4722 || strstr((char *)fname, "//") != NULL
4723# ifdef BACKSLASH_IN_FILENAME
4724 || strstr((char *)fname, "\\\\") != NULL
4725# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004726# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 )
4730 return FullName_save(fname, FALSE);
4731
4732 fname = vim_strsave(fname);
4733
Bram Moolenaar9b942202007-10-03 12:31:33 +00004734# ifdef USE_FNAME_CASE
4735# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004737# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 {
4739 if (fname != NULL)
4740 fname_case(fname, 0); /* set correct case for file name */
4741 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004742# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743
4744 return fname;
4745#endif
4746}
4747
4748/*
4749 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4750 * "ffname" becomes a pointer to allocated memory (or NULL).
4751 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004753fname_expand(
4754 buf_T *buf UNUSED,
4755 char_u **ffname,
4756 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757{
4758 if (*ffname == NULL) /* if no file name given, nothing to do */
4759 return;
4760 if (*sfname == NULL) /* if no short file name given, use ffname */
4761 *sfname = *ffname;
4762 *ffname = fix_fname(*ffname); /* expand to full path */
4763
4764#ifdef FEAT_SHORTCUT
4765 if (!buf->b_p_bin)
4766 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004767 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768
4769 /* If the file name is a shortcut file, use the file it links to. */
4770 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004771 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 {
4773 vim_free(*ffname);
4774 *ffname = rfname;
4775 *sfname = rfname;
4776 }
4777 }
4778#endif
4779}
4780
4781/*
4782 * Get the file name for an argument list entry.
4783 */
4784 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004785alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786{
4787 buf_T *bp;
4788
4789 /* Use the name from the associated buffer if it exists. */
4790 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004791 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 return aep->ae_fname;
4793 return bp->b_fname;
4794}
4795
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796/*
4797 * do_arg_all(): Open up to 'count' windows, one for each argument.
4798 */
4799 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004800do_arg_all(
4801 int count,
4802 int forceit, /* hide buffers in current windows */
4803 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804{
4805 int i;
4806 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004807 char_u *opened; /* Array of weight for which args are open:
4808 * 0: not opened
4809 * 1: opened in other tab
4810 * 2: opened in curtab
4811 * 3: opened in curtab and curwin
4812 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004813 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 int use_firstwin = FALSE; /* use first window for arglist */
4815 int split_ret = OK;
4816 int p_ea_save;
4817 alist_T *alist; /* argument list to be used */
4818 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004819 tabpage_T *tpnext;
4820 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004821 win_T *old_curwin, *last_curwin;
4822 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004823 win_T *new_curwin = NULL;
4824 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825
4826 if (ARGCOUNT <= 0)
4827 {
4828 /* Don't give an error message. We don't want it when the ":all"
4829 * command is in the .vimrc. */
4830 return;
4831 }
4832 setpcmark();
4833
4834 opened_len = ARGCOUNT;
4835 opened = alloc_clear((unsigned)opened_len);
4836 if (opened == NULL)
4837 return;
4838
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004839 /* Autocommands may do anything to the argument list. Make sure it's not
4840 * freed while we are working here by "locking" it. We still have to
4841 * watch out for its size to be changed. */
4842 alist = curwin->w_alist;
4843 ++alist->al_refcount;
4844
4845 old_curwin = curwin;
4846 old_curtab = curtab;
4847
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004848# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004850# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851
4852 /*
4853 * Try closing all windows that are not in the argument list.
4854 * Also close windows that are not full width;
4855 * When 'hidden' or "forceit" set the buffer becomes hidden.
4856 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004857 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004859 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004860 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004861 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004863 tpnext = curtab->tp_next;
4864 for (wp = firstwin; wp != NULL; wp = wpnext)
4865 {
4866 wpnext = wp->w_next;
4867 buf = wp->w_buffer;
4868 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004869 || (!keep_tabs && (buf->b_nwindows > 1
4870 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004871 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004872 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004874 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004875 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004877 if (i < alist->al_ga.ga_len
4878 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4879 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4880 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004882 int weight = 1;
4883
4884 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004885 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004886 ++weight;
4887 if (old_curwin == wp)
4888 ++weight;
4889 }
4890
4891 if (weight > (int)opened[i])
4892 {
4893 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004894 if (i == 0)
4895 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004896 if (new_curwin != NULL)
4897 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004898 new_curwin = wp;
4899 new_curtab = curtab;
4900 }
4901 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004902 else if (keep_tabs)
4903 i = opened_len;
4904
4905 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004906 {
4907 /* Use the current argument list for all windows
4908 * containing a file from it. */
4909 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004910 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004911 ++wp->w_alist->al_refcount;
4912 }
4913 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 }
4916 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004917 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004919 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004921 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004922 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004924 /* If the buffer was changed, and we would like to hide it,
4925 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02004926 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004927 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004929 bufref_T bufref;
4930
4931 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004932
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004933 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004934
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004935 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004936 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004937 {
4938 wpnext = firstwin; /* start all over... */
4939 continue;
4940 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004942 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004943 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004944 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004945 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004946 else
4947 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004948 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004949
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004950 /* check if autocommands removed the next window */
4951 if (!win_valid(wpnext))
4952 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02004953 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 }
4956 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004957
4958 /* Without the ":tab" modifier only do the current tab page. */
4959 if (had_tab == 0 || tpnext == NULL)
4960 break;
4961
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004962 /* check if autocommands removed the next tab page */
4963 if (!valid_tabpage(tpnext))
4964 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004965
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004966 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 }
4968
4969 /*
4970 * Open a window for files in the argument list that don't have one.
4971 * ARGCOUNT may change while doing this, because of autocommands.
4972 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004973 if (count > opened_len || count <= 0)
4974 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4977 ++autocmd_no_enter;
4978 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004979 last_curwin = curwin;
4980 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004982 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4983 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004984 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004985 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4986 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004987
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004988 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 {
4990 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4991 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004992 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 {
4994 /* Move the already present window to below the current window */
4995 if (curwin->w_arg_idx != i)
4996 {
4997 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4998 {
4999 if (wpnext->w_arg_idx == i)
5000 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005001 if (keep_tabs)
5002 {
5003 new_curwin = wpnext;
5004 new_curtab = curtab;
5005 }
5006 else
5007 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 break;
5009 }
5010 }
5011 }
5012 }
5013 else if (split_ret == OK)
5014 {
5015 if (!use_firstwin) /* split current window */
5016 {
5017 p_ea_save = p_ea;
5018 p_ea = TRUE; /* use space from all windows */
5019 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5020 p_ea = p_ea_save;
5021 if (split_ret == FAIL)
5022 continue;
5023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 else /* first window: do autocmd for leaving this buffer */
5025 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026
5027 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005028 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 */
5030 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005031 if (i == 0)
5032 {
5033 new_curwin = curwin;
5034 new_curtab = curtab;
5035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5037 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005038 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005040 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 if (use_firstwin)
5042 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 use_firstwin = FALSE;
5044 }
5045 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005046
5047 /* When ":tab" was used open a new tab for a new window repeatedly. */
5048 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5049 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 }
5051
5052 /* Remove the "lock" on the argument list. */
5053 alist_unlink(alist);
5054
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005056
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005057 /* restore last referenced tabpage's curwin */
5058 if (last_curtab != new_curtab)
5059 {
5060 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005061 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005062 if (win_valid(last_curwin))
5063 win_enter(last_curwin, FALSE);
5064 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005065 /* to window with first arg */
5066 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005067 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005068 if (win_valid(new_curwin))
5069 win_enter(new_curwin, FALSE);
5070
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 vim_free(opened);
5073}
5074
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075/*
5076 * Open a window for a number of buffers.
5077 */
5078 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005079ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080{
5081 buf_T *buf;
5082 win_T *wp, *wpnext;
5083 int split_ret = OK;
5084 int p_ea_save;
5085 int open_wins = 0;
5086 int r;
5087 int count; /* Maximum number of windows to open. */
5088 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005089 int had_tab = cmdmod.tab;
5090 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091
5092 if (eap->addr_count == 0) /* make as many windows as possible */
5093 count = 9999;
5094 else
5095 count = eap->line2; /* make as many windows as specified */
5096 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5097 all = FALSE;
5098 else
5099 all = TRUE;
5100
5101 setpcmark();
5102
5103#ifdef FEAT_GUI
5104 need_mouse_correct = TRUE;
5105#endif
5106
5107 /*
5108 * Close superfluous windows (two windows for the same buffer).
5109 * Also close windows that are not full-width.
5110 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005111 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005112 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005113 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005115 tpnext = curtab->tp_next;
5116 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005118 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005119 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005120 || ((cmdmod.split & WSP_VERT)
5121 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005122 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005123 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005124 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005125 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005126 {
5127 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005128 wpnext = firstwin; /* just in case an autocommand does
5129 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005130 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005131 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005132 }
5133 else
5134 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005136
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005137 /* Without the ":tab" modifier only do the current tab page. */
5138 if (had_tab == 0 || tpnext == NULL)
5139 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005140 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 }
5142
5143 /*
5144 * Go through the buffer list. When a buffer doesn't have a window yet,
5145 * open one. Otherwise move the window to the right position.
5146 * Watch out for autocommands that delete buffers or windows!
5147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5149 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5153 {
5154 /* Check if this buffer needs a window */
5155 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5156 continue;
5157
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005158 if (had_tab != 0)
5159 {
5160 /* With the ":tab" modifier don't move the window. */
5161 if (buf->b_nwindows > 0)
5162 wp = lastwin; /* buffer has a window, skip it */
5163 else
5164 wp = NULL;
5165 }
5166 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005167 {
5168 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005169 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005170 if (wp->w_buffer == buf)
5171 break;
5172 /* If the buffer already has a window, move it */
5173 if (wp != NULL)
5174 win_move_after(wp, curwin);
5175 }
5176
5177 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005179 bufref_T bufref;
5180
5181 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005182
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 /* Split the window and put the buffer in it */
5184 p_ea_save = p_ea;
5185 p_ea = TRUE; /* use space from all windows */
5186 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5187 ++open_wins;
5188 p_ea = p_ea_save;
5189 if (split_ret == FAIL)
5190 continue;
5191
5192 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005193#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 swap_exists_action = SEA_DIALOG;
5195#endif
5196 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005197 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005199 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005200#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 break;
5204 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005205#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 if (swap_exists_action == SEA_QUIT)
5207 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005208# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005209 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005210
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005211 /* Reset the error/interrupt/exception state here so that
5212 * aborting() returns FALSE when closing a window. */
5213 enter_cleanup(&cs);
5214# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005215
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005216 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 win_close(curwin, TRUE);
5218 --open_wins;
5219 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005220 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005221
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005222# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005223 /* Restore the error/interrupt/exception state if not
5224 * discarded by a new aborting error, interrupt, or uncaught
5225 * exception. */
5226 leave_cleanup(&cs);
5227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 }
5229 else
5230 handle_swap_exists(NULL);
5231#endif
5232 }
5233
5234 ui_breakcheck();
5235 if (got_int)
5236 {
5237 (void)vgetc(); /* only break the file loading, not the rest */
5238 break;
5239 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005240#ifdef FEAT_EVAL
5241 /* Autocommands deleted the buffer or aborted script processing!!! */
5242 if (aborting())
5243 break;
5244#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005245 /* When ":tab" was used open a new tab for a new window repeatedly. */
5246 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5247 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252
5253 /*
5254 * Close superfluous windows.
5255 */
5256 for (wp = lastwin; open_wins > count; )
5257 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005258 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 if (!win_valid(wp))
5261 {
5262 /* BufWrite Autocommands made the window invalid, start over */
5263 wp = lastwin;
5264 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005265 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005267 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 --open_wins;
5269 wp = lastwin;
5270 }
5271 else
5272 {
5273 wp = wp->w_prev;
5274 if (wp == NULL)
5275 break;
5276 }
5277 }
5278}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005281static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005282
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283/*
5284 * do_modelines() - process mode lines for the current file
5285 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005286 * "flags" can be:
5287 * OPT_WINONLY only set options local to window
5288 * OPT_NOWIN don't set options local to window
5289 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 * Returns immediately if the "ml" option isn't set.
5291 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005293do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005295 linenr_T lnum;
5296 int nmlines;
5297 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298
5299 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5300 return;
5301
5302 /* Disallow recursive entry here. Can happen when executing a modeline
5303 * triggers an autocommand, which reloads modelines with a ":do". */
5304 if (entered)
5305 return;
5306
5307 ++entered;
5308 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5309 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005310 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 nmlines = 0;
5312
5313 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5314 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005315 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 nmlines = 0;
5317 --entered;
5318}
5319
5320#include "version.h" /* for version number */
5321
5322/*
5323 * chk_modeline() - check a single line for a mode string
5324 * Return FAIL if an error encountered.
5325 */
5326 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005327chk_modeline(
5328 linenr_T lnum,
5329 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330{
5331 char_u *s;
5332 char_u *e;
5333 char_u *linecopy; /* local copy of any modeline found */
5334 int prev;
5335 int vers;
5336 int end;
5337 int retval = OK;
5338 char_u *save_sourcing_name;
5339 linenr_T save_sourcing_lnum;
5340#ifdef FEAT_EVAL
5341 scid_T save_SID;
5342#endif
5343
5344 prev = -1;
5345 for (s = ml_get(lnum); *s != NUL; ++s)
5346 {
5347 if (prev == -1 || vim_isspace(prev))
5348 {
5349 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5350 || STRNCMP(s, "vi:", (size_t)3) == 0)
5351 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005352 /* Accept both "vim" and "Vim". */
5353 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 {
5355 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5356 e = s + 4;
5357 else
5358 e = s + 3;
5359 vers = getdigits(&e);
5360 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005361 && (s[0] != 'V'
5362 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 && (s[3] == ':'
5364 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5365 || (VIM_VERSION_100 < vers && s[3] == '<')
5366 || (VIM_VERSION_100 > vers && s[3] == '>')
5367 || (VIM_VERSION_100 == vers && s[3] == '=')))
5368 break;
5369 }
5370 }
5371 prev = *s;
5372 }
5373
5374 if (*s)
5375 {
5376 do /* skip over "ex:", "vi:" or "vim:" */
5377 ++s;
5378 while (s[-1] != ':');
5379
5380 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5381 if (linecopy == NULL)
5382 return FAIL;
5383
5384 save_sourcing_lnum = sourcing_lnum;
5385 save_sourcing_name = sourcing_name;
5386 sourcing_lnum = lnum; /* prepare for emsg() */
5387 sourcing_name = (char_u *)"modelines";
5388
5389 end = FALSE;
5390 while (end == FALSE)
5391 {
5392 s = skipwhite(s);
5393 if (*s == NUL)
5394 break;
5395
5396 /*
5397 * Find end of set command: ':' or end of line.
5398 * Skip over "\:", replacing it with ":".
5399 */
5400 for (e = s; *e != ':' && *e != NUL; ++e)
5401 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005402 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 if (*e == NUL)
5404 end = TRUE;
5405
5406 /*
5407 * If there is a "set" command, require a terminating ':' and
5408 * ignore the stuff after the ':'.
5409 * "vi:set opt opt opt: foo" -- foo not interpreted
5410 * "vi:opt opt opt: foo" -- foo interpreted
5411 * Accept "se" for compatibility with Elvis.
5412 */
5413 if (STRNCMP(s, "set ", (size_t)4) == 0
5414 || STRNCMP(s, "se ", (size_t)3) == 0)
5415 {
5416 if (*e != ':') /* no terminating ':'? */
5417 break;
5418 end = TRUE;
5419 s = vim_strchr(s, ' ') + 1;
5420 }
5421 *e = NUL; /* truncate the set command */
5422
5423 if (*s != NUL) /* skip over an empty "::" */
5424 {
5425#ifdef FEAT_EVAL
5426 save_SID = current_SID;
5427 current_SID = SID_MODELINE;
5428#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005429 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430#ifdef FEAT_EVAL
5431 current_SID = save_SID;
5432#endif
5433 if (retval == FAIL) /* stop if error found */
5434 break;
5435 }
5436 s = e + 1; /* advance to next part */
5437 }
5438
5439 sourcing_lnum = save_sourcing_lnum;
5440 sourcing_name = save_sourcing_name;
5441
5442 vim_free(linecopy);
5443 }
5444 return retval;
5445}
5446
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005447#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005449read_viminfo_bufferlist(
5450 vir_T *virp,
5451 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452{
5453 char_u *tab;
5454 linenr_T lnum;
5455 colnr_T col;
5456 buf_T *buf;
5457 char_u *sfname;
5458 char_u *xline;
5459
5460 /* Handle long line and escaped characters. */
5461 xline = viminfo_readstring(virp, 1, FALSE);
5462
5463 /* don't read in if there are files on the command-line or if writing: */
5464 if (xline != NULL && !writing && ARGCOUNT == 0
5465 && find_viminfo_parameter('%') != NULL)
5466 {
5467 /* Format is: <fname> Tab <lnum> Tab <col>.
5468 * Watch out for a Tab in the file name, work from the end. */
5469 lnum = 0;
5470 col = 0;
5471 tab = vim_strrchr(xline, '\t');
5472 if (tab != NULL)
5473 {
5474 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005475 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 tab = vim_strrchr(xline, '\t');
5477 if (tab != NULL)
5478 {
5479 *tab++ = '\0';
5480 lnum = atol((char *)tab);
5481 }
5482 }
5483
5484 /* Expand "~/" in the file name at "line + 1" to a full path.
5485 * Then try shortening it by comparing with the current directory */
5486 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005487 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488
5489 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5490 if (buf != NULL) /* just in case... */
5491 {
5492 buf->b_last_cursor.lnum = lnum;
5493 buf->b_last_cursor.col = col;
5494 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5495 }
5496 }
5497 vim_free(xline);
5498
5499 return viminfo_readline(virp);
5500}
5501
5502 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005503write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504{
5505 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005507 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005509 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511 if (find_viminfo_parameter('%') == NULL)
5512 return;
5513
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005514 /* Without a number -1 is returned: do all buffers. */
5515 max_buffers = get_viminfo_parameter('%');
5516
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005518#define LINE_BUF_LEN (MAXPATHL + 40)
5519 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 if (line == NULL)
5521 return;
5522
Bram Moolenaarf740b292006-02-16 22:11:02 +00005523 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005526 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005527 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 {
5529 if (buf->b_fname == NULL
5530 || !buf->b_p_bl
5531#ifdef FEAT_QUICKFIX
5532 || bt_quickfix(buf)
5533#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005534#ifdef FEAT_TERMINAL
5535 || bt_terminal(buf)
5536#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 || removable(buf->b_ffname))
5538 continue;
5539
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005540 if (max_buffers-- == 0)
5541 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 putc('%', fp);
5543 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005544 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 (long)buf->b_last_cursor.lnum,
5546 buf->b_last_cursor.col);
5547 viminfo_writestring(fp, line);
5548 }
5549 vim_free(line);
5550}
5551#endif
5552
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005553/*
5554 * Return TRUE if "buf" is the quickfix buffer.
5555 */
5556 int
5557bt_quickfix(buf_T *buf)
5558{
5559 return buf != NULL && buf->b_p_bt[0] == 'q';
5560}
5561
5562/*
5563 * Return TRUE if "buf" is a terminal buffer.
5564 */
5565 int
5566bt_terminal(buf_T *buf)
5567{
5568 return buf != NULL && buf->b_p_bt[0] == 't';
5569}
5570
5571/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005572 * Return TRUE if "buf" is a help buffer.
5573 */
5574 int
5575bt_help(buf_T *buf)
5576{
5577 return buf != NULL && buf->b_help;
5578}
5579
5580/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005581 * Return TRUE if "buf" is a "nofile", "acwrite" or "terminal" buffer.
5582 * This means the buffer name is not a file name.
5583 */
5584 int
5585bt_nofile(buf_T *buf)
5586{
5587 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5588 || buf->b_p_bt[0] == 'a'
5589 || buf->b_p_bt[0] == 't');
5590}
5591
5592/*
5593 * Return TRUE if "buf" is a "nowrite", "nofile" or "terminal" buffer.
5594 */
5595 int
5596bt_dontwrite(buf_T *buf)
5597{
5598 return buf != NULL && (buf->b_p_bt[0] == 'n' || buf->b_p_bt[0] == 't');
5599}
5600
5601 int
5602bt_dontwrite_msg(buf_T *buf)
5603{
5604 if (bt_dontwrite(buf))
5605 {
5606 EMSG(_("E382: Cannot write, 'buftype' option is set"));
5607 return TRUE;
5608 }
5609 return FALSE;
5610}
5611
5612/*
5613 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5614 * and 'bufhidden'.
5615 */
5616 int
5617buf_hide(buf_T *buf)
5618{
5619 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5620 switch (buf->b_p_bh[0])
5621 {
5622 case 'u': /* "unload" */
5623 case 'w': /* "wipe" */
5624 case 'd': return FALSE; /* "delete" */
5625 case 'h': return TRUE; /* "hide" */
5626 }
5627 return (p_hid || cmdmod.hide);
5628}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629
5630/*
5631 * Return special buffer name.
5632 * Returns NULL when the buffer has a normal file name.
5633 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005634 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005635buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005637#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005639 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005640 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005641 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005642
5643 /*
5644 * For location list window, w_llist_ref points to the location list.
5645 * For quickfix window, w_llist_ref is NULL.
5646 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005647 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005648 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005649 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005650 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005653
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005655 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 if (bt_nofile(buf))
5657 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005658#ifdef FEAT_TERMINAL
5659 if (buf->b_term != NULL)
5660 return term_get_status_text(buf->b_term);
5661#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005662 if (buf->b_fname != NULL)
5663 return buf->b_fname;
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005664 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005666
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005668 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 return NULL;
5670}
5671
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005672#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005673 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5674 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005675# define SWITCH_TO_WIN
5676
5677/*
5678 * Find a window that contains "buf" and switch to it.
5679 * If there is no such window, use the current window and change "curbuf".
5680 * Caller must initialize save_curbuf to NULL.
5681 * restore_win_for_buf() MUST be called later!
5682 */
5683 void
5684switch_to_win_for_buf(
5685 buf_T *buf,
5686 win_T **save_curwinp,
5687 tabpage_T **save_curtabp,
5688 bufref_T *save_curbuf)
5689{
5690 win_T *wp;
5691 tabpage_T *tp;
5692
5693 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5694 switch_buffer(save_curbuf, buf);
5695 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5696 {
5697 restore_win(*save_curwinp, *save_curtabp, TRUE);
5698 switch_buffer(save_curbuf, buf);
5699 }
5700}
5701
5702 void
5703restore_win_for_buf(
5704 win_T *save_curwin,
5705 tabpage_T *save_curtab,
5706 bufref_T *save_curbuf)
5707{
5708 if (save_curbuf->br_buf == NULL)
5709 restore_win(save_curwin, save_curtab, TRUE);
5710 else
5711 restore_buffer(save_curbuf);
5712}
5713#endif
5714
Bram Moolenaar4033c552017-09-16 20:54:51 +02005715#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005716/*
5717 * Find a window for buffer "buf".
5718 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5719 * If not found FAIL is returned.
5720 */
5721 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005722find_win_for_buf(
5723 buf_T *buf,
5724 win_T **wp,
5725 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005726{
5727 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5728 if ((*wp)->w_buffer == buf)
5729 goto win_found;
5730 return FAIL;
5731win_found:
5732 return OK;
5733}
5734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735
5736#if defined(FEAT_SIGNS) || defined(PROTO)
5737/*
5738 * Insert the sign into the signlist.
5739 */
5740 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005741insert_sign(
5742 buf_T *buf, /* buffer to store sign in */
5743 signlist_T *prev, /* previous sign entry */
5744 signlist_T *next, /* next sign entry */
5745 int id, /* sign ID */
5746 linenr_T lnum, /* line number which gets the mark */
5747 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748{
5749 signlist_T *newsign;
5750
5751 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5752 if (newsign != NULL)
5753 {
5754 newsign->id = id;
5755 newsign->lnum = lnum;
5756 newsign->typenr = typenr;
5757 newsign->next = next;
5758#ifdef FEAT_NETBEANS_INTG
5759 newsign->prev = prev;
5760 if (next != NULL)
5761 next->prev = newsign;
5762#endif
5763
5764 if (prev == NULL)
5765 {
5766 /* When adding first sign need to redraw the windows to create the
5767 * column for signs. */
5768 if (buf->b_signlist == NULL)
5769 {
5770 redraw_buf_later(buf, NOT_VALID);
5771 changed_cline_bef_curs();
5772 }
5773
5774 /* first sign in signlist */
5775 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005776#ifdef FEAT_NETBEANS_INTG
5777 if (netbeans_active())
5778 buf->b_has_sign_column = TRUE;
5779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 }
5781 else
5782 prev->next = newsign;
5783 }
5784}
5785
5786/*
5787 * Add the sign into the signlist. Find the right spot to do it though.
5788 */
5789 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005790buf_addsign(
5791 buf_T *buf, /* buffer to store sign in */
5792 int id, /* sign ID */
5793 linenr_T lnum, /* line number which gets the mark */
5794 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795{
5796 signlist_T *sign; /* a sign in the signlist */
5797 signlist_T *prev; /* the previous sign */
5798
5799 prev = NULL;
5800 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5801 {
5802 if (lnum == sign->lnum && id == sign->id)
5803 {
5804 sign->typenr = typenr;
5805 return;
5806 }
5807 else if (
5808#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5809 id < 0 &&
5810#endif
5811 lnum < sign->lnum)
5812 {
5813#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5814 /* XXX - GRP: Is this because of sign slide problem? Or is it
5815 * really needed? Or is it because we allow multiple signs per
5816 * line? If so, should I add that feature to FEAT_SIGNS?
5817 */
5818 while (prev != NULL && prev->lnum == lnum)
5819 prev = prev->prev;
5820 if (prev == NULL)
5821 sign = buf->b_signlist;
5822 else
5823 sign = prev->next;
5824#endif
5825 insert_sign(buf, prev, sign, id, lnum, typenr);
5826 return;
5827 }
5828 prev = sign;
5829 }
5830#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5831 /* XXX - GRP: See previous comment */
5832 while (prev != NULL && prev->lnum == lnum)
5833 prev = prev->prev;
5834 if (prev == NULL)
5835 sign = buf->b_signlist;
5836 else
5837 sign = prev->next;
5838#endif
5839 insert_sign(buf, prev, sign, id, lnum, typenr);
5840
5841 return;
5842}
5843
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005844/*
5845 * For an existing, placed sign "markId" change the type to "typenr".
5846 * Returns the line number of the sign, or zero if the sign is not found.
5847 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005848 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005849buf_change_sign_type(
5850 buf_T *buf, /* buffer to store sign in */
5851 int markId, /* sign ID */
5852 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853{
5854 signlist_T *sign; /* a sign in the signlist */
5855
5856 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5857 {
5858 if (sign->id == markId)
5859 {
5860 sign->typenr = typenr;
5861 return sign->lnum;
5862 }
5863 }
5864
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005865 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866}
5867
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005868 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005869buf_getsigntype(
5870 buf_T *buf,
5871 linenr_T lnum,
5872 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873{
5874 signlist_T *sign; /* a sign in a b_signlist */
5875
5876 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5877 if (sign->lnum == lnum
5878 && (type == SIGN_ANY
5879# ifdef FEAT_SIGN_ICONS
5880 || (type == SIGN_ICON
5881 && sign_get_image(sign->typenr) != NULL)
5882# endif
5883 || (type == SIGN_TEXT
5884 && sign_get_text(sign->typenr) != NULL)
5885 || (type == SIGN_LINEHL
5886 && sign_get_attr(sign->typenr, TRUE) != 0)))
5887 return sign->typenr;
5888 return 0;
5889}
5890
5891
5892 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005893buf_delsign(
5894 buf_T *buf, /* buffer sign is stored in */
5895 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896{
5897 signlist_T **lastp; /* pointer to pointer to current sign */
5898 signlist_T *sign; /* a sign in a b_signlist */
5899 signlist_T *next; /* the next sign in a b_signlist */
5900 linenr_T lnum; /* line number whose sign was deleted */
5901
5902 lastp = &buf->b_signlist;
5903 lnum = 0;
5904 for (sign = buf->b_signlist; sign != NULL; sign = next)
5905 {
5906 next = sign->next;
5907 if (sign->id == id)
5908 {
5909 *lastp = next;
5910#ifdef FEAT_NETBEANS_INTG
5911 if (next != NULL)
5912 next->prev = sign->prev;
5913#endif
5914 lnum = sign->lnum;
5915 vim_free(sign);
5916 break;
5917 }
5918 else
5919 lastp = &sign->next;
5920 }
5921
5922 /* When deleted the last sign need to redraw the windows to remove the
5923 * sign column. */
5924 if (buf->b_signlist == NULL)
5925 {
5926 redraw_buf_later(buf, NOT_VALID);
5927 changed_cline_bef_curs();
5928 }
5929
5930 return lnum;
5931}
5932
5933
5934/*
5935 * Find the line number of the sign with the requested id. If the sign does
5936 * not exist, return 0 as the line number. This will still let the correct file
5937 * get loaded.
5938 */
5939 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005940buf_findsign(
5941 buf_T *buf, /* buffer to store sign in */
5942 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943{
5944 signlist_T *sign; /* a sign in the signlist */
5945
5946 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5947 if (sign->id == id)
5948 return sign->lnum;
5949
5950 return 0;
5951}
5952
5953 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005954buf_findsign_id(
5955 buf_T *buf, /* buffer whose sign we are searching for */
5956 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957{
5958 signlist_T *sign; /* a sign in the signlist */
5959
5960 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5961 if (sign->lnum == lnum)
5962 return sign->id;
5963
5964 return 0;
5965}
5966
5967
5968# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5969/* see if a given type of sign exists on a specific line */
5970 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005971buf_findsigntype_id(
5972 buf_T *buf, /* buffer whose sign we are searching for */
5973 linenr_T lnum, /* line number of sign */
5974 int typenr) /* sign type number */
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 && sign->typenr == typenr)
5980 return sign->id;
5981
5982 return 0;
5983}
5984
5985
5986# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5987/* return the number of icons on the given line */
5988 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005989buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990{
5991 signlist_T *sign; /* a sign in the signlist */
5992 int count = 0;
5993
5994 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5995 if (sign->lnum == lnum)
5996 if (sign_get_image(sign->typenr) != NULL)
5997 count++;
5998
5999 return count;
6000}
6001# endif /* FEAT_SIGN_ICONS */
6002# endif /* FEAT_NETBEANS_INTG */
6003
6004
6005/*
6006 * Delete signs in buffer "buf".
6007 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02006008 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006009buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010{
6011 signlist_T *next;
6012
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006013 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02006014 * sign column. Not when curwin is NULL (this means we're exiting). */
6015 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006016 {
6017 redraw_buf_later(buf, NOT_VALID);
6018 changed_cline_bef_curs();
6019 }
6020
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 while (buf->b_signlist != NULL)
6022 {
6023 next = buf->b_signlist->next;
6024 vim_free(buf->b_signlist);
6025 buf->b_signlist = next;
6026 }
6027}
6028
6029/*
6030 * Delete all signs in all buffers.
6031 */
6032 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006033buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034{
6035 buf_T *buf; /* buffer we are checking for signs */
6036
Bram Moolenaar29323592016-07-24 22:04:11 +02006037 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040}
6041
6042/*
6043 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6044 */
6045 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006046sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047{
6048 buf_T *buf;
6049 signlist_T *p;
6050 char lbuf[BUFSIZ];
6051
6052 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6053 msg_putchar('\n');
6054 if (rbuf == NULL)
6055 buf = firstbuf;
6056 else
6057 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006058 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 {
6060 if (buf->b_signlist != NULL)
6061 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006062 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006063 MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 msg_putchar('\n');
6065 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006066 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006068 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6070 MSG_PUTS(lbuf);
6071 msg_putchar('\n');
6072 }
6073 if (rbuf != NULL)
6074 break;
6075 buf = buf->b_next;
6076 }
6077}
6078
6079/*
6080 * Adjust a placed sign for inserted/deleted lines.
6081 */
6082 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006083sign_mark_adjust(
6084 linenr_T line1,
6085 linenr_T line2,
6086 long amount,
6087 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006088{
6089 signlist_T *sign; /* a sign in a b_signlist */
6090
6091 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6092 {
6093 if (sign->lnum >= line1 && sign->lnum <= line2)
6094 {
6095 if (amount == MAXLNUM)
6096 sign->lnum = line1;
6097 else
6098 sign->lnum += amount;
6099 }
6100 else if (sign->lnum > line2)
6101 sign->lnum += amount_after;
6102 }
6103}
6104#endif /* FEAT_SIGNS */
6105
6106/*
6107 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6108 */
6109 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006110set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111{
6112 if (on != curbuf->b_p_bl)
6113 {
6114 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 if (on)
6116 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6117 else
6118 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006119 }
6120}
6121
6122/*
6123 * Read the file for "buf" again and check if the contents changed.
6124 * Return TRUE if it changed or this could not be checked.
6125 */
6126 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006127buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128{
6129 buf_T *newbuf;
6130 int differ = TRUE;
6131 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 exarg_T ea;
6134
6135 /* Allocate a buffer without putting it in the buffer list. */
6136 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6137 if (newbuf == NULL)
6138 return TRUE;
6139
6140 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6141 if (prep_exarg(&ea, buf) == FAIL)
6142 {
6143 wipe_buffer(newbuf, FALSE);
6144 return TRUE;
6145 }
6146
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 /* set curwin/curbuf to buf and save a few things */
6148 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149
Bram Moolenaar4770d092006-01-12 23:22:24 +00006150 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 && readfile(buf->b_ffname, buf->b_fname,
6152 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6153 &ea, READ_NEW | READ_DUMMY) == OK)
6154 {
6155 /* compare the two files line by line */
6156 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6157 {
6158 differ = FALSE;
6159 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6160 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6161 {
6162 differ = TRUE;
6163 break;
6164 }
6165 }
6166 }
6167 vim_free(ea.cmd);
6168
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 /* restore curwin/curbuf and a few other things */
6170 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171
6172 if (curbuf != newbuf) /* safety check */
6173 wipe_buffer(newbuf, FALSE);
6174
6175 return differ;
6176}
6177
6178/*
6179 * Wipe out a buffer and decrement the last buffer number if it was used for
6180 * this buffer. Call this to wipe out a temp buffer that does not contain any
6181 * marks.
6182 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006184wipe_buffer(
6185 buf_T *buf,
6186 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187{
6188 if (buf->b_fnum == top_file_num - 1)
6189 --top_file_num;
6190
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006192 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006193
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006194 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006195
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006197 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198}