blob: 35dd65fc9c33c774c7c1be725f5fe132a64c348c [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010030static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020034static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
35static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
36static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#endif
40#ifdef FEAT_TITLE
Bram Moolenaar84a93082018-06-16 22:58:15 +020041static int value_changed(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000042#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010043static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
44static void free_buffer(buf_T *);
45static void free_buffer_stuff(buf_T *buf, int free_options);
46static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000047
48#ifdef UNIX
49# define dev_T dev_t
50#else
51# define dev_T unsigned
52#endif
53
Bram Moolenaar4033c552017-09-16 20:54:51 +020054#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020055static char *msg_loclist = N_("[Location List]");
56static char *msg_qflist = N_("[Quickfix List]");
57#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010058static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020059
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020060/* Number of times free_buffer() was called. */
61static int buf_free_count = 0;
62
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020063/* Read data from buffer for retrying. */
64 static int
65read_buffer(
66 int read_stdin, /* read file from stdin, otherwise fifo */
67 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
68 int flags) /* extra flags for readfile() */
69{
70 int retval = OK;
71 linenr_T line_count;
72
73 /*
74 * Read from the buffer which the text is already filled in and append at
75 * the end. This makes it possible to retry when 'fileformat' or
76 * 'fileencoding' was guessed wrong.
77 */
78 line_count = curbuf->b_ml.ml_line_count;
79 retval = readfile(
80 read_stdin ? NULL : curbuf->b_ffname,
81 read_stdin ? NULL : curbuf->b_fname,
82 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
83 flags | READ_BUFFER);
84 if (retval == OK)
85 {
86 /* Delete the binary lines. */
87 while (--line_count >= 0)
88 ml_delete((linenr_T)1, FALSE);
89 }
90 else
91 {
92 /* Delete the converted lines. */
93 while (curbuf->b_ml.ml_line_count > line_count)
94 ml_delete(line_count, FALSE);
95 }
96 /* Put the cursor on the first line. */
97 curwin->w_cursor.lnum = 1;
98 curwin->w_cursor.col = 0;
99
100 if (read_stdin)
101 {
102 /* Set or reset 'modified' before executing autocommands, so that
103 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100104 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200105 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100106 else if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200107 unchanged(curbuf, FALSE);
108
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100109 if (retval == OK)
110 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100111#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100112 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100113 curbuf, &retval);
114#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100115 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200116#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100117 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200118 }
119 return retval;
120}
121
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200123 * Open current buffer, that is: open the memfile and read the file into
124 * memory.
125 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 */
127 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100128open_buffer(
129 int read_stdin, /* read file from stdin */
130 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
131 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132{
133 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200134 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100135#ifdef FEAT_SYN_HL
136 long old_tw = curbuf->b_p_tw;
137#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200138 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
140 /*
141 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
142 * When re-entering the same buffer, it should not change, because the
143 * user may have reset the flag by hand.
144 */
145 if (readonlymode && curbuf->b_ffname != NULL
146 && (curbuf->b_flags & BF_NEVERLOADED))
147 curbuf->b_p_ro = TRUE;
148
Bram Moolenaar4770d092006-01-12 23:22:24 +0000149 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 {
151 /*
152 * There MUST be a memfile, otherwise we can't do anything
153 * If we can't create one for the current buffer, take another buffer
154 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100155 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200156 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 if (curbuf->b_ml.ml_mfp != NULL)
158 break;
159 /*
160 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000161 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 */
163 if (curbuf == NULL)
164 {
165 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
166 getout(2);
167 }
168 EMSG(_("E83: Cannot allocate buffer, using other one..."));
169 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100170#ifdef FEAT_SYN_HL
171 if (old_tw != curbuf->b_p_tw)
172 check_colorcolumn(curwin);
173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 return FAIL;
175 }
176
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 /* The autocommands in readfile() may change the buffer, but only AFTER
178 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200179 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
182 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100183 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185 if (curbuf->b_ffname != NULL
186#ifdef FEAT_NETBEANS_INTG
187 && netbeansReadFile
188#endif
189 )
190 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100191 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200192#ifdef UNIX
193 int save_bin = curbuf->b_p_bin;
194 int perm;
195#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196#ifdef FEAT_NETBEANS_INTG
197 int oldFire = netbeansFireChanges;
198
199 netbeansFireChanges = 0;
200#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200201#ifdef UNIX
202 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200203 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200204 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200205# ifdef OPEN_CHR_FILES
206 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
207# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200208 ))
209 read_fifo = TRUE;
210 if (read_fifo)
211 curbuf->b_p_bin = TRUE;
212#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100213 if (shortmess(SHM_FILEINFO))
214 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200216 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200217 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
218#ifdef UNIX
219 if (read_fifo)
220 {
221 curbuf->b_p_bin = save_bin;
222 if (retval == OK)
223 retval = read_buffer(FALSE, eap, flags);
224 }
225#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100226 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227#ifdef FEAT_NETBEANS_INTG
228 netbeansFireChanges = oldFire;
229#endif
230 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200231 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 fix_help_buffer();
233 }
234 else if (read_stdin)
235 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200236 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238 /*
239 * First read the text in binary mode into the buffer.
240 * Then read from that same buffer and append at the end. This makes
241 * it possible to retry when 'fileformat' or 'fileencoding' was
242 * guessed wrong.
243 */
244 curbuf->b_p_bin = TRUE;
245 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200246 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
247 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248 curbuf->b_p_bin = save_bin;
249 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200250 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 }
252
253 /* if first time loading this buffer, init b_chartab[] */
254 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100255 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100257#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100258 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100259#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261
262 /*
263 * Set/reset the Changed flag first, autocmds may change the buffer.
264 * Apply the automatic commands, before processing the modelines.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200265 * So the modelines have priority over autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 */
267 /* When reading stdin, the buffer contents always needs writing, so set
268 * the changed flag. Unless in readonly mode: "ls | gview -".
269 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000270 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100272#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000275 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100277 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 unchanged(curbuf, FALSE);
279 save_file_ff(curbuf); /* keep this fileformat */
280
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100281 /* Set last_changedtick to avoid triggering a TextChanged autocommand right
282 * after it was added. */
283 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
284#ifdef FEAT_INS_EXPAND
285 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
286#endif
287
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 /* require "!" to overwrite the file, because it wasn't read completely */
289#ifdef FEAT_EVAL
290 if (aborting())
291#else
292 if (got_int)
293#endif
294 curbuf->b_flags |= BF_READERR;
295
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000296#ifdef FEAT_FOLDING
297 /* Need to update automatic folding. Do this before the autocommands,
298 * they may use the fold info. */
299 foldUpdateAll(curwin);
300#endif
301
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 /* need to set w_topline, unless some autocommand already did that. */
303 if (!(curwin->w_valid & VALID_TOPLINE))
304 {
305 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100306#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100308#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100310#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100312#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#endif
315
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100316 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 /*
319 * The autocommands may have changed the current buffer. Apply the
320 * modelines to the correct buffer, if it still exists and is loaded.
321 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200322 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 {
324 aco_save_T aco;
325
326 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200327 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000328 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
330
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100331#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100333 &retval);
334#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337
338 /* restore curwin/curbuf and a few other things */
339 aucmd_restbuf(&aco);
340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 }
342
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 return retval;
344}
345
346/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200347 * Store "buf" in "bufref" and set the free count.
348 */
349 void
350set_bufref(bufref_T *bufref, buf_T *buf)
351{
352 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200353 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200354 bufref->br_buf_free_count = buf_free_count;
355}
356
357/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200358 * Return TRUE if "bufref->br_buf" points to the same buffer as when
359 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200360 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200361 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
362 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200363 */
364 int
365bufref_valid(bufref_T *bufref)
366{
367 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200368 ? TRUE : buf_valid(bufref->br_buf)
369 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200370}
371
372/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200374 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 */
376 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100377buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378{
379 buf_T *bp;
380
Bram Moolenaar82404332016-07-10 17:00:38 +0200381 /* Assume that we more often have a recent buffer, start with the last
382 * one. */
383 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 if (bp == buf)
385 return TRUE;
386 return FALSE;
387}
388
389/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200390 * A hash table used to quickly lookup a buffer by its number.
391 */
392static hashtab_T buf_hashtab;
393
394 static void
395buf_hashtab_add(buf_T *buf)
396{
397 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
398 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
399 EMSG(_("E931: Buffer cannot be registered"));
400}
401
402 static void
403buf_hashtab_remove(buf_T *buf)
404{
405 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
406
407 if (!HASHITEM_EMPTY(hi))
408 hash_remove(&buf_hashtab, hi);
409}
410
Bram Moolenaar94f01952018-09-01 15:30:03 +0200411/*
412 * Return TRUE when buffer "buf" can be unloaded.
413 * Give an error message and return FALSE when the buffer is locked or the
414 * screen is being redrawn and the buffer is in a window.
415 */
416 static int
417can_unload_buffer(buf_T *buf)
418{
419 int can_unload = !buf->b_locked;
420
421 if (can_unload && updating_screen)
422 {
423 win_T *wp;
424
425 FOR_ALL_WINDOWS(wp)
426 if (wp->w_buffer == buf)
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200427 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200428 can_unload = FALSE;
Bram Moolenaar9cea87c2018-09-21 16:59:45 +0200429 break;
430 }
Bram Moolenaar94f01952018-09-01 15:30:03 +0200431 }
432 if (!can_unload)
433 EMSG(_("E937: Attempt to delete a buffer that is in use"));
434 return can_unload;
435}
Bram Moolenaara997b452018-04-17 23:24:06 +0200436
Bram Moolenaar480778b2016-07-14 22:09:39 +0200437/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 * Close the link to a buffer.
439 * "action" is used when there is no longer a window for the buffer.
440 * It can be:
441 * 0 buffer becomes hidden
442 * DOBUF_UNLOAD buffer is unloaded
443 * DOBUF_DELETE buffer is unloaded and removed from buffer list
444 * DOBUF_WIPE buffer is unloaded and really deleted
445 * When doing all but the first one on the current buffer, the caller should
446 * get a new buffer very soon!
447 *
448 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100449 *
450 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
451 * cause there to be only one window with this buffer. e.g. when ":quit" is
452 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 */
454 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100455close_buffer(
456 win_T *win, /* if not NULL, set b_last_cursor */
457 buf_T *buf,
458 int action,
459 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100462 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200463 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100464 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200465 win_T *the_curwin = curwin;
466 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 int unload_buf = (action != 0);
468 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
469 int wipe_buf = (action == DOBUF_WIPE);
470
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200471 /*
472 * Force unloading or deleting when 'bufhidden' says so.
473 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
474 * "hide" (otherwise we could never free or delete a buffer).
475 */
476 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
477 {
478 del_buf = TRUE;
479 unload_buf = TRUE;
480 }
481 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
482 {
483 del_buf = TRUE;
484 unload_buf = TRUE;
485 wipe_buf = TRUE;
486 }
487 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
488 unload_buf = TRUE;
489
Bram Moolenaar94053a52017-08-01 21:44:33 +0200490#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200491 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200492 {
493 if (term_job_running(buf->b_term))
494 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200495 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200496 {
Bram Moolenaar94f01952018-09-01 15:30:03 +0200497 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +0200498 return;
Bram Moolenaar94f01952018-09-01 15:30:03 +0200499
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200500 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200501 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200502 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200503 else
504 {
505 /* The job keeps running, hide the buffer. */
506 del_buf = FALSE;
507 unload_buf = FALSE;
508 }
509 }
510 else
511 {
512 /* A terminal buffer is wiped out if the job has finished. */
513 del_buf = TRUE;
514 unload_buf = TRUE;
515 wipe_buf = TRUE;
516 }
517 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200518#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200520 /* Disallow deleting the buffer when it is locked (already being closed or
521 * halfway a command that relies on it). Unloading is allowed. */
Bram Moolenaar94f01952018-09-01 15:30:03 +0200522 if ((del_buf || wipe_buf) && !can_unload_buffer(buf))
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200523 return;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200524
Bram Moolenaar4033c552017-09-16 20:54:51 +0200525 /* check no autocommands closed the window */
526 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 {
528 /* Set b_last_cursor when closing the last window for the buffer.
529 * Remember the last cursor position and window options of the buffer.
530 * This used to be only for the current window, but then options like
531 * 'foldmethod' may be lost with a ":only" command. */
532 if (buf->b_nwindows == 1)
533 set_last_cursor(win);
534 buflist_setfpos(buf, win,
535 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
536 win->w_cursor.col, TRUE);
537 }
538
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200539 set_bufref(&bufref, buf);
540
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 /* When the buffer is no longer in a window, trigger BufWinLeave */
542 if (buf->b_nwindows == 1)
543 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200544 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200545 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
546 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200547 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100548 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200549 /* Autocommands deleted the buffer. */
550aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100551 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100553 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200554 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200555 if (abort_if_last && one_window())
556 /* Autocommands made this the only window. */
557 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558
559 /* When the buffer becomes hidden, but is not unloaded, trigger
560 * BufHidden */
561 if (!unload_buf)
562 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200563 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200564 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
565 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200566 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200567 /* Autocommands deleted the buffer. */
568 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200569 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200570 if (abort_if_last && one_window())
571 /* Autocommands made this the only window. */
572 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100574#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 if (aborting()) /* autocmds may abort script processing */
576 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200579
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200580 /* If the buffer was in curwin and the window has changed, go back to that
581 * window, if it still exists. This avoids that ":edit x" triggering a
582 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
583 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
584 {
585 block_autocmds();
586 goto_tabpage_win(the_curtab, the_curwin);
587 unblock_autocmds();
588 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200589
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591
592 /* decrease the link count from windows (unless not in any window) */
593 if (buf->b_nwindows > 0)
594 --buf->b_nwindows;
595
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100596#ifdef FEAT_DIFF
597 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100598 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100599#endif
600
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 /* Return when a window is displaying the buffer or when it's not
602 * unloaded. */
603 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
606 /* Always remove the buffer when there is no file name. */
607 if (buf->b_ffname == NULL)
608 del_buf = TRUE;
609
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200610 /* When closing the current buffer stop Visual mode before freeing
611 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200612 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200613#if defined(EXITFREE)
614 && !entered_free_all_mem
615#endif
616 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200617 end_visual_mode();
618
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 /*
620 * Free all things allocated for this buffer.
621 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
622 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 /* Remember if we are closing the current buffer. Restore the number of
624 * windows, so that autocommands in buf_freeall() don't get confused. */
625 is_curbuf = (buf == curbuf);
626 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200628 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200631 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100633#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000634 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 /*
639 * It's possible that autocommands change curbuf to the one being deleted.
640 * This might cause the previous curbuf to be deleted unexpectedly. But
641 * in some cases it's OK to delete the curbuf, because a new one is
642 * obtained anyway. Therefore only return if curbuf changed to the
643 * deleted buffer.
644 */
645 if (buf == curbuf && !is_curbuf)
646 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200647
Bram Moolenaar4033c552017-09-16 20:54:51 +0200648 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200649 win->w_buffer = NULL; /* make sure we don't use the buffer now */
650
651 /* Autocommands may have opened or closed windows for this buffer.
652 * Decrement the count for the close we do here. */
653 if (buf->b_nwindows > 0)
654 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 /*
657 * Remove the buffer from the list.
658 */
659 if (wipe_buf)
660 {
661#ifdef FEAT_SUN_WORKSHOP
662 if (usingSunWorkShop)
663 workshop_file_closed_lineno((char *)buf->b_ffname,
664 (int)buf->b_last_cursor.lnum);
665#endif
666 vim_free(buf->b_ffname);
667 vim_free(buf->b_sfname);
668 if (buf->b_prev == NULL)
669 firstbuf = buf->b_next;
670 else
671 buf->b_prev->b_next = buf->b_next;
672 if (buf->b_next == NULL)
673 lastbuf = buf->b_prev;
674 else
675 buf->b_next->b_prev = buf->b_prev;
676 free_buffer(buf);
677 }
678 else
679 {
680 if (del_buf)
681 {
682 /* Free all internal variables and reset option values, to make
683 * ":bdel" compatible with Vim 5.7. */
684 free_buffer_stuff(buf, TRUE);
685
686 /* Make it look like a new buffer. */
687 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
688
689 /* Init the options when loaded again. */
690 buf->b_p_initialized = FALSE;
691 }
692 buf_clear_file(buf);
693 if (del_buf)
694 buf->b_p_bl = FALSE;
695 }
696}
697
698/*
699 * Make buffer not contain a file.
700 */
701 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100702buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703{
704 buf->b_ml.ml_line_count = 1;
705 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 buf->b_p_eol = TRUE;
708 buf->b_start_eol = TRUE;
709#ifdef FEAT_MBYTE
710 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000711 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712#endif
713 buf->b_ml.ml_mfp = NULL;
714 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
715#ifdef FEAT_NETBEANS_INTG
716 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717#endif
718}
719
720/*
721 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200722 * the file. Careful: get here with "curwin" NULL when exiting.
723 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200724 * BFA_DEL buffer is going to be deleted
725 * BFA_WIPE buffer is going to be wiped out
726 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100729buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200732 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200733 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200734 win_T *the_curwin = curwin;
735 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736
Bram Moolenaar5a497892016-09-03 16:29:04 +0200737 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200738 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200739 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200740 if (buf->b_ml.ml_mfp != NULL)
741 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200742 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
743 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200744 && !bufref_valid(&bufref))
745 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200746 return;
747 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200748 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200750 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
751 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200752 && !bufref_valid(&bufref))
753 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 return;
755 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200756 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200758 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
759 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200760 && !bufref_valid(&bufref))
761 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 return;
763 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200764 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200765
Bram Moolenaar5a497892016-09-03 16:29:04 +0200766 /* If the buffer was in curwin and the window has changed, go back to that
767 * window, if it still exists. This avoids that ":edit x" triggering a
768 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
769 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
770 {
771 block_autocmds();
772 goto_tabpage_win(the_curtab, the_curwin);
773 unblock_autocmds();
774 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200775
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100776#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000777 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780
781 /*
782 * It's possible that autocommands change curbuf to the one being deleted.
783 * This might cause curbuf to be deleted unexpectedly. But in some cases
784 * it's OK to delete the curbuf, because a new one is obtained anyway.
785 * Therefore only return if curbuf changed to the deleted buffer.
786 */
787 if (buf == curbuf && !is_curbuf)
788 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789#ifdef FEAT_DIFF
790 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
791#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200792#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100793 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200794 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100795 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200796#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000797
798#ifdef FEAT_FOLDING
799 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000800 {
801 win_T *win;
802 tabpage_T *tp;
803
804 FOR_ALL_TAB_WINDOWS(tp, win)
805 if (win->w_buffer == buf)
806 clearFolding(win);
807 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000808#endif
809
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810#ifdef FEAT_TCL
811 tcl_buffer_free(buf);
812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 ml_close(buf, TRUE); /* close and delete the memline/memfile */
814 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200815 if ((flags & BFA_KEEP_UNDO) == 0)
816 {
817 u_blockfree(buf); /* free the memory allocated for undo */
818 u_clearall(buf); /* reset all undo information */
819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200821 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000823 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824}
825
826/*
827 * Free a buffer structure and the things it contains related to the buffer
828 * itself (not the file, that must have been done already).
829 */
830 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100831free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200833 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200835#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200836 /* b:changedtick uses an item in buf_T, remove it now */
837 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200838 unref_var_dict(buf->b_vars);
839#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200840#ifdef FEAT_LUA
841 lua_buffer_free(buf);
842#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000843#ifdef FEAT_MZSCHEME
844 mzscheme_buffer_free(buf);
845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846#ifdef FEAT_PERL
847 perl_buf_free(buf);
848#endif
849#ifdef FEAT_PYTHON
850 python_buffer_free(buf);
851#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200852#ifdef FEAT_PYTHON3
853 python3_buffer_free(buf);
854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855#ifdef FEAT_RUBY
856 ruby_buffer_free(buf);
857#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200858#ifdef FEAT_JOB_CHANNEL
859 channel_buffer_free(buf);
860#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200861#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200862 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200863#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200864#ifdef FEAT_JOB_CHANNEL
865 vim_free(buf->b_prompt_text);
866 free_callback(buf->b_prompt_callback, buf->b_prompt_partial);
867#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200868
869 buf_hashtab_remove(buf);
870
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200871 aubuflocal_remove(buf);
872
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200873 if (autocmd_busy)
874 {
875 /* Do not free the buffer structure while autocommands are executing,
876 * it's still needed. Free it when autocmd_busy is reset. */
877 buf->b_next = au_pending_free_buf;
878 au_pending_free_buf = buf;
879 }
880 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200881 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882}
883
884/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100885 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100886 */
887 static void
888init_changedtick(buf_T *buf)
889{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100890 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100891
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100892 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
893 di->di_tv.v_type = VAR_NUMBER;
894 di->di_tv.v_lock = VAR_FIXED;
895 di->di_tv.vval.v_number = 0;
896
Bram Moolenaar92769c32017-02-25 15:41:37 +0100897#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100898 STRCPY(buf->b_ct_di.di_key, "changedtick");
899 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100900#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100901}
902
903/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
905 */
906 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100907free_buffer_stuff(
908 buf_T *buf,
909 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910{
911 if (free_options)
912 {
913 clear_wininfo(buf); /* including window-local options */
914 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200915#ifdef FEAT_SPELL
916 ga_clear(&buf->b_s.b_langp);
917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 }
919#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100920 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100921 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100922
923 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
924 hash_init(&buf->b_vars->dv_hashtab);
925 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100926 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928#endif
929#ifdef FEAT_USR_CMDS
930 uc_clear(&buf->b_ucmds); /* clear local user commands */
931#endif
932#ifdef FEAT_SIGNS
933 buf_delete_signs(buf); /* delete any signs */
934#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000935#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200936 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000937#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938#ifdef FEAT_LOCALMAP
939 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
940 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
941#endif
942#ifdef FEAT_MBYTE
Bram Moolenaard23a8232018-02-10 18:45:26 +0100943 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944#endif
945}
946
947/*
948 * Free the b_wininfo list for buffer "buf".
949 */
950 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100951clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952{
953 wininfo_T *wip;
954
955 while (buf->b_wininfo != NULL)
956 {
957 wip = buf->b_wininfo;
958 buf->b_wininfo = wip->wi_next;
959 if (wip->wi_optset)
960 {
961 clear_winopt(&wip->wi_opt);
962#ifdef FEAT_FOLDING
963 deleteFoldRecurse(&wip->wi_folds);
964#endif
965 }
966 vim_free(wip);
967 }
968}
969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970/*
971 * Go to another buffer. Handles the result of the ATTENTION dialog.
972 */
973 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100974goto_buffer(
975 exarg_T *eap,
976 int start,
977 int dir,
978 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979{
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200980#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200981 bufref_T old_curbuf;
982
983 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984
985 swap_exists_action = SEA_DIALOG;
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
988 start, dir, count, eap->forceit);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200989#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
991 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200992# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000993 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000994
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000995 /* Reset the error/interrupt/exception state here so that
996 * aborting() returns FALSE when closing a window. */
997 enter_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200998# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000999
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001000 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 win_close(curwin, TRUE);
1002 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001003 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001004
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001005# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001006 /* Restore the error/interrupt/exception state if not discarded by a
1007 * new aborting error, interrupt, or uncaught exception. */
1008 leave_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001009# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 }
1011 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001012 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013#endif
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001014}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
Bram Moolenaare64ac772005-12-07 20:54:59 +00001016#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017/*
1018 * Handle the situation of swap_exists_action being set.
1019 * It is allowed for "old_curbuf" to be NULL or invalid.
1020 */
1021 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001022handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001024# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001025 cleanup_T cs;
1026# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001027# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001028 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001029# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001030 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001031
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 if (swap_exists_action == SEA_QUIT)
1033 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001034# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001035 /* Reset the error/interrupt/exception state here so that
1036 * aborting() returns FALSE when closing a buffer. */
1037 enter_cleanup(&cs);
1038# endif
1039
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 /* User selected Quit at ATTENTION prompt. Go back to previous
1041 * buffer. If that buffer is gone or the same as the current one,
1042 * open a new, empty buffer. */
1043 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001044 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001045 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001046 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1047 || old_curbuf->br_buf == curbuf)
1048 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1049 else
1050 buf = old_curbuf->br_buf;
1051 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001052 {
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001053 int old_msg_silent = msg_silent;
1054
1055 if (shortmess(SHM_FILEINFO))
1056 msg_silent = 1; // prevent fileinfo message
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001057 enter_buffer(buf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +02001058 // restore msg_silent, so that the command line will be shown
1059 msg_silent = old_msg_silent;
1060
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001061# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001062 if (old_tw != curbuf->b_p_tw)
1063 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001064# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001067
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001068# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001069 /* Restore the error/interrupt/exception state if not discarded by a
1070 * new aborting error, interrupt, or uncaught exception. */
1071 leave_cleanup(&cs);
1072# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 }
1074 else if (swap_exists_action == SEA_RECOVER)
1075 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001076# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001077 /* Reset the error/interrupt/exception state here so that
1078 * aborting() returns FALSE when closing a buffer. */
1079 enter_cleanup(&cs);
1080# endif
1081
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 /* User selected Recover at ATTENTION prompt. */
1083 msg_scroll = TRUE;
1084 ml_recover();
1085 MSG_PUTS("\n"); /* don't overwrite the last message */
1086 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001087 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001088
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001089# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001090 /* Restore the error/interrupt/exception state if not discarded by a
1091 * new aborting error, interrupt, or uncaught exception. */
1092 leave_cleanup(&cs);
1093# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 }
1095 swap_exists_action = SEA_NONE;
1096}
1097#endif
1098
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099/*
1100 * do_bufdel() - delete or unload buffer(s)
1101 *
1102 * addr_count == 0: ":bdel" - delete current buffer
1103 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1104 * buffer "end_bnr", then any other arguments.
1105 * addr_count == 2: ":N,N bdel" - delete buffers in range
1106 *
1107 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1108 * DOBUF_DEL (":bdel")
1109 *
1110 * Returns error message or NULL
1111 */
1112 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001113do_bufdel(
1114 int command,
1115 char_u *arg, /* pointer to extra arguments */
1116 int addr_count,
1117 int start_bnr, /* first buffer number in a range */
1118 int end_bnr, /* buffer nr or last buffer nr in a range */
1119 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120{
1121 int do_current = 0; /* delete current buffer? */
1122 int deleted = 0; /* number of buffers deleted */
1123 char_u *errormsg = NULL; /* return value */
1124 int bnr; /* buffer number */
1125 char_u *p;
1126
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 if (addr_count == 0)
1128 {
1129 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1130 }
1131 else
1132 {
1133 if (addr_count == 2)
1134 {
1135 if (*arg) /* both range and argument is not allowed */
1136 return (char_u *)_(e_trailing);
1137 bnr = start_bnr;
1138 }
1139 else /* addr_count == 1 */
1140 bnr = end_bnr;
1141
1142 for ( ;!got_int; ui_breakcheck())
1143 {
1144 /*
1145 * delete the current buffer last, otherwise when the
1146 * current buffer is deleted, the next buffer becomes
1147 * the current one and will be loaded, which may then
1148 * also be deleted, etc.
1149 */
1150 if (bnr == curbuf->b_fnum)
1151 do_current = bnr;
1152 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1153 forceit) == OK)
1154 ++deleted;
1155
1156 /*
1157 * find next buffer number to delete/unload
1158 */
1159 if (addr_count == 2)
1160 {
1161 if (++bnr > end_bnr)
1162 break;
1163 }
1164 else /* addr_count == 1 */
1165 {
1166 arg = skipwhite(arg);
1167 if (*arg == NUL)
1168 break;
1169 if (!VIM_ISDIGIT(*arg))
1170 {
1171 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001172 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1173 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 if (bnr < 0) /* failed */
1175 break;
1176 arg = p;
1177 }
1178 else
1179 bnr = getdigits(&arg);
1180 }
1181 }
1182 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1183 FORWARD, do_current, forceit) == OK)
1184 ++deleted;
1185
1186 if (deleted == 0)
1187 {
1188 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001189 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001191 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001193 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 errormsg = IObuff;
1195 }
1196 else if (deleted >= p_report)
1197 {
1198 if (command == DOBUF_UNLOAD)
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001199 smsg((char_u *)NGETTEXT("%d buffer unloaded",
1200 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 else if (command == DOBUF_DEL)
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001202 smsg((char_u *)NGETTEXT("%d buffer deleted",
1203 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 else
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001205 smsg((char_u *)NGETTEXT("%d buffer wiped out",
1206 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 }
1208 }
1209
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210
1211 return errormsg;
1212}
1213
Bram Moolenaara02471e2014-01-10 16:43:14 +01001214/*
1215 * Make the current buffer empty.
1216 * Used when it is wiped out and it's the last buffer.
1217 */
1218 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001219empty_curbuf(
1220 int close_others,
1221 int forceit,
1222 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001223{
1224 int retval;
1225 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001226 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001227
1228 if (action == DOBUF_UNLOAD)
1229 {
1230 EMSG(_("E90: Cannot unload last buffer"));
1231 return FAIL;
1232 }
1233
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001234 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001235 if (close_others)
1236 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001237 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001238
1239 setpcmark();
1240 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1241 forceit ? ECMD_FORCEIT : 0, curwin);
1242
1243 /*
1244 * do_ecmd() may create a new buffer, then we have to delete
1245 * the old one. But do_ecmd() may have done that already, check
1246 * if the buffer still exists.
1247 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001248 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001249 close_buffer(NULL, buf, action, FALSE);
1250 if (!close_others)
1251 need_fileinfo = FALSE;
1252 return retval;
1253}
Bram Moolenaar94f01952018-09-01 15:30:03 +02001254
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255/*
1256 * Implementation of the commands for the buffer list.
1257 *
1258 * action == DOBUF_GOTO go to specified buffer
1259 * action == DOBUF_SPLIT split window and go to specified buffer
1260 * action == DOBUF_UNLOAD unload specified buffer(s)
1261 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1262 * action == DOBUF_WIPE delete specified buffer(s) really
1263 *
1264 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1265 * start == DOBUF_FIRST go to "count" buffer from first buffer
1266 * start == DOBUF_LAST go to "count" buffer from last buffer
1267 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1268 *
1269 * Return FAIL or OK.
1270 */
1271 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001272do_buffer(
1273 int action,
1274 int start,
1275 int dir, /* FORWARD or BACKWARD */
1276 int count, /* buffer number or number of buffers */
1277 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278{
1279 buf_T *buf;
1280 buf_T *bp;
1281 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1282 || action == DOBUF_WIPE);
1283
1284 switch (start)
1285 {
1286 case DOBUF_FIRST: buf = firstbuf; break;
1287 case DOBUF_LAST: buf = lastbuf; break;
1288 default: buf = curbuf; break;
1289 }
1290 if (start == DOBUF_MOD) /* find next modified buffer */
1291 {
1292 while (count-- > 0)
1293 {
1294 do
1295 {
1296 buf = buf->b_next;
1297 if (buf == NULL)
1298 buf = firstbuf;
1299 }
1300 while (buf != curbuf && !bufIsChanged(buf));
1301 }
1302 if (!bufIsChanged(buf))
1303 {
1304 EMSG(_("E84: No modified buffer found"));
1305 return FAIL;
1306 }
1307 }
1308 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1309 {
1310 while (buf != NULL && buf->b_fnum != count)
1311 buf = buf->b_next;
1312 }
1313 else
1314 {
1315 bp = NULL;
1316 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1317 {
1318 /* remember the buffer where we start, we come back there when all
1319 * buffers are unlisted. */
1320 if (bp == NULL)
1321 bp = buf;
1322 if (dir == FORWARD)
1323 {
1324 buf = buf->b_next;
1325 if (buf == NULL)
1326 buf = firstbuf;
1327 }
1328 else
1329 {
1330 buf = buf->b_prev;
1331 if (buf == NULL)
1332 buf = lastbuf;
1333 }
1334 /* don't count unlisted buffers */
1335 if (unload || buf->b_p_bl)
1336 {
1337 --count;
1338 bp = NULL; /* use this buffer as new starting point */
1339 }
1340 if (bp == buf)
1341 {
1342 /* back where we started, didn't find anything. */
1343 EMSG(_("E85: There is no listed buffer"));
1344 return FAIL;
1345 }
1346 }
1347 }
1348
1349 if (buf == NULL) /* could not find it */
1350 {
1351 if (start == DOBUF_FIRST)
1352 {
1353 /* don't warn when deleting */
1354 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001355 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 }
1357 else if (dir == FORWARD)
1358 EMSG(_("E87: Cannot go beyond last buffer"));
1359 else
1360 EMSG(_("E88: Cannot go before first buffer"));
1361 return FAIL;
1362 }
1363
1364#ifdef FEAT_GUI
1365 need_mouse_correct = TRUE;
1366#endif
1367
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 /*
1369 * delete buffer buf from memory and/or the list
1370 */
1371 if (unload)
1372 {
1373 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001374 bufref_T bufref;
1375
Bram Moolenaar94f01952018-09-01 15:30:03 +02001376 if (!can_unload_buffer(buf))
Bram Moolenaara997b452018-04-17 23:24:06 +02001377 return FAIL;
Bram Moolenaara997b452018-04-17 23:24:06 +02001378
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001379 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380
1381 /* When unloading or deleting a buffer that's already unloaded and
1382 * unlisted: fail silently. */
1383 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1384 return FAIL;
1385
1386 if (!forceit && bufIsChanged(buf))
1387 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001388#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 if ((p_confirm || cmdmod.confirm) && p_write)
1390 {
1391 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001392 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 /* Autocommand deleted buffer, oops! It's not changed
1394 * now. */
1395 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001396 /* If it's still changed fail silently, the dialog already
1397 * mentioned why it fails. */
1398 if (bufIsChanged(buf))
1399 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001401 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001402#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 {
1404 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1405 buf->b_fnum);
1406 return FAIL;
1407 }
1408 }
1409
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001410 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001411 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001412 end_visual_mode();
1413
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 /*
1415 * If deleting the last (listed) buffer, make it empty.
1416 * The last (listed) buffer cannot be unloaded.
1417 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001418 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 if (bp->b_p_bl && bp != buf)
1420 break;
1421 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001422 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 /*
1425 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001426 * (unless it's the only window). Repeat this so long as we end up in
1427 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001429 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001430 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001431 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001432 {
1433 if (win_close(curwin, FALSE) == FAIL)
1434 break;
1435 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436
1437 /*
1438 * If the buffer to be deleted is not the current one, delete it here.
1439 */
1440 if (buf != curbuf)
1441 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001442 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001443 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001444 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 return OK;
1446 }
1447
1448 /*
1449 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001450 * There should be another, otherwise it would have been handled
1451 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001452 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 * Then prefer the buffer we most recently visited.
1454 * Else try to find one that is loaded, after the current buffer,
1455 * then before the current buffer.
1456 * Finally use any buffer.
1457 */
1458 buf = NULL; /* selected buffer */
1459 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001460 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1461 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001463 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 {
1465 int jumpidx;
1466
1467 jumpidx = curwin->w_jumplistidx - 1;
1468 if (jumpidx < 0)
1469 jumpidx = curwin->w_jumplistlen - 1;
1470
1471 forward = jumpidx;
1472 while (jumpidx != curwin->w_jumplistidx)
1473 {
1474 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1475 if (buf != NULL)
1476 {
1477 if (buf == curbuf || !buf->b_p_bl)
1478 buf = NULL; /* skip current and unlisted bufs */
1479 else if (buf->b_ml.ml_mfp == NULL)
1480 {
1481 /* skip unloaded buf, but may keep it for later */
1482 if (bp == NULL)
1483 bp = buf;
1484 buf = NULL;
1485 }
1486 }
1487 if (buf != NULL) /* found a valid buffer: stop searching */
1488 break;
1489 /* advance to older entry in jump list */
1490 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1491 break;
1492 if (--jumpidx < 0)
1493 jumpidx = curwin->w_jumplistlen - 1;
1494 if (jumpidx == forward) /* List exhausted for sure */
1495 break;
1496 }
1497 }
1498#endif
1499
1500 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1501 {
1502 forward = TRUE;
1503 buf = curbuf->b_next;
1504 for (;;)
1505 {
1506 if (buf == NULL)
1507 {
1508 if (!forward) /* tried both directions */
1509 break;
1510 buf = curbuf->b_prev;
1511 forward = FALSE;
1512 continue;
1513 }
1514 /* in non-help buffer, try to skip help buffers, and vv */
1515 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1516 {
1517 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1518 break;
1519 if (bp == NULL) /* remember unloaded buf for later */
1520 bp = buf;
1521 }
1522 if (forward)
1523 buf = buf->b_next;
1524 else
1525 buf = buf->b_prev;
1526 }
1527 }
1528 if (buf == NULL) /* No loaded buffer, use unloaded one */
1529 buf = bp;
1530 if (buf == NULL) /* No loaded buffer, find listed one */
1531 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001532 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (buf->b_p_bl && buf != curbuf)
1534 break;
1535 }
1536 if (buf == NULL) /* Still no buffer, just take one */
1537 {
1538 if (curbuf->b_next != NULL)
1539 buf = curbuf->b_next;
1540 else
1541 buf = curbuf->b_prev;
1542 }
1543 }
1544
Bram Moolenaara02471e2014-01-10 16:43:14 +01001545 if (buf == NULL)
1546 {
1547 /* Autocommands must have wiped out all other buffers. Only option
1548 * now is to make the current buffer empty. */
1549 return empty_curbuf(FALSE, forceit, action);
1550 }
1551
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 /*
1553 * make buf current buffer
1554 */
1555 if (action == DOBUF_SPLIT) /* split window first */
1556 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001557 /* If 'switchbuf' contains "useopen": jump to first window containing
1558 * "buf" if one exists */
1559 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001560 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001561 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001562 * page containing "buf" if one exists */
1563 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 return OK;
1565 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 return FAIL;
1567 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
1569 /* go to current buffer - nothing to do */
1570 if (buf == curbuf)
1571 return OK;
1572
1573 /*
1574 * Check if the current buffer may be abandoned.
1575 */
1576 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1577 {
1578#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1579 if ((p_confirm || cmdmod.confirm) && p_write)
1580 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001581 bufref_T bufref;
1582
1583 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001585 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 /* Autocommand deleted buffer, oops! */
1587 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 }
1589 if (bufIsChanged(curbuf))
1590#endif
1591 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001592 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 return FAIL;
1594 }
1595 }
1596
1597 /* Go to the other buffer. */
1598 set_curbuf(buf, action);
1599
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001601 {
1602 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001605#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 if (aborting()) /* autocmds may abort script processing */
1607 return FAIL;
1608#endif
1609
1610 return OK;
1611}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
1613/*
1614 * Set current buffer to "buf". Executes autocommands and closes current
1615 * buffer. "action" tells how to close the current buffer:
1616 * DOBUF_GOTO free or hide it
1617 * DOBUF_SPLIT nothing
1618 * DOBUF_UNLOAD unload it
1619 * DOBUF_DEL delete it
1620 * DOBUF_WIPE wipe it out
1621 */
1622 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001623set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624{
1625 buf_T *prevbuf;
1626 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1627 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001628#ifdef FEAT_SYN_HL
1629 long old_tw = curbuf->b_p_tw;
1630#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001631 bufref_T newbufref;
1632 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
1634 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001635 if (!cmdmod.keepalt)
1636 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001637 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 /* Don't restart Select mode after switching to another buffer. */
1640 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001642 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1643 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001645 set_bufref(&prevbufref, prevbuf);
1646 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001648 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1649 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001650 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001651 || (bufref_valid(&prevbufref)
1652 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001653#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001654 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001656 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001658#ifdef FEAT_SYN_HL
1659 if (prevbuf == curwin->w_buffer)
1660 reset_synblock(curwin);
1661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001663 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001664#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001665 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001667 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001669 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001670 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001671 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001672 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1674 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001675 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001676 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001677 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001678 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001679 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001680 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001682 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001683 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001684 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1685 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001686#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001687 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001689 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001690 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001692#ifdef FEAT_SYN_HL
1693 if (old_tw != curbuf->b_p_tw)
1694 check_colorcolumn(curwin);
1695#endif
1696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697}
1698
1699/*
1700 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001701 * Old curbuf must have been abandoned already! This also means "curbuf" may
1702 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 */
1704 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001705enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706{
1707 /* Copy buffer and window local option values. Not for a help buffer. */
1708 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1709 if (!buf->b_help)
1710 get_winopts(buf);
1711#ifdef FEAT_FOLDING
1712 else
1713 /* Remove all folds in the window. */
1714 clearFolding(curwin);
1715 foldUpdateAll(curwin); /* update folds (later). */
1716#endif
1717
1718 /* Get the buffer in the current window. */
1719 curwin->w_buffer = buf;
1720 curbuf = buf;
1721 ++curbuf->b_nwindows;
1722
1723#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001724 if (curwin->w_p_diff)
1725 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726#endif
1727
Bram Moolenaara971b822011-09-14 14:43:25 +02001728#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001729 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001730#endif
1731
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 /* Cursor on first line by default. */
1733 curwin->w_cursor.lnum = 1;
1734 curwin->w_cursor.col = 0;
1735#ifdef FEAT_VIRTUALEDIT
1736 curwin->w_cursor.coladd = 0;
1737#endif
1738 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001739 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001741 /* mark cursor position as being invalid */
1742 curwin->w_valid = 0;
1743
Bram Moolenaar9cea87c2018-09-21 16:59:45 +02001744 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum,
1745 curbuf->b_last_cursor.col, TRUE);
1746
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 /* Make sure the buffer is loaded. */
1748 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001749 {
1750 /* If there is no filetype, allow for detecting one. Esp. useful for
1751 * ":ball" used in a autocommand. If there already is a filetype we
1752 * might prefer to keep it. */
1753 if (*curbuf->b_p_ft == NUL)
1754 did_filetype = FALSE;
1755
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001756 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 else
1759 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001760 if (!msg_silent)
1761 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001764#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1768 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 }
1770
1771 /* If autocommands did not change the cursor position, restore cursor lnum
1772 * and possibly cursor col. */
1773 if (curwin->w_cursor.lnum == 1 && inindent(0))
1774 buflist_getfpos();
1775
1776 check_arg_idx(curwin); /* check for valid arg_idx */
1777#ifdef FEAT_TITLE
1778 maketitle();
1779#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001780 /* when autocmds didn't change it */
1781 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1783
Bram Moolenaar009b2592004-10-24 19:18:58 +00001784#ifdef FEAT_NETBEANS_INTG
1785 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001786 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001787#endif
1788
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001789 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001790 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791
1792#ifdef FEAT_KEYMAP
1793 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001794 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001796#ifdef FEAT_SPELL
1797 /* May need to set the spell language. Can only do this after the buffer
1798 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001799 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1800 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001801#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001802#ifdef FEAT_VIMINFO
1803 curbuf->b_last_used = vim_time();
1804#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001805
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 redraw_later(NOT_VALID);
1807}
1808
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001809#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1810/*
1811 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001812 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001813 */
1814 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001815do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001816{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001817 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001818 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001819 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001820 shorten_fnames(TRUE);
1821}
1822#endif
1823
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001824 void
1825no_write_message(void)
1826{
1827#ifdef FEAT_TERMINAL
1828 if (term_job_running(curbuf->b_term))
1829 EMSG(_("E948: Job still running (add ! to end the job)"));
1830 else
1831#endif
1832 EMSG(_("E37: No write since last change (add ! to override)"));
1833}
1834
1835 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001836no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001837{
1838#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001839 if (term_job_running(buf->b_term))
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001840 EMSG(_("E948: Job still running"));
1841 else
1842#endif
1843 EMSG(_("E37: No write since last change"));
1844}
1845
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846/*
1847 * functions for dealing with the buffer list
1848 */
1849
Bram Moolenaar480778b2016-07-14 22:09:39 +02001850static int top_file_num = 1; /* highest file number */
1851
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001853 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1854 * only one window. That means it can be re-used.
1855 */
1856 int
1857curbuf_reusable(void)
1858{
1859 return (curbuf != NULL
1860 && curbuf->b_ffname == NULL
1861 && curbuf->b_nwindows <= 1
1862 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
1863 && !curbufIsChanged());
1864}
1865
1866/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 * Add a file name to the buffer list. Return a pointer to the buffer.
1868 * If the same file name already exists return a pointer to that buffer.
1869 * If it does not exist, or if fname == NULL, a new entry is created.
1870 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1871 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1872 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001873 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001874 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1875 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 * This is the ONLY way to create a new buffer.
1877 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001879buflist_new(
1880 char_u *ffname, /* full path of fname or relative */
1881 char_u *sfname, /* short fname or NULL */
1882 linenr_T lnum, /* preferred cursor line */
1883 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884{
1885 buf_T *buf;
1886#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001887 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888#endif
1889
Bram Moolenaar480778b2016-07-14 22:09:39 +02001890 if (top_file_num == 1)
1891 hash_init(&buf_hashtab);
1892
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1894
1895 /*
1896 * If file name already exists in the list, update the entry.
1897 */
1898#ifdef UNIX
1899 /* On Unix we can use inode numbers when the file exists. Works better
1900 * for hard links. */
1901 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1902 st.st_dev = (dev_T)-1;
1903#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001904 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905#ifdef UNIX
1906 buflist_findname_stat(ffname, &st)
1907#else
1908 buflist_findname(ffname)
1909#endif
1910 ) != NULL)
1911 {
1912 vim_free(ffname);
1913 if (lnum != 0)
1914 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001915
1916 if ((flags & BLN_NOOPT) == 0)
1917 /* copy the options now, if 'cpo' doesn't have 's' and not done
1918 * already */
1919 buf_copy_options(buf, 0);
1920
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1922 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001923 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001924
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001926 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001928 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001929 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001930 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001931 return NULL;
1932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 }
1934 return buf;
1935 }
1936
1937 /*
1938 * If the current buffer has no name and no contents, use the current
1939 * buffer. Otherwise: Need to allocate a new buffer structure.
1940 *
1941 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001942 * (A spell file buffer is allocated in spell.c, but that's not a normal
1943 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 */
1945 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001946 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 {
1948 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 /* It's like this buffer is deleted. Watch out for autocommands that
1950 * change curbuf! If that happens, allocate a new buffer anyway. */
1951 if (curbuf->b_p_bl)
1952 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1953 if (buf == curbuf)
1954 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001955#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001956 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 {
1961 /* Make sure 'bufhidden' and 'buftype' are empty */
1962 clear_string_option(&buf->b_p_bh);
1963 clear_string_option(&buf->b_p_bt);
1964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966 if (buf != curbuf || curbuf == NULL)
1967 {
1968 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1969 if (buf == NULL)
1970 {
1971 vim_free(ffname);
1972 return NULL;
1973 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001974#ifdef FEAT_EVAL
1975 /* init b: variables */
1976 buf->b_vars = dict_alloc();
1977 if (buf->b_vars == NULL)
1978 {
1979 vim_free(ffname);
1980 vim_free(buf);
1981 return NULL;
1982 }
1983 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1984#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001985 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 }
1987
1988 if (ffname != NULL)
1989 {
1990 buf->b_ffname = ffname;
1991 buf->b_sfname = vim_strsave(sfname);
1992 }
1993
1994 clear_wininfo(buf);
1995 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1996
1997 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1998 || buf->b_wininfo == NULL)
1999 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002000 VIM_CLEAR(buf->b_ffname);
2001 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 if (buf != curbuf)
2003 free_buffer(buf);
2004 return NULL;
2005 }
2006
2007 if (buf == curbuf)
2008 {
2009 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002010 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 if (buf != curbuf) /* autocommands deleted the buffer! */
2012 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002013#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002014 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 return NULL;
2016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002018
2019 /* Init the options. */
2020 buf->b_p_initialized = FALSE;
2021 buf_copy_options(buf, BCO_ENTER);
2022
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023#ifdef FEAT_KEYMAP
2024 /* need to reload lmaps and set b:keymap_name */
2025 curbuf->b_kmap_state |= KEYMAP_INIT;
2026#endif
2027 }
2028 else
2029 {
2030 /*
2031 * put new buffer at the end of the buffer list
2032 */
2033 buf->b_next = NULL;
2034 if (firstbuf == NULL) /* buffer list is empty */
2035 {
2036 buf->b_prev = NULL;
2037 firstbuf = buf;
2038 }
2039 else /* append new buffer at end of list */
2040 {
2041 lastbuf->b_next = buf;
2042 buf->b_prev = lastbuf;
2043 }
2044 lastbuf = buf;
2045
2046 buf->b_fnum = top_file_num++;
2047 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2048 {
2049 EMSG(_("W14: Warning: List of file names overflow"));
2050 if (emsg_silent == 0)
2051 {
2052 out_flush();
2053 ui_delay(3000L, TRUE); /* make sure it is noticed */
2054 }
2055 top_file_num = 1;
2056 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002057 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
2059 /*
2060 * Always copy the options from the current buffer.
2061 */
2062 buf_copy_options(buf, BCO_ALWAYS);
2063 }
2064
2065 buf->b_wininfo->wi_fpos.lnum = lnum;
2066 buf->b_wininfo->wi_win = curwin;
2067
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002068#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002069 hash_init(&buf->b_s.b_keywtab);
2070 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071#endif
2072
2073 buf->b_fname = buf->b_sfname;
2074#ifdef UNIX
2075 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002076 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 else
2078 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002079 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 buf->b_dev = st.st_dev;
2081 buf->b_ino = st.st_ino;
2082 }
2083#endif
2084 buf->b_u_synced = TRUE;
2085 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002086 if (flags & BLN_DUMMY)
2087 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 buf_clear_file(buf);
2089 clrallmarks(buf); /* clear marks */
2090 fmarks_check_names(buf); /* check file marks for this file */
2091 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 if (!(flags & BLN_DUMMY))
2093 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002094 bufref_T bufref;
2095
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002096 /* Tricky: these autocommands may change the buffer list. They could
2097 * also split the window with re-using the one empty buffer. This may
2098 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002099 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002100 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002101 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002102 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002104 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002105 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002106 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002107 return NULL;
2108 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002109#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002110 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114
2115 return buf;
2116}
2117
2118/*
2119 * Free the memory for the options of a buffer.
2120 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2121 * 'fileencoding'.
2122 */
2123 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002124free_buf_options(
2125 buf_T *buf,
2126 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127{
2128 if (free_p_ff)
2129 {
2130#ifdef FEAT_MBYTE
2131 clear_string_option(&buf->b_p_fenc);
2132#endif
2133 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 clear_string_option(&buf->b_p_bh);
2135 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 }
2137#ifdef FEAT_FIND_ID
2138 clear_string_option(&buf->b_p_def);
2139 clear_string_option(&buf->b_p_inc);
2140# ifdef FEAT_EVAL
2141 clear_string_option(&buf->b_p_inex);
2142# endif
2143#endif
2144#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2145 clear_string_option(&buf->b_p_inde);
2146 clear_string_option(&buf->b_p_indk);
2147#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002148#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2149 clear_string_option(&buf->b_p_bexpr);
2150#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002151#if defined(FEAT_CRYPT)
2152 clear_string_option(&buf->b_p_cm);
2153#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002154 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002155#if defined(FEAT_EVAL)
2156 clear_string_option(&buf->b_p_fex);
2157#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158#ifdef FEAT_CRYPT
2159 clear_string_option(&buf->b_p_key);
2160#endif
2161 clear_string_option(&buf->b_p_kp);
2162 clear_string_option(&buf->b_p_mps);
2163 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002164 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002166#ifdef FEAT_VARTABS
2167 clear_string_option(&buf->b_p_vsts);
2168 if (buf->b_p_vsts_nopaste)
2169 vim_free(buf->b_p_vsts_nopaste);
2170 buf->b_p_vsts_nopaste = NULL;
2171 if (buf->b_p_vsts_array)
2172 vim_free(buf->b_p_vsts_array);
2173 buf->b_p_vsts_array = NULL;
2174 clear_string_option(&buf->b_p_vts);
2175 if (buf->b_p_vts_array)
2176 vim_free(buf->b_p_vts_array);
2177 buf->b_p_vts_array = NULL;
2178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179#ifdef FEAT_KEYMAP
2180 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002181 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 ga_clear(&buf->b_kmap_ga);
2183#endif
2184#ifdef FEAT_COMMENTS
2185 clear_string_option(&buf->b_p_com);
2186#endif
2187#ifdef FEAT_FOLDING
2188 clear_string_option(&buf->b_p_cms);
2189#endif
2190 clear_string_option(&buf->b_p_nf);
2191#ifdef FEAT_SYN_HL
2192 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002193 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002194#endif
2195#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002196 clear_string_option(&buf->b_s.b_p_spc);
2197 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002198 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002199 buf->b_s.b_cap_prog = NULL;
2200 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201#endif
2202#ifdef FEAT_SEARCHPATH
2203 clear_string_option(&buf->b_p_sua);
2204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206#ifdef FEAT_CINDENT
2207 clear_string_option(&buf->b_p_cink);
2208 clear_string_option(&buf->b_p_cino);
2209#endif
2210#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2211 clear_string_option(&buf->b_p_cinw);
2212#endif
2213#ifdef FEAT_INS_EXPAND
2214 clear_string_option(&buf->b_p_cpt);
2215#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002216#ifdef FEAT_COMPL_FUNC
2217 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002218 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220#ifdef FEAT_QUICKFIX
2221 clear_string_option(&buf->b_p_gp);
2222 clear_string_option(&buf->b_p_mp);
2223 clear_string_option(&buf->b_p_efm);
2224#endif
2225 clear_string_option(&buf->b_p_ep);
2226 clear_string_option(&buf->b_p_path);
2227 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002228 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229#ifdef FEAT_INS_EXPAND
2230 clear_string_option(&buf->b_p_dict);
2231 clear_string_option(&buf->b_p_tsr);
2232#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002233#ifdef FEAT_TEXTOBJ
2234 clear_string_option(&buf->b_p_qe);
2235#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002237 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002238#ifdef FEAT_LISP
2239 clear_string_option(&buf->b_p_lw);
2240#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002241 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002242#ifdef FEAT_MBYTE
2243 clear_string_option(&buf->b_p_menc);
2244#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245}
2246
2247/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002248 * Get alternate file "n".
2249 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2250 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 * if (options & GETF_SETMARK) call setpcmark()
2252 * if (options & GETF_ALT) we are jumping to an alternate file.
2253 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2254 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002255 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 */
2257 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002258buflist_getfile(
2259 int n,
2260 linenr_T lnum,
2261 int options,
2262 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263{
2264 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 pos_T *fpos;
2267 colnr_T col;
2268
2269 buf = buflist_findnr(n);
2270 if (buf == NULL)
2271 {
2272 if ((options & GETF_ALT) && n == 0)
2273 EMSG(_(e_noalt));
2274 else
2275 EMSGN(_("E92: Buffer %ld not found"), n);
2276 return FAIL;
2277 }
2278
2279 /* if alternate file is the current buffer, nothing to do */
2280 if (buf == curbuf)
2281 return OK;
2282
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002283 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002284 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002285 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002287 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002288 if (curbuf_locked())
2289 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
2291 /* altfpos may be changed by getfile(), get it now */
2292 if (lnum == 0)
2293 {
2294 fpos = buflist_findfpos(buf);
2295 lnum = fpos->lnum;
2296 col = fpos->col;
2297 }
2298 else
2299 col = 0;
2300
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 if (options & GETF_SWITCH)
2302 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002303 /* If 'switchbuf' contains "useopen": jump to first window containing
2304 * "buf" if one exists */
2305 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002307
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002308 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002309 * page containing "buf" if one exists */
2310 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002311 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002312
2313 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2314 * current buffer isn't empty: open new tab or window */
2315 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002316 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002318 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002319 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002320 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2321 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002323 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 }
2325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326
2327 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002328 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2329 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 {
2331 --RedrawingDisabled;
2332
2333 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2334 if (!p_sol && col != 0)
2335 {
2336 curwin->w_cursor.col = col;
2337 check_cursor_col();
2338#ifdef FEAT_VIRTUALEDIT
2339 curwin->w_cursor.coladd = 0;
2340#endif
2341 curwin->w_set_curswant = TRUE;
2342 }
2343 return OK;
2344 }
2345 --RedrawingDisabled;
2346 return FAIL;
2347}
2348
2349/*
2350 * go to the last know line number for the current buffer
2351 */
2352 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002353buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354{
2355 pos_T *fpos;
2356
2357 fpos = buflist_findfpos(curbuf);
2358
2359 curwin->w_cursor.lnum = fpos->lnum;
2360 check_cursor_lnum();
2361
2362 if (p_sol)
2363 curwin->w_cursor.col = 0;
2364 else
2365 {
2366 curwin->w_cursor.col = fpos->col;
2367 check_cursor_col();
2368#ifdef FEAT_VIRTUALEDIT
2369 curwin->w_cursor.coladd = 0;
2370#endif
2371 curwin->w_set_curswant = TRUE;
2372 }
2373}
2374
Bram Moolenaar81695252004-12-29 20:58:21 +00002375#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2376/*
2377 * Find file in buffer list by name (it has to be for the current window).
2378 * Returns NULL if not found.
2379 */
2380 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002381buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002382{
2383 char_u *ffname;
2384 buf_T *buf = NULL;
2385
2386 /* First make the name into a full path name */
2387 ffname = FullName_save(fname,
2388#ifdef UNIX
2389 TRUE /* force expansion, get rid of symbolic links */
2390#else
2391 FALSE
2392#endif
2393 );
2394 if (ffname != NULL)
2395 {
2396 buf = buflist_findname(ffname);
2397 vim_free(ffname);
2398 }
2399 return buf;
2400}
2401#endif
2402
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403/*
2404 * Find file in buffer list by name (it has to be for the current window).
2405 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002406 * Skips dummy buffers.
2407 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 */
2409 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002410buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411{
2412#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002413 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414
2415 if (mch_stat((char *)ffname, &st) < 0)
2416 st.st_dev = (dev_T)-1;
2417 return buflist_findname_stat(ffname, &st);
2418}
2419
2420/*
2421 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2422 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002423 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 */
2425 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002426buflist_findname_stat(
2427 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002428 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429{
2430#endif
2431 buf_T *buf;
2432
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002433 /* Start at the last buffer, expect to find a match sooner. */
2434 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002435 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436#ifdef UNIX
2437 , stp
2438#endif
2439 ))
2440 return buf;
2441 return NULL;
2442}
2443
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444/*
2445 * Find file in buffer list by a regexp pattern.
2446 * Return fnum of the found buffer.
2447 * Return < 0 for error.
2448 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002450buflist_findpat(
2451 char_u *pattern,
2452 char_u *pattern_end, /* pointer to first char after pattern */
2453 int unlisted, /* find unlisted buffers */
2454 int diffmode UNUSED, /* find diff-mode buffers only */
2455 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456{
2457 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 int match = -1;
2459 int find_listed;
2460 char_u *pat;
2461 char_u *patend;
2462 int attempt;
2463 char_u *p;
2464 int toggledollar;
2465
2466 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2467 {
2468 if (*pattern == '%')
2469 match = curbuf->b_fnum;
2470 else
2471 match = curwin->w_alt_fnum;
2472#ifdef FEAT_DIFF
2473 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2474 match = -1;
2475#endif
2476 }
2477
2478 /*
2479 * Try four ways of matching a listed buffer:
2480 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002481 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 * attempt == 2: with '$' at end (only match at end)
2483 * attempt == 3: with '^' at start and '$' at end (only full match)
2484 * Repeat this for finding an unlisted buffer if there was no matching
2485 * listed buffer.
2486 */
2487 else
2488 {
2489 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2490 if (pat == NULL)
2491 return -1;
2492 patend = pat + STRLEN(pat) - 1;
2493 toggledollar = (patend > pat && *patend == '$');
2494
2495 /* First try finding a listed buffer. If not found and "unlisted"
2496 * is TRUE, try finding an unlisted buffer. */
2497 find_listed = TRUE;
2498 for (;;)
2499 {
2500 for (attempt = 0; attempt <= 3; ++attempt)
2501 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002502 regmatch_T regmatch;
2503
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 /* may add '^' and '$' */
2505 if (toggledollar)
2506 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2507 p = pat;
2508 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2509 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002510 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2511 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 {
2513 vim_free(pat);
2514 return -1;
2515 }
2516
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002517 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 if (buf->b_p_bl == find_listed
2519#ifdef FEAT_DIFF
2520 && (!diffmode || diff_mode_buf(buf))
2521#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002522 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002524 if (curtab_only)
2525 {
2526 /* Ignore the match if the buffer is not open in
2527 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002528 win_T *wp;
2529
Bram Moolenaar29323592016-07-24 22:04:11 +02002530 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002531 if (wp->w_buffer == buf)
2532 break;
2533 if (wp == NULL)
2534 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 if (match >= 0) /* already found a match */
2537 {
2538 match = -2;
2539 break;
2540 }
2541 match = buf->b_fnum; /* remember first match */
2542 }
2543
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002544 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 if (match >= 0) /* found one match */
2546 break;
2547 }
2548
2549 /* Only search for unlisted buffers if there was no match with
2550 * a listed buffer. */
2551 if (!unlisted || !find_listed || match != -1)
2552 break;
2553 find_listed = FALSE;
2554 }
2555
2556 vim_free(pat);
2557 }
2558
2559 if (match == -2)
2560 EMSG2(_("E93: More than one match for %s"), pattern);
2561 else if (match < 0)
2562 EMSG2(_("E94: No matching buffer for %s"), pattern);
2563 return match;
2564}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
2566#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2567
2568/*
2569 * Find all buffer names that match.
2570 * For command line expansion of ":buf" and ":sbuf".
2571 * Return OK if matches found, FAIL otherwise.
2572 */
2573 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002574ExpandBufnames(
2575 char_u *pat,
2576 int *num_file,
2577 char_u ***file,
2578 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579{
2580 int count = 0;
2581 buf_T *buf;
2582 int round;
2583 char_u *p;
2584 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002585 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586
2587 *num_file = 0; /* return values in case of FAIL */
2588 *file = NULL;
2589
Bram Moolenaar05159a02005-02-26 23:04:13 +00002590 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2591 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002593 patc = alloc((unsigned)STRLEN(pat) + 11);
2594 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002596 STRCPY(patc, "\\(^\\|[\\/]\\)");
2597 STRCPY(patc + 11, pat + 1);
2598 }
2599 else
2600 patc = pat;
2601
2602 /*
2603 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002604 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002605 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002606 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002607 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002608 regmatch_T regmatch;
2609
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002610 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002611 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002612 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2613 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002614 {
2615 if (patc != pat)
2616 vim_free(patc);
2617 return FAIL;
2618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619
2620 /*
2621 * round == 1: Count the matches.
2622 * round == 2: Build the array to keep the matches.
2623 */
2624 for (round = 1; round <= 2; ++round)
2625 {
2626 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002627 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 {
2629 if (!buf->b_p_bl) /* skip unlisted buffers */
2630 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002631 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 if (p != NULL)
2633 {
2634 if (round == 1)
2635 ++count;
2636 else
2637 {
2638 if (options & WILD_HOME_REPLACE)
2639 p = home_replace_save(buf, p);
2640 else
2641 p = vim_strsave(p);
2642 (*file)[count++] = p;
2643 }
2644 }
2645 }
2646 if (count == 0) /* no match found, break here */
2647 break;
2648 if (round == 1)
2649 {
2650 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2651 if (*file == NULL)
2652 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002653 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002654 if (patc != pat)
2655 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 return FAIL;
2657 }
2658 }
2659 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002660 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 if (count) /* match(es) found, break here */
2662 break;
2663 }
2664
Bram Moolenaar05159a02005-02-26 23:04:13 +00002665 if (patc != pat)
2666 vim_free(patc);
2667
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 *num_file = count;
2669 return (count == 0 ? FAIL : OK);
2670}
2671
2672#endif /* FEAT_CMDL_COMPL */
2673
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674/*
2675 * Check for a match on the file name for buffer "buf" with regprog "prog".
2676 */
2677 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002678buflist_match(
2679 regmatch_T *rmp,
2680 buf_T *buf,
2681 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682{
2683 char_u *match;
2684
2685 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002686 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002688 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689
2690 return match;
2691}
2692
2693/*
2694 * Try matching the regexp in "prog" with file name "name".
2695 * Return "name" when there is a match, NULL when not.
2696 */
2697 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002698fname_match(
2699 regmatch_T *rmp,
2700 char_u *name,
2701 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702{
2703 char_u *match = NULL;
2704 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705
2706 if (name != NULL)
2707 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002708 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002709 rmp->rm_ic = p_fic || ignore_case;
2710 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 match = name;
2712 else
2713 {
2714 /* Replace $(HOME) with '~' and try matching again. */
2715 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002716 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 match = name;
2718 vim_free(p);
2719 }
2720 }
2721
2722 return match;
2723}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724
2725/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002726 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 */
2728 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002729buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002731 char_u key[VIM_SIZEOF_INT * 2 + 1];
2732 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733
2734 if (nr == 0)
2735 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002736 sprintf((char *)key, "%x", nr);
2737 hi = hash_find(&buf_hashtab, key);
2738
2739 if (!HASHITEM_EMPTY(hi))
2740 return (buf_T *)(hi->hi_key
2741 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 return NULL;
2743}
2744
2745/*
2746 * Get name of file 'n' in the buffer list.
2747 * When the file has no name an empty string is returned.
2748 * home_replace() is used to shorten the file name (used for marks).
2749 * Returns a pointer to allocated memory, of NULL when failed.
2750 */
2751 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002752buflist_nr2name(
2753 int n,
2754 int fullname,
2755 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756{
2757 buf_T *buf;
2758
2759 buf = buflist_findnr(n);
2760 if (buf == NULL)
2761 return NULL;
2762 return home_replace_save(helptail ? buf : NULL,
2763 fullname ? buf->b_ffname : buf->b_fname);
2764}
2765
2766/*
2767 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2768 * When "copy_options" is TRUE save the local window option values.
2769 * When "lnum" is 0 only do the options.
2770 */
2771 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002772buflist_setfpos(
2773 buf_T *buf,
2774 win_T *win,
2775 linenr_T lnum,
2776 colnr_T col,
2777 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778{
2779 wininfo_T *wip;
2780
2781 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2782 if (wip->wi_win == win)
2783 break;
2784 if (wip == NULL)
2785 {
2786 /* allocate a new entry */
2787 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2788 if (wip == NULL)
2789 return;
2790 wip->wi_win = win;
2791 if (lnum == 0) /* set lnum even when it's 0 */
2792 lnum = 1;
2793 }
2794 else
2795 {
2796 /* remove the entry from the list */
2797 if (wip->wi_prev)
2798 wip->wi_prev->wi_next = wip->wi_next;
2799 else
2800 buf->b_wininfo = wip->wi_next;
2801 if (wip->wi_next)
2802 wip->wi_next->wi_prev = wip->wi_prev;
2803 if (copy_options && wip->wi_optset)
2804 {
2805 clear_winopt(&wip->wi_opt);
2806#ifdef FEAT_FOLDING
2807 deleteFoldRecurse(&wip->wi_folds);
2808#endif
2809 }
2810 }
2811 if (lnum != 0)
2812 {
2813 wip->wi_fpos.lnum = lnum;
2814 wip->wi_fpos.col = col;
2815 }
2816 if (copy_options)
2817 {
2818 /* Save the window-specific option values. */
2819 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2820#ifdef FEAT_FOLDING
2821 wip->wi_fold_manual = win->w_fold_manual;
2822 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2823#endif
2824 wip->wi_optset = TRUE;
2825 }
2826
2827 /* insert the entry in front of the list */
2828 wip->wi_next = buf->b_wininfo;
2829 buf->b_wininfo = wip;
2830 wip->wi_prev = NULL;
2831 if (wip->wi_next)
2832 wip->wi_next->wi_prev = wip;
2833
2834 return;
2835}
2836
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002837#ifdef FEAT_DIFF
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002838/*
2839 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2840 * page. That's because a diff is local to a tab page.
2841 */
2842 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002843wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002844{
2845 win_T *wp;
2846
2847 if (wip->wi_opt.wo_diff)
2848 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002849 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002850 /* return FALSE when it's a window in the current tab page, thus
2851 * the buffer was in diff mode here */
2852 if (wip->wi_win == wp)
2853 return FALSE;
2854 return TRUE;
2855 }
2856 return FALSE;
2857}
2858#endif
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860/*
2861 * Find info for the current window in buffer "buf".
2862 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002863 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2864 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 * Returns NULL when there isn't any info.
2866 */
2867 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002868find_wininfo(
2869 buf_T *buf,
2870 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871{
2872 wininfo_T *wip;
2873
2874 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002875 if (wip->wi_win == curwin
2876#ifdef FEAT_DIFF
2877 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2878#endif
2879 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002881
2882 /* If no wininfo for curwin, use the first in the list (that doesn't have
2883 * 'diff' set and is in another tab page). */
2884 if (wip == NULL)
2885 {
2886#ifdef FEAT_DIFF
2887 if (skip_diff_buffer)
2888 {
2889 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2890 if (!wininfo_other_tab_diff(wip))
2891 break;
2892 }
2893 else
2894#endif
2895 wip = buf->b_wininfo;
2896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 return wip;
2898}
2899
2900/*
2901 * Reset the local window options to the values last used in this window.
2902 * If the buffer wasn't used in this window before, use the values from
2903 * the most recently used window. If the values were never set, use the
2904 * global values for the window.
2905 */
2906 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002907get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908{
2909 wininfo_T *wip;
2910
2911 clear_winopt(&curwin->w_onebuf_opt);
2912#ifdef FEAT_FOLDING
2913 clearFolding(curwin);
2914#endif
2915
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002916 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002917 if (wip != NULL && wip->wi_win != NULL
2918 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002920 /* The buffer is currently displayed in the window: use the actual
2921 * option values instead of the saved (possibly outdated) values. */
2922 win_T *wp = wip->wi_win;
2923
2924 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2925#ifdef FEAT_FOLDING
2926 curwin->w_fold_manual = wp->w_fold_manual;
2927 curwin->w_foldinvalid = TRUE;
2928 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2929#endif
2930 }
2931 else if (wip != NULL && wip->wi_optset)
2932 {
2933 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2935#ifdef FEAT_FOLDING
2936 curwin->w_fold_manual = wip->wi_fold_manual;
2937 curwin->w_foldinvalid = TRUE;
2938 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2939#endif
2940 }
2941 else
2942 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2943
2944#ifdef FEAT_FOLDING
2945 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2946 if (p_fdls >= 0)
2947 curwin->w_p_fdl = p_fdls;
2948#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002949#ifdef FEAT_SYN_HL
2950 check_colorcolumn(curwin);
2951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952}
2953
2954/*
2955 * Find the position (lnum and col) for the buffer 'buf' for the current
2956 * window.
2957 * Returns a pointer to no_position if no position is found.
2958 */
2959 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002960buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961{
2962 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002963 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002965 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 if (wip != NULL)
2967 return &(wip->wi_fpos);
2968 else
2969 return &no_position;
2970}
2971
2972/*
2973 * Find the lnum for the buffer 'buf' for the current window.
2974 */
2975 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002976buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977{
2978 return buflist_findfpos(buf)->lnum;
2979}
2980
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002982 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002985buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986{
2987 buf_T *buf;
2988 int len;
2989 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002990 int ro_char;
2991 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02002992#ifdef FEAT_TERMINAL
2993 int job_running;
2994 int job_none_open;
2995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996
2997 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2998 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02002999#ifdef FEAT_TERMINAL
3000 job_running = term_job_running(buf->b_term);
3001 job_none_open = job_running && term_none_open(buf->b_term);
3002#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02003004 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3005 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3006 || (vim_strchr(eap->arg, '+')
3007 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3008 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003009 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02003010 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02003011 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3012#ifdef FEAT_TERMINAL
3013 || (vim_strchr(eap->arg, 'R')
3014 && (!job_running || (job_running && job_none_open)))
3015 || (vim_strchr(eap->arg, '?')
3016 && (!job_running || (job_running && !job_none_open)))
3017 || (vim_strchr(eap->arg, 'F')
3018 && (job_running || buf->b_term == NULL))
3019#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003020 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3021 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3022 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3023 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3024 || (vim_strchr(eap->arg, '#')
3025 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003028 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 else
3030 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003031 if (message_filtered(NameBuff))
3032 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003034 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3035 : (bufIsChanged(buf) ? '+' : ' ');
3036#ifdef FEAT_TERMINAL
3037 if (term_job_running(buf->b_term))
3038 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003039 if (term_none_open(buf->b_term))
3040 ro_char = '?';
3041 else
3042 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003043 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3044 * closing, but it's not actually changed. */
3045 }
3046 else if (buf->b_term != NULL)
3047 ro_char = 'F';
3048 else
3049#endif
3050 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3051
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003052 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003053 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 buf->b_fnum,
3055 buf->b_p_bl ? ' ' : 'u',
3056 buf == curbuf ? '%' :
3057 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3058 buf->b_ml.ml_mfp == NULL ? ' ' :
3059 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003060 ro_char,
3061 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003062 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003063 if (len > IOSIZE - 20)
3064 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065
3066 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 i = 40 - vim_strsize(IObuff);
3068 do
3069 {
3070 IObuff[len++] = ' ';
3071 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003072 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3073 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003074 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 msg_outtrans(IObuff);
3076 out_flush(); /* output one line at a time */
3077 ui_breakcheck();
3078 }
3079}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080
3081/*
3082 * Get file name and line number for file 'fnum'.
3083 * Used by DoOneCmd() for translating '%' and '#'.
3084 * Used by insert_reg() and cmdline_paste() for '#' register.
3085 * Return FAIL if not found, OK for success.
3086 */
3087 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003088buflist_name_nr(
3089 int fnum,
3090 char_u **fname,
3091 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093 buf_T *buf;
3094
3095 buf = buflist_findnr(fnum);
3096 if (buf == NULL || buf->b_fname == NULL)
3097 return FAIL;
3098
3099 *fname = buf->b_fname;
3100 *lnum = buflist_findlnum(buf);
3101
3102 return OK;
3103}
3104
3105/*
3106 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3107 * The file name with the full path is also remembered, for when :cd is used.
3108 * Returns FAIL for failure (file name already in use by other buffer)
3109 * OK otherwise.
3110 */
3111 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003112setfname(
3113 buf_T *buf,
3114 char_u *ffname,
3115 char_u *sfname,
3116 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117{
Bram Moolenaar81695252004-12-29 20:58:21 +00003118 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003120 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121#endif
3122
3123 if (ffname == NULL || *ffname == NUL)
3124 {
3125 /* Removing the name. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01003126 VIM_CLEAR(buf->b_ffname);
3127 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128#ifdef UNIX
3129 st.st_dev = (dev_T)-1;
3130#endif
3131 }
3132 else
3133 {
3134 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3135 if (ffname == NULL) /* out of memory */
3136 return FAIL;
3137
3138 /*
3139 * if the file name is already used in another buffer:
3140 * - if the buffer is loaded, fail
3141 * - if the buffer is not loaded, delete it from the list
3142 */
3143#ifdef UNIX
3144 if (mch_stat((char *)ffname, &st) < 0)
3145 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003146#endif
3147 if (!(buf->b_flags & BF_DUMMY))
3148#ifdef UNIX
3149 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003151 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152#endif
3153 if (obuf != NULL && obuf != buf)
3154 {
3155 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3156 {
3157 if (message)
3158 EMSG(_("E95: Buffer with this name already exists"));
3159 vim_free(ffname);
3160 return FAIL;
3161 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003162 /* delete from the list */
3163 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 }
3165 sfname = vim_strsave(sfname);
3166 if (ffname == NULL || sfname == NULL)
3167 {
3168 vim_free(sfname);
3169 vim_free(ffname);
3170 return FAIL;
3171 }
3172#ifdef USE_FNAME_CASE
3173# ifdef USE_LONG_FNAME
3174 if (USE_LONG_FNAME)
3175# endif
3176 fname_case(sfname, 0); /* set correct case for short file name */
3177#endif
3178 vim_free(buf->b_ffname);
3179 vim_free(buf->b_sfname);
3180 buf->b_ffname = ffname;
3181 buf->b_sfname = sfname;
3182 }
3183 buf->b_fname = buf->b_sfname;
3184#ifdef UNIX
3185 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003186 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 else
3188 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003189 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 buf->b_dev = st.st_dev;
3191 buf->b_ino = st.st_ino;
3192 }
3193#endif
3194
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196
3197 buf_name_changed(buf);
3198 return OK;
3199}
3200
3201/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003202 * Crude way of changing the name of a buffer. Use with care!
3203 * The name should be relative to the current directory.
3204 */
3205 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003206buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003207{
3208 buf_T *buf;
3209
3210 buf = buflist_findnr(fnum);
3211 if (buf != NULL)
3212 {
3213 vim_free(buf->b_sfname);
3214 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003215 buf->b_ffname = vim_strsave(name);
3216 buf->b_sfname = NULL;
3217 /* Allocate ffname and expand into full path. Also resolves .lnk
3218 * files on Win32. */
3219 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003220 buf->b_fname = buf->b_sfname;
3221 }
3222}
3223
3224/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 * Take care of what needs to be done when the name of buffer "buf" has
3226 * changed.
3227 */
3228 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003229buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230{
3231 /*
3232 * If the file name changed, also change the name of the swapfile
3233 */
3234 if (buf->b_ml.ml_mfp != NULL)
3235 ml_setname(buf);
3236
3237 if (curwin->w_buffer == buf)
3238 check_arg_idx(curwin); /* check file name for arg list */
3239#ifdef FEAT_TITLE
3240 maketitle(); /* set window title */
3241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 fmarks_check_names(buf); /* check named file marks */
3244 ml_timestamp(buf); /* reset timestamp */
3245}
3246
3247/*
3248 * set alternate file name for current window
3249 *
3250 * Used by do_one_cmd(), do_write() and do_ecmd().
3251 * Return the buffer.
3252 */
3253 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003254setaltfname(
3255 char_u *ffname,
3256 char_u *sfname,
3257 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 buf_T *buf;
3260
3261 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3262 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003263 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 curwin->w_alt_fnum = buf->b_fnum;
3265 return buf;
3266}
3267
3268/*
3269 * Get alternate file name for current window.
3270 * Return NULL if there isn't any, and give error message if requested.
3271 */
3272 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003273getaltfname(
3274 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275{
3276 char_u *fname;
3277 linenr_T dummy;
3278
3279 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3280 {
3281 if (errmsg)
3282 EMSG(_(e_noalt));
3283 return NULL;
3284 }
3285 return fname;
3286}
3287
3288/*
3289 * Add a file name to the buflist and return its number.
3290 * Uses same flags as buflist_new(), except BLN_DUMMY.
3291 *
3292 * used by qf_init(), main() and doarglist()
3293 */
3294 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003295buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296{
3297 buf_T *buf;
3298
3299 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3300 if (buf != NULL)
3301 return buf->b_fnum;
3302 return 0;
3303}
3304
3305#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3306/*
3307 * Adjust slashes in file names. Called after 'shellslash' was set.
3308 */
3309 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003310buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311{
3312 buf_T *bp;
3313
Bram Moolenaar29323592016-07-24 22:04:11 +02003314 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 {
3316 if (bp->b_ffname != NULL)
3317 slash_adjust(bp->b_ffname);
3318 if (bp->b_sfname != NULL)
3319 slash_adjust(bp->b_sfname);
3320 }
3321}
3322#endif
3323
3324/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003325 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 * Also save the local window option values.
3327 */
3328 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003329buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003331 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332}
3333
3334/*
3335 * Return TRUE if 'ffname' is not the same file as current file.
3336 * Fname must have a full path (expanded by mch_FullName()).
3337 */
3338 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003339otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340{
3341 return otherfile_buf(curbuf, ffname
3342#ifdef UNIX
3343 , NULL
3344#endif
3345 );
3346}
3347
3348 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003349otherfile_buf(
3350 buf_T *buf,
3351 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003353 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003355 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356{
3357 /* no name is different */
3358 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3359 return TRUE;
3360 if (fnamecmp(ffname, buf->b_ffname) == 0)
3361 return FALSE;
3362#ifdef UNIX
3363 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003364 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365
Bram Moolenaar8767f522016-07-01 17:17:39 +02003366 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 if (stp == NULL)
3368 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003369 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 st.st_dev = (dev_T)-1;
3371 stp = &st;
3372 }
3373 /* Use dev/ino to check if the files are the same, even when the names
3374 * are different (possible with links). Still need to compare the
3375 * name above, for when the file doesn't exist yet.
3376 * Problem: The dev/ino changes when a file is deleted (and created
3377 * again) and remains the same when renamed/moved. We don't want to
3378 * mch_stat() each buffer each time, that would be too slow. Get the
3379 * dev/ino again when they appear to match, but not when they appear
3380 * to be different: Could skip a buffer when it's actually the same
3381 * file. */
3382 if (buf_same_ino(buf, stp))
3383 {
3384 buf_setino(buf);
3385 if (buf_same_ino(buf, stp))
3386 return FALSE;
3387 }
3388 }
3389#endif
3390 return TRUE;
3391}
3392
3393#if defined(UNIX) || defined(PROTO)
3394/*
3395 * Set inode and device number for a buffer.
3396 * Must always be called when b_fname is changed!.
3397 */
3398 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003399buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003401 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402
3403 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3404 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003405 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 buf->b_dev = st.st_dev;
3407 buf->b_ino = st.st_ino;
3408 }
3409 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003410 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411}
3412
3413/*
3414 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3415 */
3416 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003417buf_same_ino(
3418 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003419 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003421 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 && stp->st_dev == buf->b_dev
3423 && stp->st_ino == buf->b_ino);
3424}
3425#endif
3426
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003427/*
3428 * Print info about the current buffer.
3429 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003431fileinfo(
3432 int fullname, /* when non-zero print full path */
3433 int shorthelp,
3434 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435{
3436 char_u *name;
3437 int n;
3438 char_u *p;
3439 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003440 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441
3442 buffer = alloc(IOSIZE);
3443 if (buffer == NULL)
3444 return;
3445
3446 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3447 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003448 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 p = buffer + STRLEN(buffer);
3450 }
3451 else
3452 p = buffer;
3453
3454 *p++ = '"';
3455 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003456 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 else
3458 {
3459 if (!fullname && curbuf->b_fname != NULL)
3460 name = curbuf->b_fname;
3461 else
3462 name = curbuf->b_ffname;
3463 home_replace(shorthelp ? curbuf : NULL, name, p,
3464 (int)(IOSIZE - (p - buffer)), TRUE);
3465 }
3466
Bram Moolenaara800b422010-06-27 01:15:55 +02003467 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 curbufIsChanged() ? (shortmess(SHM_MOD)
3469 ? " [+]" : _(" [Modified]")) : " ",
3470 (curbuf->b_flags & BF_NOTEDITED)
3471#ifdef FEAT_QUICKFIX
3472 && !bt_dontwrite(curbuf)
3473#endif
3474 ? _("[Not edited]") : "",
3475 (curbuf->b_flags & BF_NEW)
3476#ifdef FEAT_QUICKFIX
3477 && !bt_dontwrite(curbuf)
3478#endif
3479 ? _("[New file]") : "",
3480 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003481 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 : _("[readonly]")) : "",
3483 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3484 || curbuf->b_p_ro) ?
3485 " " : "");
3486 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3487 * causes an overflow, thus for large numbers divide instead. */
3488 if (curwin->w_cursor.lnum > 1000000L)
3489 n = (int)(((long)curwin->w_cursor.lnum) /
3490 ((long)curbuf->b_ml.ml_line_count / 100L));
3491 else
3492 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3493 (long)curbuf->b_ml.ml_line_count);
3494 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaara800b422010-06-27 01:15:55 +02003495 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496#ifdef FEAT_CMDL_INFO
3497 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 /* Current line and column are already on the screen -- webb */
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003499 vim_snprintf_add((char *)buffer, IOSIZE,
3500 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3501 curbuf->b_ml.ml_line_count),
3502 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503#endif
3504 else
3505 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003506 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 _("line %ld of %ld --%d%%-- col "),
3508 (long)curwin->w_cursor.lnum,
3509 (long)curbuf->b_ml.ml_line_count,
3510 n);
3511 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003512 len = STRLEN(buffer);
3513 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3515 }
3516
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003517 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518
3519 if (dont_truncate)
3520 {
3521 /* Temporarily set msg_scroll to avoid the message being truncated.
3522 * First call msg_start() to get the message in the right place. */
3523 msg_start();
3524 n = msg_scroll;
3525 msg_scroll = TRUE;
3526 msg(buffer);
3527 msg_scroll = n;
3528 }
3529 else
3530 {
3531 p = msg_trunc_attr(buffer, FALSE, 0);
3532 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 /* Need to repeat the message after redrawing when:
3534 * - When restart_edit is set (otherwise there will be a delay
3535 * before redrawing).
3536 * - When the screen was scrolled but there is no wait-return
3537 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003538 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 }
3540
3541 vim_free(buffer);
3542}
3543
3544 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003545col_print(
3546 char_u *buf,
3547 size_t buflen,
3548 int col,
3549 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550{
3551 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003552 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003554 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555}
3556
3557#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558static char_u *lasttitle = NULL;
3559static char_u *lasticon = NULL;
3560
Bram Moolenaar84a93082018-06-16 22:58:15 +02003561/*
3562 * Put the file name in the title bar and icon of the window.
3563 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003565maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566{
3567 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003568 char_u *title_str = NULL;
3569 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 int maxlen = 0;
3571 int len;
3572 int mustset;
3573 char_u buf[IOSIZE];
3574 int off;
3575
3576 if (!redrawing())
3577 {
3578 /* Postpone updating the title when 'lazyredraw' is set. */
3579 need_maketitle = TRUE;
3580 return;
3581 }
3582
3583 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003584 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003585 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586
3587 if (p_title)
3588 {
3589 if (p_titlelen > 0)
3590 {
3591 maxlen = p_titlelen * Columns / 100;
3592 if (maxlen < 10)
3593 maxlen = 10;
3594 }
3595
Bram Moolenaar84a93082018-06-16 22:58:15 +02003596 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 if (*p_titlestring != NUL)
3598 {
3599#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003600 if (stl_syntax & STL_IN_TITLE)
3601 {
3602 int use_sandbox = FALSE;
3603 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003604
3605# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003606 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003607# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003608 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003609 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003610 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003611 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003612 if (called_emsg)
3613 set_string_option_direct((char_u *)"titlestring", -1,
3614 (char_u *)"", OPT_FREE, SID_ERROR);
3615 called_emsg |= save_called_emsg;
3616 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 else
3618#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003619 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 }
3621 else
3622 {
3623 /* format: "fname + (path) (1 of 2) - VIM" */
3624
Bram Moolenaar2c666692012-09-05 13:30:40 +02003625#define SPACE_FOR_FNAME (IOSIZE - 100)
3626#define SPACE_FOR_DIR (IOSIZE - 20)
3627#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003629 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003630#ifdef FEAT_TERMINAL
3631 else if (curbuf->b_term != NULL)
3632 {
3633 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3634 SPACE_FOR_FNAME);
3635 }
3636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 else
3638 {
3639 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003640 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 }
3643
Bram Moolenaar21554412017-07-24 21:44:43 +02003644#ifdef FEAT_TERMINAL
3645 if (curbuf->b_term == NULL)
3646#endif
3647 switch (bufIsChanged(curbuf)
3648 + (curbuf->b_p_ro * 2)
3649 + (!curbuf->b_p_ma * 4))
3650 {
3651 case 1: STRCAT(buf, " +"); break;
3652 case 2: STRCAT(buf, " ="); break;
3653 case 3: STRCAT(buf, " =+"); break;
3654 case 4:
3655 case 6: STRCAT(buf, " -"); break;
3656 case 5:
3657 case 7: STRCAT(buf, " -+"); break;
3658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659
Bram Moolenaar21554412017-07-24 21:44:43 +02003660 if (curbuf->b_fname != NULL
3661#ifdef FEAT_TERMINAL
3662 && curbuf->b_term == NULL
3663#endif
3664 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 {
3666 /* Get path of file, replace home dir with ~ */
3667 off = (int)STRLEN(buf);
3668 buf[off++] = ' ';
3669 buf[off++] = '(';
3670 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003671 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672#ifdef BACKSLASH_IN_FILENAME
3673 /* avoid "c:/name" to be reduced to "c" */
3674 if (isalpha(buf[off]) && buf[off + 1] == ':')
3675 off += 2;
3676#endif
3677 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003678 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003680 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003681 /* must be a help buffer */
3682 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003683 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003687
Bram Moolenaar2c666692012-09-05 13:30:40 +02003688 /* Translate unprintable chars and concatenate. Keep some
3689 * room for the server name. When there is no room (very long
3690 * file name) use (...). */
3691 if (off < SPACE_FOR_DIR)
3692 {
3693 p = transstr(buf + off);
3694 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3695 vim_free(p);
3696 }
3697 else
3698 {
3699 vim_strncpy(buf + off, (char_u *)"...",
3700 (size_t)(SPACE_FOR_ARGNR - off));
3701 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 STRCAT(buf, ")");
3703 }
3704
Bram Moolenaar2c666692012-09-05 13:30:40 +02003705 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706
3707#if defined(FEAT_CLIENTSERVER)
3708 if (serverName != NULL)
3709 {
3710 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003711 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 }
3713 else
3714#endif
3715 STRCAT(buf, " - VIM");
3716
3717 if (maxlen > 0)
3718 {
3719 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003720 if (vim_strsize(buf) > maxlen)
3721 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 }
3723 }
3724 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003725 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726
3727 if (p_icon)
3728 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003729 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 if (*p_iconstring != NUL)
3731 {
3732#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003733 if (stl_syntax & STL_IN_ICON)
3734 {
3735 int use_sandbox = FALSE;
3736 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003737
3738# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003739 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003740# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003741 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003742 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003743 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003744 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003745 if (called_emsg)
3746 set_string_option_direct((char_u *)"iconstring", -1,
3747 (char_u *)"", OPT_FREE, SID_ERROR);
3748 called_emsg |= save_called_emsg;
3749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 else
3751#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003752 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 }
3754 else
3755 {
3756 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003757 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003759 p = gettail(curbuf->b_ffname);
3760 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003762 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 if (len > 100)
3764 {
3765 len -= 100;
3766#ifdef FEAT_MBYTE
3767 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003768 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003770 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003772 STRCPY(icon_str, p);
3773 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 }
3775 }
3776
Bram Moolenaar84a93082018-06-16 22:58:15 +02003777 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778
3779 if (mustset)
3780 resettitle();
3781}
3782
3783/*
3784 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3785 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003786 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 */
3788 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003789value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790{
3791 if ((str == NULL) != (*last == NULL)
3792 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3793 {
3794 vim_free(*last);
3795 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003796 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003798 mch_restore_title(
3799 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003802 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003804 return TRUE;
3805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 }
3807 return FALSE;
3808}
3809
3810/*
3811 * Put current window title back (used after calling a shell)
3812 */
3813 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003814resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815{
3816 mch_settitle(lasttitle, lasticon);
3817}
Bram Moolenaarea408852005-06-25 22:49:46 +00003818
3819# if defined(EXITFREE) || defined(PROTO)
3820 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003821free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003822{
3823 vim_free(lasttitle);
3824 vim_free(lasticon);
3825}
3826# endif
3827
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828#endif /* FEAT_TITLE */
3829
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003830#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003832 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 * Return length of string in screen cells.
3834 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003835 * Normally works for window "wp", except when working for 'tabline' then it
3836 * is "curwin".
3837 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 * Items are drawn interspersed with the text that surrounds it
3839 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3840 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3841 *
3842 * If maxwidth is not zero, the string will be filled at any middle marker
3843 * or truncated if too long, fillchar is used for all whitespace.
3844 */
3845 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003846build_stl_str_hl(
3847 win_T *wp,
3848 char_u *out, /* buffer to write into != NameBuff */
3849 size_t outlen, /* length of out[] */
3850 char_u *fmt,
3851 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3852 int fillchar,
3853 int maxwidth,
3854 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3855 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856{
3857 char_u *p;
3858 char_u *s;
3859 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003860 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003862 win_T *save_curwin;
3863 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864#endif
3865 int empty_line;
3866 colnr_T virtcol;
3867 long l;
3868 long n;
3869 int prevchar_isflag;
3870 int prevchar_isitem;
3871 int itemisflag;
3872 int fillable;
3873 char_u *str;
3874 long num;
3875 int width;
3876 int itemcnt;
3877 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003878 int group_end_userhl;
3879 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 int groupitem[STL_MAX_ITEM];
3881 int groupdepth;
3882 struct stl_item
3883 {
3884 char_u *start;
3885 int minwid;
3886 int maxwid;
3887 enum
3888 {
3889 Normal,
3890 Empty,
3891 Group,
3892 Middle,
3893 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003894 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 Trunc
3896 } type;
3897 } item[STL_MAX_ITEM];
3898 int minwid;
3899 int maxwid;
3900 int zeropad;
3901 char_u base;
3902 char_u opt;
3903#define TMPLEN 70
3904 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003905 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003906 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003907 int save_must_redraw = must_redraw;
3908 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003909
3910#ifdef FEAT_EVAL
3911 /*
3912 * When the format starts with "%!" then evaluate it as an expression and
3913 * use the result as the actual format string.
3914 */
3915 if (fmt[0] == '%' && fmt[1] == '!')
3916 {
3917 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3918 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003919 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003920 }
3921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922
3923 if (fillchar == 0)
3924 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003925#ifdef FEAT_MBYTE
3926 /* Can't handle a multi-byte fill character yet. */
3927 else if (mb_char2len(fillchar) > 1)
3928 fillchar = '-';
3929#endif
3930
Bram Moolenaar567199b2013-04-24 16:52:36 +02003931 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3932 * p will become invalid when getting another buffer line. */
3933 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3934 empty_line = (*p == NUL);
3935
3936 /* Get the byte value now, in case we need it below. This is more
3937 * efficient than making a copy of the line. */
3938 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3939 byteval = 0;
3940 else
3941#ifdef FEAT_MBYTE
3942 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3943#else
3944 byteval = p[wp->w_cursor.col];
3945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946
3947 groupdepth = 0;
3948 p = out;
3949 curitem = 0;
3950 prevchar_isflag = TRUE;
3951 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003952 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003954 if (curitem == STL_MAX_ITEM)
3955 {
3956 /* There are too many items. Add the error code to the statusline
3957 * to give the user a hint about what went wrong. */
3958 if (p + 6 < out + outlen)
3959 {
3960 mch_memmove(p, " E541", (size_t)5);
3961 p += 5;
3962 }
3963 break;
3964 }
3965
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 if (*s != NUL && *s != '%')
3967 prevchar_isflag = prevchar_isitem = FALSE;
3968
3969 /*
3970 * Handle up to the next '%' or the end.
3971 */
3972 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3973 *p++ = *s++;
3974 if (*s == NUL || p + 1 >= out + outlen)
3975 break;
3976
3977 /*
3978 * Handle one '%' item.
3979 */
3980 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003981 if (*s == NUL) /* ignore trailing % */
3982 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 if (*s == '%')
3984 {
3985 if (p + 1 >= out + outlen)
3986 break;
3987 *p++ = *s++;
3988 prevchar_isflag = prevchar_isitem = FALSE;
3989 continue;
3990 }
3991 if (*s == STL_MIDDLEMARK)
3992 {
3993 s++;
3994 if (groupdepth > 0)
3995 continue;
3996 item[curitem].type = Middle;
3997 item[curitem++].start = p;
3998 continue;
3999 }
4000 if (*s == STL_TRUNCMARK)
4001 {
4002 s++;
4003 item[curitem].type = Trunc;
4004 item[curitem++].start = p;
4005 continue;
4006 }
4007 if (*s == ')')
4008 {
4009 s++;
4010 if (groupdepth < 1)
4011 continue;
4012 groupdepth--;
4013
4014 t = item[groupitem[groupdepth]].start;
4015 *p = NUL;
4016 l = vim_strsize(t);
4017 if (curitem > groupitem[groupdepth] + 1
4018 && item[groupitem[groupdepth]].minwid == 0)
4019 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004020 /* remove group if all items are empty and highlight group
4021 * doesn't change */
4022 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004023 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4024 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004025 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004026 {
4027 group_start_userhl = group_end_userhl = item[n].minwid;
4028 break;
4029 }
4030 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004032 {
4033 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004035 if (item[n].type == Highlight)
4036 group_end_userhl = item[n].minwid;
4037 }
4038 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 {
4040 p = t;
4041 l = 0;
4042 }
4043 }
4044 if (l > item[groupitem[groupdepth]].maxwid)
4045 {
4046 /* truncate, remove n bytes of text at the start */
4047#ifdef FEAT_MBYTE
4048 if (has_mbyte)
4049 {
4050 /* Find the first character that should be included. */
4051 n = 0;
4052 while (l >= item[groupitem[groupdepth]].maxwid)
4053 {
4054 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004055 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 }
4057 }
4058 else
4059#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004060 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061
4062 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004063 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 p = p - n + 1;
4065#ifdef FEAT_MBYTE
4066 /* Fill up space left over by half a double-wide char. */
4067 while (++l < item[groupitem[groupdepth]].minwid)
4068 *p++ = fillchar;
4069#endif
4070
4071 /* correct the start of the items for the truncation */
4072 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4073 {
4074 item[l].start -= n;
4075 if (item[l].start < t)
4076 item[l].start = t;
4077 }
4078 }
4079 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4080 {
4081 /* fill */
4082 n = item[groupitem[groupdepth]].minwid;
4083 if (n < 0)
4084 {
4085 /* fill by appending characters */
4086 n = 0 - n;
4087 while (l++ < n && p + 1 < out + outlen)
4088 *p++ = fillchar;
4089 }
4090 else
4091 {
4092 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004093 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 l = n - l;
4095 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004096 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 p += l;
4098 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4099 item[n].start += l;
4100 for ( ; l > 0; l--)
4101 *t++ = fillchar;
4102 }
4103 }
4104 continue;
4105 }
4106 minwid = 0;
4107 maxwid = 9999;
4108 zeropad = FALSE;
4109 l = 1;
4110 if (*s == '0')
4111 {
4112 s++;
4113 zeropad = TRUE;
4114 }
4115 if (*s == '-')
4116 {
4117 s++;
4118 l = -1;
4119 }
4120 if (VIM_ISDIGIT(*s))
4121 {
4122 minwid = (int)getdigits(&s);
4123 if (minwid < 0) /* overflow */
4124 minwid = 0;
4125 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004126 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 {
4128 item[curitem].type = Highlight;
4129 item[curitem].start = p;
4130 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4131 s++;
4132 curitem++;
4133 continue;
4134 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004135 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4136 {
4137 if (*s == STL_TABCLOSENR)
4138 {
4139 if (minwid == 0)
4140 {
4141 /* %X ends the close label, go back to the previously
4142 * define tab label nr. */
4143 for (n = curitem - 1; n >= 0; --n)
4144 if (item[n].type == TabPage && item[n].minwid >= 0)
4145 {
4146 minwid = item[n].minwid;
4147 break;
4148 }
4149 }
4150 else
4151 /* close nrs are stored as negative values */
4152 minwid = - minwid;
4153 }
4154 item[curitem].type = TabPage;
4155 item[curitem].start = p;
4156 item[curitem].minwid = minwid;
4157 s++;
4158 curitem++;
4159 continue;
4160 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 if (*s == '.')
4162 {
4163 s++;
4164 if (VIM_ISDIGIT(*s))
4165 {
4166 maxwid = (int)getdigits(&s);
4167 if (maxwid <= 0) /* overflow */
4168 maxwid = 50;
4169 }
4170 }
4171 minwid = (minwid > 50 ? 50 : minwid) * l;
4172 if (*s == '(')
4173 {
4174 groupitem[groupdepth++] = curitem;
4175 item[curitem].type = Group;
4176 item[curitem].start = p;
4177 item[curitem].minwid = minwid;
4178 item[curitem].maxwid = maxwid;
4179 s++;
4180 curitem++;
4181 continue;
4182 }
4183 if (vim_strchr(STL_ALL, *s) == NULL)
4184 {
4185 s++;
4186 continue;
4187 }
4188 opt = *s++;
4189
4190 /* OK - now for the real work */
4191 base = 'D';
4192 itemisflag = FALSE;
4193 fillable = TRUE;
4194 num = -1;
4195 str = NULL;
4196 switch (opt)
4197 {
4198 case STL_FILEPATH:
4199 case STL_FULLPATH:
4200 case STL_FILENAME:
4201 fillable = FALSE; /* don't change ' ' to fillchar */
4202 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004203 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 else
4205 {
4206 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004207 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4209 }
4210 trans_characters(NameBuff, MAXPATHL);
4211 if (opt != STL_FILENAME)
4212 str = NameBuff;
4213 else
4214 str = gettail(NameBuff);
4215 break;
4216
4217 case STL_VIM_EXPR: /* '{' */
4218 itemisflag = TRUE;
4219 t = p;
4220 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4221 *p++ = *s++;
4222 if (*s != '}') /* missing '}' or out of space */
4223 break;
4224 s++;
4225 *p = 0;
4226 p = t;
4227
4228#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004229 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar3cb44482018-08-05 13:22:26 +02004230 set_internal_string_var((char_u *)"g:actual_curbuf", tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004232 save_curbuf = curbuf;
4233 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 curwin = wp;
4235 curbuf = wp->w_buffer;
4236
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004237 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004239 curwin = save_curwin;
4240 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004241 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242
4243 if (str != NULL && *str != 0)
4244 {
4245 if (*skipdigits(str) == NUL)
4246 {
4247 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004248 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 itemisflag = FALSE;
4250 }
4251 }
4252#endif
4253 break;
4254
4255 case STL_LINE:
4256 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4257 ? 0L : (long)(wp->w_cursor.lnum);
4258 break;
4259
4260 case STL_NUMLINES:
4261 num = wp->w_buffer->b_ml.ml_line_count;
4262 break;
4263
4264 case STL_COLUMN:
4265 num = !(State & INSERT) && empty_line
4266 ? 0 : (int)wp->w_cursor.col + 1;
4267 break;
4268
4269 case STL_VIRTCOL:
4270 case STL_VIRTCOL_ALT:
4271 /* In list mode virtcol needs to be recomputed */
4272 virtcol = wp->w_virtcol;
4273 if (wp->w_p_list && lcs_tab1 == NUL)
4274 {
4275 wp->w_p_list = FALSE;
4276 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4277 wp->w_p_list = TRUE;
4278 }
4279 ++virtcol;
4280 /* Don't display %V if it's the same as %c. */
4281 if (opt == STL_VIRTCOL_ALT
4282 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4283 ? 0 : (int)wp->w_cursor.col + 1)))
4284 break;
4285 num = (long)virtcol;
4286 break;
4287
4288 case STL_PERCENTAGE:
4289 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4290 (long)wp->w_buffer->b_ml.ml_line_count);
4291 break;
4292
4293 case STL_ALTPERCENT:
4294 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004295 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 break;
4297
4298 case STL_ARGLISTSTAT:
4299 fillable = FALSE;
4300 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004301 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 str = tmp;
4303 break;
4304
4305 case STL_KEYMAP:
4306 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004307 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 str = tmp;
4309 break;
4310 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004311#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004312 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313#else
4314 num = 0;
4315#endif
4316 break;
4317
4318 case STL_BUFNO:
4319 num = wp->w_buffer->b_fnum;
4320 break;
4321
4322 case STL_OFFSET_X:
4323 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004324 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 case STL_OFFSET:
4326#ifdef FEAT_BYTEOFF
4327 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4328 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4329 0L : l + 1 + (!(State & INSERT) && empty_line ?
4330 0 : (int)wp->w_cursor.col);
4331#endif
4332 break;
4333
4334 case STL_BYTEVAL_X:
4335 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004336 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004338 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 if (num == NL)
4340 num = 0;
4341 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4342 num = NL;
4343 break;
4344
4345 case STL_ROFLAG:
4346 case STL_ROFLAG_ALT:
4347 itemisflag = TRUE;
4348 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004349 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 break;
4351
4352 case STL_HELPFLAG:
4353 case STL_HELPFLAG_ALT:
4354 itemisflag = TRUE;
4355 if (wp->w_buffer->b_help)
4356 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004357 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 break;
4359
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 case STL_FILETYPE:
4361 if (*wp->w_buffer->b_p_ft != NUL
4362 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4363 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004364 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4365 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 str = tmp;
4367 }
4368 break;
4369
4370 case STL_FILETYPE_ALT:
4371 itemisflag = TRUE;
4372 if (*wp->w_buffer->b_p_ft != NUL
4373 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4374 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004375 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4376 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 for (t = tmp; *t != 0; t++)
4378 *t = TOUPPER_LOC(*t);
4379 str = tmp;
4380 }
4381 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382
Bram Moolenaar4033c552017-09-16 20:54:51 +02004383#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 case STL_PREVIEWFLAG:
4385 case STL_PREVIEWFLAG_ALT:
4386 itemisflag = TRUE;
4387 if (wp->w_p_pvw)
4388 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4389 : _("[Preview]"));
4390 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004391
4392 case STL_QUICKFIX:
4393 if (bt_quickfix(wp->w_buffer))
4394 str = (char_u *)(wp->w_llist_ref
4395 ? _(msg_loclist)
4396 : _(msg_qflist));
4397 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398#endif
4399
4400 case STL_MODIFIED:
4401 case STL_MODIFIED_ALT:
4402 itemisflag = TRUE;
4403 switch ((opt == STL_MODIFIED_ALT)
4404 + bufIsChanged(wp->w_buffer) * 2
4405 + (!wp->w_buffer->b_p_ma) * 4)
4406 {
4407 case 2: str = (char_u *)"[+]"; break;
4408 case 3: str = (char_u *)",+"; break;
4409 case 4: str = (char_u *)"[-]"; break;
4410 case 5: str = (char_u *)",-"; break;
4411 case 6: str = (char_u *)"[+-]"; break;
4412 case 7: str = (char_u *)",+-"; break;
4413 }
4414 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004415
4416 case STL_HIGHLIGHT:
4417 t = s;
4418 while (*s != '#' && *s != NUL)
4419 ++s;
4420 if (*s == '#')
4421 {
4422 item[curitem].type = Highlight;
4423 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004424 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004425 curitem++;
4426 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004427 if (*s != NUL)
4428 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004429 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 }
4431
4432 item[curitem].start = p;
4433 item[curitem].type = Normal;
4434 if (str != NULL && *str)
4435 {
4436 t = str;
4437 if (itemisflag)
4438 {
4439 if ((t[0] && t[1])
4440 && ((!prevchar_isitem && *t == ',')
4441 || (prevchar_isflag && *t == ' ')))
4442 t++;
4443 prevchar_isflag = TRUE;
4444 }
4445 l = vim_strsize(t);
4446 if (l > 0)
4447 prevchar_isitem = TRUE;
4448 if (l > maxwid)
4449 {
4450 while (l >= maxwid)
4451#ifdef FEAT_MBYTE
4452 if (has_mbyte)
4453 {
4454 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004455 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 }
4457 else
4458#endif
4459 l -= byte2cells(*t++);
4460 if (p + 1 >= out + outlen)
4461 break;
4462 *p++ = '<';
4463 }
4464 if (minwid > 0)
4465 {
4466 for (; l < minwid && p + 1 < out + outlen; l++)
4467 {
4468 /* Don't put a "-" in front of a digit. */
4469 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4470 *p++ = ' ';
4471 else
4472 *p++ = fillchar;
4473 }
4474 minwid = 0;
4475 }
4476 else
4477 minwid *= -1;
4478 while (*t && p + 1 < out + outlen)
4479 {
4480 *p++ = *t++;
4481 /* Change a space by fillchar, unless fillchar is '-' and a
4482 * digit follows. */
4483 if (fillable && p[-1] == ' '
4484 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4485 p[-1] = fillchar;
4486 }
4487 for (; l < minwid && p + 1 < out + outlen; l++)
4488 *p++ = fillchar;
4489 }
4490 else if (num >= 0)
4491 {
4492 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4493 char_u nstr[20];
4494
4495 if (p + 20 >= out + outlen)
4496 break; /* not sufficient space */
4497 prevchar_isitem = TRUE;
4498 t = nstr;
4499 if (opt == STL_VIRTCOL_ALT)
4500 {
4501 *t++ = '-';
4502 minwid--;
4503 }
4504 *t++ = '%';
4505 if (zeropad)
4506 *t++ = '0';
4507 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004508 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 *t = 0;
4510
4511 for (n = num, l = 1; n >= nbase; n /= nbase)
4512 l++;
4513 if (opt == STL_VIRTCOL_ALT)
4514 l++;
4515 if (l > maxwid)
4516 {
4517 l += 2;
4518 n = l - maxwid;
4519 while (l-- > maxwid)
4520 num /= nbase;
4521 *t++ = '>';
4522 *t++ = '%';
4523 *t = t[-3];
4524 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004525 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4526 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 }
4528 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004529 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4530 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 p += STRLEN(p);
4532 }
4533 else
4534 item[curitem].type = Empty;
4535
4536 if (opt == STL_VIM_EXPR)
4537 vim_free(str);
4538
4539 if (num >= 0 || (!itemisflag && str && *str))
4540 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4541 curitem++;
4542 }
4543 *p = NUL;
4544 itemcnt = curitem;
4545
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004546#ifdef FEAT_EVAL
4547 if (usefmt != fmt)
4548 vim_free(usefmt);
4549#endif
4550
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 width = vim_strsize(out);
4552 if (maxwidth > 0 && width > maxwidth)
4553 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004554 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 l = 0;
4556 if (itemcnt == 0)
4557 s = out;
4558 else
4559 {
4560 for ( ; l < itemcnt; l++)
4561 if (item[l].type == Trunc)
4562 {
4563 /* Truncate at %< item. */
4564 s = item[l].start;
4565 break;
4566 }
4567 if (l == itemcnt)
4568 {
4569 /* No %< item, truncate first item. */
4570 s = item[0].start;
4571 l = 0;
4572 }
4573 }
4574
4575 if (width - vim_strsize(s) >= maxwidth)
4576 {
4577 /* Truncation mark is beyond max length */
4578#ifdef FEAT_MBYTE
4579 if (has_mbyte)
4580 {
4581 s = out;
4582 width = 0;
4583 for (;;)
4584 {
4585 width += ptr2cells(s);
4586 if (width >= maxwidth)
4587 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004588 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 }
4590 /* Fill up for half a double-wide character. */
4591 while (++width < maxwidth)
4592 *s++ = fillchar;
4593 }
4594 else
4595#endif
4596 s = out + maxwidth - 1;
4597 for (l = 0; l < itemcnt; l++)
4598 if (item[l].start > s)
4599 break;
4600 itemcnt = l;
4601 *s++ = '>';
4602 *s = 0;
4603 }
4604 else
4605 {
4606#ifdef FEAT_MBYTE
4607 if (has_mbyte)
4608 {
4609 n = 0;
4610 while (width >= maxwidth)
4611 {
4612 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004613 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 }
4615 }
4616 else
4617#endif
4618 n = width - maxwidth + 1;
4619 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004620 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 *s = '<';
4622
4623 /* Fill up for half a double-wide character. */
4624 while (++width < maxwidth)
4625 {
4626 s = s + STRLEN(s);
4627 *s++ = fillchar;
4628 *s = NUL;
4629 }
4630
4631 --n; /* count the '<' */
4632 for (; l < itemcnt; l++)
4633 {
4634 if (item[l].start - n >= s)
4635 item[l].start -= n;
4636 else
4637 item[l].start = s;
4638 }
4639 }
4640 width = maxwidth;
4641 }
4642 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4643 {
4644 /* Apply STL_MIDDLE if any */
4645 for (l = 0; l < itemcnt; l++)
4646 if (item[l].type == Middle)
4647 break;
4648 if (l < itemcnt)
4649 {
4650 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004651 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 for (s = item[l].start; s < p; s++)
4653 *s = fillchar;
4654 for (l++; l < itemcnt; l++)
4655 item[l].start += maxwidth - width;
4656 width = maxwidth;
4657 }
4658 }
4659
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004660 /* Store the info about highlighting. */
4661 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004663 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 for (l = 0; l < itemcnt; l++)
4665 {
4666 if (item[l].type == Highlight)
4667 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004668 sp->start = item[l].start;
4669 sp->userhl = item[l].minwid;
4670 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 }
4672 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004673 sp->start = NULL;
4674 sp->userhl = 0;
4675 }
4676
4677 /* Store the info about tab pages labels. */
4678 if (tabtab != NULL)
4679 {
4680 sp = tabtab;
4681 for (l = 0; l < itemcnt; l++)
4682 {
4683 if (item[l].type == TabPage)
4684 {
4685 sp->start = item[l].start;
4686 sp->userhl = item[l].minwid;
4687 sp++;
4688 }
4689 }
4690 sp->start = NULL;
4691 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 }
4693
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004694 /* When inside update_screen we do not want redrawing a stausline, ruler,
4695 * title, etc. to trigger another redraw, it may cause an endless loop. */
4696 if (updating_screen)
4697 {
4698 must_redraw = save_must_redraw;
4699 curwin->w_redr_type = save_redr_type;
4700 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004701
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 return width;
4703}
4704#endif /* FEAT_STL_OPT */
4705
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004706#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4707 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004709 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4710 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 */
4712 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004713get_rel_pos(
4714 win_T *wp,
4715 char_u *buf,
4716 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717{
4718 long above; /* number of lines above window */
4719 long below; /* number of lines below window */
4720
Bram Moolenaar0027c212015-01-07 13:31:52 +01004721 if (buflen < 3) /* need at least 3 chars for writing */
4722 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 above = wp->w_topline - 1;
4724#ifdef FEAT_DIFF
4725 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004726 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4727 above = 0; /* All buffer lines are displayed and there is an
4728 * indication of filler lines, that can be considered
4729 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730#endif
4731 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4732 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004733 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4734 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004736 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004738 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 ? (int)(above / ((above + below) / 100L))
4740 : (int)(above * 100L / (above + below)));
4741}
4742#endif
4743
4744/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004745 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 * Return TRUE if it was appended.
4747 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004748 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004749append_arg_number(
4750 win_T *wp,
4751 char_u *buf,
4752 int buflen,
4753 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754{
4755 char_u *p;
4756
4757 if (ARGCOUNT <= 1) /* nothing to do */
4758 return FALSE;
4759
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004760 p = buf + STRLEN(buf); /* go to the end of the buffer */
4761 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 return FALSE;
4763 *p++ = ' ';
4764 *p++ = '(';
4765 if (add_file)
4766 {
4767 STRCPY(p, "file ");
4768 p += 5;
4769 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004770 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4771 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4773 return TRUE;
4774}
4775
4776/*
4777 * If fname is not a full path, make it a full path.
4778 * Returns pointer to allocated memory (NULL for failure).
4779 */
4780 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004781fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782{
4783 /*
4784 * Force expanding the path always for Unix, because symbolic links may
4785 * mess up the full path name, even though it starts with a '/'.
4786 * Also expand when there is ".." in the file name, try to remove it,
4787 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004788 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 * For MS-Windows also expand names like "longna~1" to "longname".
4790 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004791#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 return FullName_save(fname, TRUE);
4793#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004794 if (!vim_isAbsName(fname)
4795 || strstr((char *)fname, "..") != NULL
4796 || strstr((char *)fname, "//") != NULL
4797# ifdef BACKSLASH_IN_FILENAME
4798 || strstr((char *)fname, "\\\\") != NULL
4799# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004800# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004802# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 )
4804 return FullName_save(fname, FALSE);
4805
4806 fname = vim_strsave(fname);
4807
Bram Moolenaar9b942202007-10-03 12:31:33 +00004808# ifdef USE_FNAME_CASE
4809# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004811# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 {
4813 if (fname != NULL)
4814 fname_case(fname, 0); /* set correct case for file name */
4815 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004816# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817
4818 return fname;
4819#endif
4820}
4821
4822/*
4823 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4824 * "ffname" becomes a pointer to allocated memory (or NULL).
4825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004827fname_expand(
4828 buf_T *buf UNUSED,
4829 char_u **ffname,
4830 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831{
4832 if (*ffname == NULL) /* if no file name given, nothing to do */
4833 return;
4834 if (*sfname == NULL) /* if no short file name given, use ffname */
4835 *sfname = *ffname;
4836 *ffname = fix_fname(*ffname); /* expand to full path */
4837
4838#ifdef FEAT_SHORTCUT
4839 if (!buf->b_p_bin)
4840 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004841 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842
4843 /* If the file name is a shortcut file, use the file it links to. */
4844 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004845 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 {
4847 vim_free(*ffname);
4848 *ffname = rfname;
4849 *sfname = rfname;
4850 }
4851 }
4852#endif
4853}
4854
4855/*
4856 * Get the file name for an argument list entry.
4857 */
4858 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004859alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860{
4861 buf_T *bp;
4862
4863 /* Use the name from the associated buffer if it exists. */
4864 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004865 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 return aep->ae_fname;
4867 return bp->b_fname;
4868}
4869
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870/*
4871 * do_arg_all(): Open up to 'count' windows, one for each argument.
4872 */
4873 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004874do_arg_all(
4875 int count,
4876 int forceit, /* hide buffers in current windows */
4877 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878{
4879 int i;
4880 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004881 char_u *opened; /* Array of weight for which args are open:
4882 * 0: not opened
4883 * 1: opened in other tab
4884 * 2: opened in curtab
4885 * 3: opened in curtab and curwin
4886 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004887 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 int use_firstwin = FALSE; /* use first window for arglist */
4889 int split_ret = OK;
4890 int p_ea_save;
4891 alist_T *alist; /* argument list to be used */
4892 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004893 tabpage_T *tpnext;
4894 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004895 win_T *old_curwin, *last_curwin;
4896 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004897 win_T *new_curwin = NULL;
4898 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899
4900 if (ARGCOUNT <= 0)
4901 {
4902 /* Don't give an error message. We don't want it when the ":all"
4903 * command is in the .vimrc. */
4904 return;
4905 }
4906 setpcmark();
4907
4908 opened_len = ARGCOUNT;
4909 opened = alloc_clear((unsigned)opened_len);
4910 if (opened == NULL)
4911 return;
4912
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004913 /* Autocommands may do anything to the argument list. Make sure it's not
4914 * freed while we are working here by "locking" it. We still have to
4915 * watch out for its size to be changed. */
4916 alist = curwin->w_alist;
4917 ++alist->al_refcount;
4918
4919 old_curwin = curwin;
4920 old_curtab = curtab;
4921
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004922# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004924# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925
4926 /*
4927 * Try closing all windows that are not in the argument list.
4928 * Also close windows that are not full width;
4929 * When 'hidden' or "forceit" set the buffer becomes hidden.
4930 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004931 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004933 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004934 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004935 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004937 tpnext = curtab->tp_next;
4938 for (wp = firstwin; wp != NULL; wp = wpnext)
4939 {
4940 wpnext = wp->w_next;
4941 buf = wp->w_buffer;
4942 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004943 || (!keep_tabs && (buf->b_nwindows > 1
4944 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004945 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004946 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004948 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004949 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004951 if (i < alist->al_ga.ga_len
4952 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4953 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4954 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004956 int weight = 1;
4957
4958 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004959 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004960 ++weight;
4961 if (old_curwin == wp)
4962 ++weight;
4963 }
4964
4965 if (weight > (int)opened[i])
4966 {
4967 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004968 if (i == 0)
4969 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004970 if (new_curwin != NULL)
4971 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004972 new_curwin = wp;
4973 new_curtab = curtab;
4974 }
4975 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004976 else if (keep_tabs)
4977 i = opened_len;
4978
4979 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004980 {
4981 /* Use the current argument list for all windows
4982 * containing a file from it. */
4983 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004984 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004985 ++wp->w_alist->al_refcount;
4986 }
4987 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 }
4990 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004991 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004993 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004995 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004996 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004998 /* If the buffer was changed, and we would like to hide it,
4999 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005000 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005001 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005003 bufref_T bufref;
5004
5005 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005006
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005007 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005008
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005009 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005010 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005011 {
5012 wpnext = firstwin; /* start all over... */
5013 continue;
5014 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005015 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005016 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005017 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005018 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005019 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005020 else
5021 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005022 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005023
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005024 /* check if autocommands removed the next window */
5025 if (!win_valid(wpnext))
5026 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 }
5030 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005031
5032 /* Without the ":tab" modifier only do the current tab page. */
5033 if (had_tab == 0 || tpnext == NULL)
5034 break;
5035
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005036 /* check if autocommands removed the next tab page */
5037 if (!valid_tabpage(tpnext))
5038 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005039
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005040 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 }
5042
5043 /*
5044 * Open a window for files in the argument list that don't have one.
5045 * ARGCOUNT may change while doing this, because of autocommands.
5046 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005047 if (count > opened_len || count <= 0)
5048 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5051 ++autocmd_no_enter;
5052 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005053 last_curwin = curwin;
5054 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005056 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5057 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005058 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005059 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5060 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005061
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005062 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 {
5064 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5065 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005066 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 {
5068 /* Move the already present window to below the current window */
5069 if (curwin->w_arg_idx != i)
5070 {
5071 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5072 {
5073 if (wpnext->w_arg_idx == i)
5074 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005075 if (keep_tabs)
5076 {
5077 new_curwin = wpnext;
5078 new_curtab = curtab;
5079 }
5080 else
5081 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 break;
5083 }
5084 }
5085 }
5086 }
5087 else if (split_ret == OK)
5088 {
5089 if (!use_firstwin) /* split current window */
5090 {
5091 p_ea_save = p_ea;
5092 p_ea = TRUE; /* use space from all windows */
5093 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5094 p_ea = p_ea_save;
5095 if (split_ret == FAIL)
5096 continue;
5097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 else /* first window: do autocmd for leaving this buffer */
5099 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100
5101 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005102 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 */
5104 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005105 if (i == 0)
5106 {
5107 new_curwin = curwin;
5108 new_curtab = curtab;
5109 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5111 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005112 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005114 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 if (use_firstwin)
5116 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 use_firstwin = FALSE;
5118 }
5119 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005120
5121 /* When ":tab" was used open a new tab for a new window repeatedly. */
5122 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5123 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 }
5125
5126 /* Remove the "lock" on the argument list. */
5127 alist_unlink(alist);
5128
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005130
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005131 /* restore last referenced tabpage's curwin */
5132 if (last_curtab != new_curtab)
5133 {
5134 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005135 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005136 if (win_valid(last_curwin))
5137 win_enter(last_curwin, FALSE);
5138 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005139 /* to window with first arg */
5140 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005141 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005142 if (win_valid(new_curwin))
5143 win_enter(new_curwin, FALSE);
5144
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 vim_free(opened);
5147}
5148
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149/*
5150 * Open a window for a number of buffers.
5151 */
5152 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005153ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154{
5155 buf_T *buf;
5156 win_T *wp, *wpnext;
5157 int split_ret = OK;
5158 int p_ea_save;
5159 int open_wins = 0;
5160 int r;
5161 int count; /* Maximum number of windows to open. */
5162 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005163 int had_tab = cmdmod.tab;
5164 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165
5166 if (eap->addr_count == 0) /* make as many windows as possible */
5167 count = 9999;
5168 else
5169 count = eap->line2; /* make as many windows as specified */
5170 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5171 all = FALSE;
5172 else
5173 all = TRUE;
5174
5175 setpcmark();
5176
5177#ifdef FEAT_GUI
5178 need_mouse_correct = TRUE;
5179#endif
5180
5181 /*
5182 * Close superfluous windows (two windows for the same buffer).
5183 * Also close windows that are not full-width.
5184 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005185 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005186 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005187 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005189 tpnext = curtab->tp_next;
5190 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005192 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005193 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005194 || ((cmdmod.split & WSP_VERT)
5195 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005196 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005197 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005198 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005199 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005200 {
5201 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005202 wpnext = firstwin; /* just in case an autocommand does
5203 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005204 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005205 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005206 }
5207 else
5208 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005210
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005211 /* Without the ":tab" modifier only do the current tab page. */
5212 if (had_tab == 0 || tpnext == NULL)
5213 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005214 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 }
5216
5217 /*
5218 * Go through the buffer list. When a buffer doesn't have a window yet,
5219 * open one. Otherwise move the window to the right position.
5220 * Watch out for autocommands that delete buffers or windows!
5221 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5223 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5227 {
5228 /* Check if this buffer needs a window */
5229 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5230 continue;
5231
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005232 if (had_tab != 0)
5233 {
5234 /* With the ":tab" modifier don't move the window. */
5235 if (buf->b_nwindows > 0)
5236 wp = lastwin; /* buffer has a window, skip it */
5237 else
5238 wp = NULL;
5239 }
5240 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005241 {
5242 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005243 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005244 if (wp->w_buffer == buf)
5245 break;
5246 /* If the buffer already has a window, move it */
5247 if (wp != NULL)
5248 win_move_after(wp, curwin);
5249 }
5250
5251 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005253 bufref_T bufref;
5254
5255 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005256
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 /* Split the window and put the buffer in it */
5258 p_ea_save = p_ea;
5259 p_ea = TRUE; /* use space from all windows */
5260 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5261 ++open_wins;
5262 p_ea = p_ea_save;
5263 if (split_ret == FAIL)
5264 continue;
5265
5266 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005267#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 swap_exists_action = SEA_DIALOG;
5269#endif
5270 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005271 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005273 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005274#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005276#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 break;
5278 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005279#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 if (swap_exists_action == SEA_QUIT)
5281 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005282# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005283 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005284
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005285 /* Reset the error/interrupt/exception state here so that
5286 * aborting() returns FALSE when closing a window. */
5287 enter_cleanup(&cs);
5288# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005289
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005290 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 win_close(curwin, TRUE);
5292 --open_wins;
5293 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005294 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005295
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005296# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005297 /* Restore the error/interrupt/exception state if not
5298 * discarded by a new aborting error, interrupt, or uncaught
5299 * exception. */
5300 leave_cleanup(&cs);
5301# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 }
5303 else
5304 handle_swap_exists(NULL);
5305#endif
5306 }
5307
5308 ui_breakcheck();
5309 if (got_int)
5310 {
5311 (void)vgetc(); /* only break the file loading, not the rest */
5312 break;
5313 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005314#ifdef FEAT_EVAL
5315 /* Autocommands deleted the buffer or aborted script processing!!! */
5316 if (aborting())
5317 break;
5318#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005319 /* When ":tab" was used open a new tab for a new window repeatedly. */
5320 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5321 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326
5327 /*
5328 * Close superfluous windows.
5329 */
5330 for (wp = lastwin; open_wins > count; )
5331 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005332 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 if (!win_valid(wp))
5335 {
5336 /* BufWrite Autocommands made the window invalid, start over */
5337 wp = lastwin;
5338 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005339 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005341 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 --open_wins;
5343 wp = lastwin;
5344 }
5345 else
5346 {
5347 wp = wp->w_prev;
5348 if (wp == NULL)
5349 break;
5350 }
5351 }
5352}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005355static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005356
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357/*
5358 * do_modelines() - process mode lines for the current file
5359 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005360 * "flags" can be:
5361 * OPT_WINONLY only set options local to window
5362 * OPT_NOWIN don't set options local to window
5363 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 * Returns immediately if the "ml" option isn't set.
5365 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005367do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005369 linenr_T lnum;
5370 int nmlines;
5371 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372
5373 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5374 return;
5375
5376 /* Disallow recursive entry here. Can happen when executing a modeline
5377 * triggers an autocommand, which reloads modelines with a ":do". */
5378 if (entered)
5379 return;
5380
5381 ++entered;
5382 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5383 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005384 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 nmlines = 0;
5386
5387 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5388 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005389 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 nmlines = 0;
5391 --entered;
5392}
5393
5394#include "version.h" /* for version number */
5395
5396/*
5397 * chk_modeline() - check a single line for a mode string
5398 * Return FAIL if an error encountered.
5399 */
5400 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005401chk_modeline(
5402 linenr_T lnum,
5403 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404{
5405 char_u *s;
5406 char_u *e;
5407 char_u *linecopy; /* local copy of any modeline found */
5408 int prev;
5409 int vers;
5410 int end;
5411 int retval = OK;
5412 char_u *save_sourcing_name;
5413 linenr_T save_sourcing_lnum;
5414#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005415 sctx_T save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416#endif
5417
5418 prev = -1;
5419 for (s = ml_get(lnum); *s != NUL; ++s)
5420 {
5421 if (prev == -1 || vim_isspace(prev))
5422 {
5423 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5424 || STRNCMP(s, "vi:", (size_t)3) == 0)
5425 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005426 /* Accept both "vim" and "Vim". */
5427 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 {
5429 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5430 e = s + 4;
5431 else
5432 e = s + 3;
5433 vers = getdigits(&e);
5434 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005435 && (s[0] != 'V'
5436 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 && (s[3] == ':'
5438 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5439 || (VIM_VERSION_100 < vers && s[3] == '<')
5440 || (VIM_VERSION_100 > vers && s[3] == '>')
5441 || (VIM_VERSION_100 == vers && s[3] == '=')))
5442 break;
5443 }
5444 }
5445 prev = *s;
5446 }
5447
5448 if (*s)
5449 {
5450 do /* skip over "ex:", "vi:" or "vim:" */
5451 ++s;
5452 while (s[-1] != ':');
5453
5454 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5455 if (linecopy == NULL)
5456 return FAIL;
5457
5458 save_sourcing_lnum = sourcing_lnum;
5459 save_sourcing_name = sourcing_name;
5460 sourcing_lnum = lnum; /* prepare for emsg() */
5461 sourcing_name = (char_u *)"modelines";
5462
5463 end = FALSE;
5464 while (end == FALSE)
5465 {
5466 s = skipwhite(s);
5467 if (*s == NUL)
5468 break;
5469
5470 /*
5471 * Find end of set command: ':' or end of line.
5472 * Skip over "\:", replacing it with ":".
5473 */
5474 for (e = s; *e != ':' && *e != NUL; ++e)
5475 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005476 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 if (*e == NUL)
5478 end = TRUE;
5479
5480 /*
5481 * If there is a "set" command, require a terminating ':' and
5482 * ignore the stuff after the ':'.
5483 * "vi:set opt opt opt: foo" -- foo not interpreted
5484 * "vi:opt opt opt: foo" -- foo interpreted
5485 * Accept "se" for compatibility with Elvis.
5486 */
5487 if (STRNCMP(s, "set ", (size_t)4) == 0
5488 || STRNCMP(s, "se ", (size_t)3) == 0)
5489 {
5490 if (*e != ':') /* no terminating ':'? */
5491 break;
5492 end = TRUE;
5493 s = vim_strchr(s, ' ') + 1;
5494 }
5495 *e = NUL; /* truncate the set command */
5496
5497 if (*s != NUL) /* skip over an empty "::" */
5498 {
5499#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005500 save_current_sctx = current_sctx;
5501 current_sctx.sc_sid = SID_MODELINE;
5502 current_sctx.sc_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005504 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005506 current_sctx = save_current_sctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507#endif
5508 if (retval == FAIL) /* stop if error found */
5509 break;
5510 }
5511 s = e + 1; /* advance to next part */
5512 }
5513
5514 sourcing_lnum = save_sourcing_lnum;
5515 sourcing_name = save_sourcing_name;
5516
5517 vim_free(linecopy);
5518 }
5519 return retval;
5520}
5521
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005522#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005524read_viminfo_bufferlist(
5525 vir_T *virp,
5526 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527{
5528 char_u *tab;
5529 linenr_T lnum;
5530 colnr_T col;
5531 buf_T *buf;
5532 char_u *sfname;
5533 char_u *xline;
5534
5535 /* Handle long line and escaped characters. */
5536 xline = viminfo_readstring(virp, 1, FALSE);
5537
5538 /* don't read in if there are files on the command-line or if writing: */
5539 if (xline != NULL && !writing && ARGCOUNT == 0
5540 && find_viminfo_parameter('%') != NULL)
5541 {
5542 /* Format is: <fname> Tab <lnum> Tab <col>.
5543 * Watch out for a Tab in the file name, work from the end. */
5544 lnum = 0;
5545 col = 0;
5546 tab = vim_strrchr(xline, '\t');
5547 if (tab != NULL)
5548 {
5549 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005550 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 tab = vim_strrchr(xline, '\t');
5552 if (tab != NULL)
5553 {
5554 *tab++ = '\0';
5555 lnum = atol((char *)tab);
5556 }
5557 }
5558
5559 /* Expand "~/" in the file name at "line + 1" to a full path.
5560 * Then try shortening it by comparing with the current directory */
5561 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005562 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563
5564 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5565 if (buf != NULL) /* just in case... */
5566 {
5567 buf->b_last_cursor.lnum = lnum;
5568 buf->b_last_cursor.col = col;
5569 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5570 }
5571 }
5572 vim_free(xline);
5573
5574 return viminfo_readline(virp);
5575}
5576
5577 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005578write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579{
5580 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005582 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005584 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
5586 if (find_viminfo_parameter('%') == NULL)
5587 return;
5588
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005589 /* Without a number -1 is returned: do all buffers. */
5590 max_buffers = get_viminfo_parameter('%');
5591
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005593#define LINE_BUF_LEN (MAXPATHL + 40)
5594 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 if (line == NULL)
5596 return;
5597
Bram Moolenaarf740b292006-02-16 22:11:02 +00005598 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005601 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005602 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 {
5604 if (buf->b_fname == NULL
5605 || !buf->b_p_bl
5606#ifdef FEAT_QUICKFIX
5607 || bt_quickfix(buf)
5608#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005609#ifdef FEAT_TERMINAL
5610 || bt_terminal(buf)
5611#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 || removable(buf->b_ffname))
5613 continue;
5614
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005615 if (max_buffers-- == 0)
5616 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 putc('%', fp);
5618 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005619 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 (long)buf->b_last_cursor.lnum,
5621 buf->b_last_cursor.col);
5622 viminfo_writestring(fp, line);
5623 }
5624 vim_free(line);
5625}
5626#endif
5627
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005628/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005629 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5630 */
5631 int
5632bt_normal(buf_T *buf)
5633{
5634 return buf != NULL && buf->b_p_bt[0] == NUL;
5635}
5636
5637/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005638 * Return TRUE if "buf" is the quickfix buffer.
5639 */
5640 int
5641bt_quickfix(buf_T *buf)
5642{
5643 return buf != NULL && buf->b_p_bt[0] == 'q';
5644}
5645
5646/*
5647 * Return TRUE if "buf" is a terminal buffer.
5648 */
5649 int
5650bt_terminal(buf_T *buf)
5651{
5652 return buf != NULL && buf->b_p_bt[0] == 't';
5653}
5654
5655/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005656 * Return TRUE if "buf" is a help buffer.
5657 */
5658 int
5659bt_help(buf_T *buf)
5660{
5661 return buf != NULL && buf->b_help;
5662}
5663
5664/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005665 * Return TRUE if "buf" is a prompt buffer.
5666 */
5667 int
5668bt_prompt(buf_T *buf)
5669{
5670 return buf != NULL && buf->b_p_bt[0] == 'p';
5671}
5672
5673/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005674 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5675 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005676 */
5677 int
5678bt_nofile(buf_T *buf)
5679{
5680 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5681 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005682 || buf->b_p_bt[0] == 't'
5683 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005684}
5685
5686/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005687 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5688 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005689 */
5690 int
5691bt_dontwrite(buf_T *buf)
5692{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005693 return buf != NULL && (buf->b_p_bt[0] == 'n'
5694 || buf->b_p_bt[0] == 't'
5695 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005696}
5697
5698 int
5699bt_dontwrite_msg(buf_T *buf)
5700{
5701 if (bt_dontwrite(buf))
5702 {
5703 EMSG(_("E382: Cannot write, 'buftype' option is set"));
5704 return TRUE;
5705 }
5706 return FALSE;
5707}
5708
5709/*
5710 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5711 * and 'bufhidden'.
5712 */
5713 int
5714buf_hide(buf_T *buf)
5715{
5716 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5717 switch (buf->b_p_bh[0])
5718 {
5719 case 'u': /* "unload" */
5720 case 'w': /* "wipe" */
5721 case 'd': return FALSE; /* "delete" */
5722 case 'h': return TRUE; /* "hide" */
5723 }
5724 return (p_hid || cmdmod.hide);
5725}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726
5727/*
5728 * Return special buffer name.
5729 * Returns NULL when the buffer has a normal file name.
5730 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005731 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005732buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005734#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005736 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005737 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005738 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005739
5740 /*
5741 * For location list window, w_llist_ref points to the location list.
5742 * For quickfix window, w_llist_ref is NULL.
5743 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005744 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005745 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005746 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005747 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005750
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005752 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 if (bt_nofile(buf))
5754 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005755#ifdef FEAT_TERMINAL
5756 if (buf->b_term != NULL)
5757 return term_get_status_text(buf->b_term);
5758#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005759 if (buf->b_fname != NULL)
5760 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005761#ifdef FEAT_JOB_CHANNEL
5762 if (bt_prompt(buf))
5763 return (char_u *)_("[Prompt]");
5764#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005765 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005767
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005769 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 return NULL;
5771}
5772
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005773#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005774 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5775 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005776# define SWITCH_TO_WIN
5777
5778/*
5779 * Find a window that contains "buf" and switch to it.
5780 * If there is no such window, use the current window and change "curbuf".
5781 * Caller must initialize save_curbuf to NULL.
5782 * restore_win_for_buf() MUST be called later!
5783 */
5784 void
5785switch_to_win_for_buf(
5786 buf_T *buf,
5787 win_T **save_curwinp,
5788 tabpage_T **save_curtabp,
5789 bufref_T *save_curbuf)
5790{
5791 win_T *wp;
5792 tabpage_T *tp;
5793
5794 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5795 switch_buffer(save_curbuf, buf);
5796 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5797 {
5798 restore_win(*save_curwinp, *save_curtabp, TRUE);
5799 switch_buffer(save_curbuf, buf);
5800 }
5801}
5802
5803 void
5804restore_win_for_buf(
5805 win_T *save_curwin,
5806 tabpage_T *save_curtab,
5807 bufref_T *save_curbuf)
5808{
5809 if (save_curbuf->br_buf == NULL)
5810 restore_win(save_curwin, save_curtab, TRUE);
5811 else
5812 restore_buffer(save_curbuf);
5813}
5814#endif
5815
Bram Moolenaar4033c552017-09-16 20:54:51 +02005816#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005817/*
5818 * Find a window for buffer "buf".
5819 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5820 * If not found FAIL is returned.
5821 */
5822 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005823find_win_for_buf(
5824 buf_T *buf,
5825 win_T **wp,
5826 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005827{
5828 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5829 if ((*wp)->w_buffer == buf)
5830 goto win_found;
5831 return FAIL;
5832win_found:
5833 return OK;
5834}
5835#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836
5837#if defined(FEAT_SIGNS) || defined(PROTO)
5838/*
5839 * Insert the sign into the signlist.
5840 */
5841 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005842insert_sign(
5843 buf_T *buf, /* buffer to store sign in */
5844 signlist_T *prev, /* previous sign entry */
5845 signlist_T *next, /* next sign entry */
5846 int id, /* sign ID */
5847 linenr_T lnum, /* line number which gets the mark */
5848 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849{
5850 signlist_T *newsign;
5851
5852 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5853 if (newsign != NULL)
5854 {
5855 newsign->id = id;
5856 newsign->lnum = lnum;
5857 newsign->typenr = typenr;
5858 newsign->next = next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 newsign->prev = prev;
5860 if (next != NULL)
5861 next->prev = newsign;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862
5863 if (prev == NULL)
5864 {
5865 /* When adding first sign need to redraw the windows to create the
5866 * column for signs. */
5867 if (buf->b_signlist == NULL)
5868 {
5869 redraw_buf_later(buf, NOT_VALID);
5870 changed_cline_bef_curs();
5871 }
5872
5873 /* first sign in signlist */
5874 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005875#ifdef FEAT_NETBEANS_INTG
5876 if (netbeans_active())
5877 buf->b_has_sign_column = TRUE;
5878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 }
5880 else
5881 prev->next = newsign;
5882 }
5883}
5884
5885/*
5886 * Add the sign into the signlist. Find the right spot to do it though.
5887 */
5888 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005889buf_addsign(
5890 buf_T *buf, /* buffer to store sign in */
5891 int id, /* sign ID */
5892 linenr_T lnum, /* line number which gets the mark */
5893 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894{
5895 signlist_T *sign; /* a sign in the signlist */
5896 signlist_T *prev; /* the previous sign */
5897
5898 prev = NULL;
5899 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5900 {
5901 if (lnum == sign->lnum && id == sign->id)
5902 {
5903 sign->typenr = typenr;
5904 return;
5905 }
Bram Moolenaar8aeb5042018-09-13 18:33:05 +02005906 else if (lnum < sign->lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907 {
Bram Moolenaar8aeb5042018-09-13 18:33:05 +02005908 // keep signs sorted by lnum: insert new sign at head of list for
5909 // this lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 while (prev != NULL && prev->lnum == lnum)
5911 prev = prev->prev;
5912 if (prev == NULL)
5913 sign = buf->b_signlist;
5914 else
5915 sign = prev->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 insert_sign(buf, prev, sign, id, lnum, typenr);
5917 return;
5918 }
5919 prev = sign;
5920 }
Bram Moolenaar8aeb5042018-09-13 18:33:05 +02005921
5922 // insert new sign at head of list for this lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 while (prev != NULL && prev->lnum == lnum)
5924 prev = prev->prev;
5925 if (prev == NULL)
5926 sign = buf->b_signlist;
5927 else
5928 sign = prev->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 insert_sign(buf, prev, sign, id, lnum, typenr);
5930
5931 return;
5932}
5933
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005934/*
5935 * For an existing, placed sign "markId" change the type to "typenr".
5936 * Returns the line number of the sign, or zero if the sign is not found.
5937 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005938 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005939buf_change_sign_type(
5940 buf_T *buf, /* buffer to store sign in */
5941 int markId, /* sign ID */
5942 int typenr) /* typenr of sign we are adding */
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 {
5948 if (sign->id == markId)
5949 {
5950 sign->typenr = typenr;
5951 return sign->lnum;
5952 }
5953 }
5954
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005955 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956}
5957
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005958 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005959buf_getsigntype(
5960 buf_T *buf,
5961 linenr_T lnum,
5962 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963{
5964 signlist_T *sign; /* a sign in a b_signlist */
5965
5966 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5967 if (sign->lnum == lnum
5968 && (type == SIGN_ANY
5969# ifdef FEAT_SIGN_ICONS
5970 || (type == SIGN_ICON
5971 && sign_get_image(sign->typenr) != NULL)
5972# endif
5973 || (type == SIGN_TEXT
5974 && sign_get_text(sign->typenr) != NULL)
5975 || (type == SIGN_LINEHL
5976 && sign_get_attr(sign->typenr, TRUE) != 0)))
5977 return sign->typenr;
5978 return 0;
5979}
5980
5981
5982 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005983buf_delsign(
5984 buf_T *buf, /* buffer sign is stored in */
5985 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986{
5987 signlist_T **lastp; /* pointer to pointer to current sign */
5988 signlist_T *sign; /* a sign in a b_signlist */
5989 signlist_T *next; /* the next sign in a b_signlist */
5990 linenr_T lnum; /* line number whose sign was deleted */
5991
5992 lastp = &buf->b_signlist;
5993 lnum = 0;
5994 for (sign = buf->b_signlist; sign != NULL; sign = next)
5995 {
5996 next = sign->next;
5997 if (sign->id == id)
5998 {
5999 *lastp = next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 if (next != NULL)
6001 next->prev = sign->prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 lnum = sign->lnum;
6003 vim_free(sign);
6004 break;
6005 }
6006 else
6007 lastp = &sign->next;
6008 }
6009
6010 /* When deleted the last sign need to redraw the windows to remove the
6011 * sign column. */
6012 if (buf->b_signlist == NULL)
6013 {
6014 redraw_buf_later(buf, NOT_VALID);
6015 changed_cline_bef_curs();
6016 }
6017
6018 return lnum;
6019}
6020
6021
6022/*
6023 * Find the line number of the sign with the requested id. If the sign does
6024 * not exist, return 0 as the line number. This will still let the correct file
6025 * get loaded.
6026 */
6027 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006028buf_findsign(
6029 buf_T *buf, /* buffer to store sign in */
6030 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031{
6032 signlist_T *sign; /* a sign in the signlist */
6033
6034 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6035 if (sign->id == id)
6036 return sign->lnum;
6037
6038 return 0;
6039}
6040
6041 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006042buf_findsign_id(
6043 buf_T *buf, /* buffer whose sign we are searching for */
6044 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045{
6046 signlist_T *sign; /* a sign in the signlist */
6047
6048 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6049 if (sign->lnum == lnum)
6050 return sign->id;
6051
6052 return 0;
6053}
6054
6055
6056# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
Bram Moolenaar8aeb5042018-09-13 18:33:05 +02006057/*
6058 * See if a given type of sign exists on a specific line.
6059 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006061buf_findsigntype_id(
6062 buf_T *buf, /* buffer whose sign we are searching for */
6063 linenr_T lnum, /* line number of sign */
6064 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065{
6066 signlist_T *sign; /* a sign in the signlist */
6067
6068 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6069 if (sign->lnum == lnum && sign->typenr == typenr)
6070 return sign->id;
6071
6072 return 0;
6073}
6074
6075
6076# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar8aeb5042018-09-13 18:33:05 +02006077/*
6078 * Return the number of icons on the given line.
6079 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006081buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082{
6083 signlist_T *sign; /* a sign in the signlist */
6084 int count = 0;
6085
6086 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6087 if (sign->lnum == lnum)
6088 if (sign_get_image(sign->typenr) != NULL)
6089 count++;
6090
6091 return count;
6092}
6093# endif /* FEAT_SIGN_ICONS */
6094# endif /* FEAT_NETBEANS_INTG */
6095
6096
6097/*
6098 * Delete signs in buffer "buf".
6099 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02006100 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006101buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102{
6103 signlist_T *next;
6104
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006105 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02006106 * sign column. Not when curwin is NULL (this means we're exiting). */
6107 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006108 {
6109 redraw_buf_later(buf, NOT_VALID);
6110 changed_cline_bef_curs();
6111 }
6112
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 while (buf->b_signlist != NULL)
6114 {
6115 next = buf->b_signlist->next;
6116 vim_free(buf->b_signlist);
6117 buf->b_signlist = next;
6118 }
6119}
6120
6121/*
6122 * Delete all signs in all buffers.
6123 */
6124 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006125buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126{
6127 buf_T *buf; /* buffer we are checking for signs */
6128
Bram Moolenaar29323592016-07-24 22:04:11 +02006129 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132}
6133
6134/*
6135 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6136 */
6137 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006138sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139{
6140 buf_T *buf;
6141 signlist_T *p;
6142 char lbuf[BUFSIZ];
6143
6144 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6145 msg_putchar('\n');
6146 if (rbuf == NULL)
6147 buf = firstbuf;
6148 else
6149 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006150 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 {
6152 if (buf->b_signlist != NULL)
6153 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006154 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006155 MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 msg_putchar('\n');
6157 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006158 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006160 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6162 MSG_PUTS(lbuf);
6163 msg_putchar('\n');
6164 }
6165 if (rbuf != NULL)
6166 break;
6167 buf = buf->b_next;
6168 }
6169}
6170
6171/*
6172 * Adjust a placed sign for inserted/deleted lines.
6173 */
6174 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006175sign_mark_adjust(
6176 linenr_T line1,
6177 linenr_T line2,
6178 long amount,
6179 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180{
6181 signlist_T *sign; /* a sign in a b_signlist */
6182
6183 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6184 {
6185 if (sign->lnum >= line1 && sign->lnum <= line2)
6186 {
6187 if (amount == MAXLNUM)
6188 sign->lnum = line1;
6189 else
6190 sign->lnum += amount;
6191 }
6192 else if (sign->lnum > line2)
6193 sign->lnum += amount_after;
6194 }
6195}
6196#endif /* FEAT_SIGNS */
6197
6198/*
6199 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6200 */
6201 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006202set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203{
6204 if (on != curbuf->b_p_bl)
6205 {
6206 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207 if (on)
6208 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6209 else
6210 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 }
6212}
6213
6214/*
6215 * Read the file for "buf" again and check if the contents changed.
6216 * Return TRUE if it changed or this could not be checked.
6217 */
6218 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006219buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220{
6221 buf_T *newbuf;
6222 int differ = TRUE;
6223 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225 exarg_T ea;
6226
6227 /* Allocate a buffer without putting it in the buffer list. */
6228 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6229 if (newbuf == NULL)
6230 return TRUE;
6231
6232 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6233 if (prep_exarg(&ea, buf) == FAIL)
6234 {
6235 wipe_buffer(newbuf, FALSE);
6236 return TRUE;
6237 }
6238
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239 /* set curwin/curbuf to buf and save a few things */
6240 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241
Bram Moolenaar4770d092006-01-12 23:22:24 +00006242 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 && readfile(buf->b_ffname, buf->b_fname,
6244 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6245 &ea, READ_NEW | READ_DUMMY) == OK)
6246 {
6247 /* compare the two files line by line */
6248 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6249 {
6250 differ = FALSE;
6251 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6252 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6253 {
6254 differ = TRUE;
6255 break;
6256 }
6257 }
6258 }
6259 vim_free(ea.cmd);
6260
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 /* restore curwin/curbuf and a few other things */
6262 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263
6264 if (curbuf != newbuf) /* safety check */
6265 wipe_buffer(newbuf, FALSE);
6266
6267 return differ;
6268}
6269
6270/*
6271 * Wipe out a buffer and decrement the last buffer number if it was used for
6272 * this buffer. Call this to wipe out a temp buffer that does not contain any
6273 * marks.
6274 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006276wipe_buffer(
6277 buf_T *buf,
6278 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279{
6280 if (buf->b_fnum == top_file_num - 1)
6281 --top_file_num;
6282
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006284 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006285
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006286 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006287
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006289 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290}