blob: 6bcd28b36c1283c09df993499dc64eb074c923d6 [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
54#if defined(FEAT_SIGNS)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010055static void insert_sign(buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000056#endif
57
Bram Moolenaar4033c552017-09-16 20:54:51 +020058#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020059static char *msg_loclist = N_("[Location List]");
60static char *msg_qflist = N_("[Quickfix List]");
61#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010062static char *e_auabort = N_("E855: Autocommands caused command to abort");
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020064/* Number of times free_buffer() was called. */
65static int buf_free_count = 0;
66
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020067/* Read data from buffer for retrying. */
68 static int
69read_buffer(
70 int read_stdin, /* read file from stdin, otherwise fifo */
71 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
72 int flags) /* extra flags for readfile() */
73{
74 int retval = OK;
75 linenr_T line_count;
76
77 /*
78 * Read from the buffer which the text is already filled in and append at
79 * the end. This makes it possible to retry when 'fileformat' or
80 * 'fileencoding' was guessed wrong.
81 */
82 line_count = curbuf->b_ml.ml_line_count;
83 retval = readfile(
84 read_stdin ? NULL : curbuf->b_ffname,
85 read_stdin ? NULL : curbuf->b_fname,
86 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
87 flags | READ_BUFFER);
88 if (retval == OK)
89 {
90 /* Delete the binary lines. */
91 while (--line_count >= 0)
92 ml_delete((linenr_T)1, FALSE);
93 }
94 else
95 {
96 /* Delete the converted lines. */
97 while (curbuf->b_ml.ml_line_count > line_count)
98 ml_delete(line_count, FALSE);
99 }
100 /* Put the cursor on the first line. */
101 curwin->w_cursor.lnum = 1;
102 curwin->w_cursor.col = 0;
103
104 if (read_stdin)
105 {
106 /* Set or reset 'modified' before executing autocommands, so that
107 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100108 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200109 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100110 else if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200111 unchanged(curbuf, FALSE);
112
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100113 if (retval == OK)
114 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100115#ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100116 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100117 curbuf, &retval);
118#else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100119 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200120#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100121 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200122 }
123 return retval;
124}
125
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200127 * Open current buffer, that is: open the memfile and read the file into
128 * memory.
129 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 */
131 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100132open_buffer(
133 int read_stdin, /* read file from stdin */
134 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
135 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136{
137 int retval = OK;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200138 bufref_T old_curbuf;
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100139#ifdef FEAT_SYN_HL
140 long old_tw = curbuf->b_p_tw;
141#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200142 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
144 /*
145 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
146 * When re-entering the same buffer, it should not change, because the
147 * user may have reset the flag by hand.
148 */
149 if (readonlymode && curbuf->b_ffname != NULL
150 && (curbuf->b_flags & BF_NEVERLOADED))
151 curbuf->b_p_ro = TRUE;
152
Bram Moolenaar4770d092006-01-12 23:22:24 +0000153 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 {
155 /*
156 * There MUST be a memfile, otherwise we can't do anything
157 * If we can't create one for the current buffer, take another buffer
158 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100159 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200160 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 if (curbuf->b_ml.ml_mfp != NULL)
162 break;
163 /*
164 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000165 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 */
167 if (curbuf == NULL)
168 {
169 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
170 getout(2);
171 }
172 EMSG(_("E83: Cannot allocate buffer, using other one..."));
173 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100174#ifdef FEAT_SYN_HL
175 if (old_tw != curbuf->b_p_tw)
176 check_colorcolumn(curwin);
177#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 return FAIL;
179 }
180
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 /* The autocommands in readfile() may change the buffer, but only AFTER
182 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200183 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 modified_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
186 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100187 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
189 if (curbuf->b_ffname != NULL
190#ifdef FEAT_NETBEANS_INTG
191 && netbeansReadFile
192#endif
193 )
194 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100195 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200196#ifdef UNIX
197 int save_bin = curbuf->b_p_bin;
198 int perm;
199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200#ifdef FEAT_NETBEANS_INTG
201 int oldFire = netbeansFireChanges;
202
203 netbeansFireChanges = 0;
204#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200205#ifdef UNIX
206 perm = mch_getperm(curbuf->b_ffname);
Bram Moolenaard569bb02018-08-11 13:57:20 +0200207 if (perm >= 0 && (S_ISFIFO(perm)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200208 || S_ISSOCK(perm)
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200209# ifdef OPEN_CHR_FILES
210 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
211# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200212 ))
213 read_fifo = TRUE;
214 if (read_fifo)
215 curbuf->b_p_bin = TRUE;
216#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100217 if (shortmess(SHM_FILEINFO))
218 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200220 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200221 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
222#ifdef UNIX
223 if (read_fifo)
224 {
225 curbuf->b_p_bin = save_bin;
226 if (retval == OK)
227 retval = read_buffer(FALSE, eap, flags);
228 }
229#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100230 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231#ifdef FEAT_NETBEANS_INTG
232 netbeansFireChanges = oldFire;
233#endif
234 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200235 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 fix_help_buffer();
237 }
238 else if (read_stdin)
239 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200240 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
242 /*
243 * First read the text in binary mode into the buffer.
244 * Then read from that same buffer and append at the end. This makes
245 * it possible to retry when 'fileformat' or 'fileencoding' was
246 * guessed wrong.
247 */
248 curbuf->b_p_bin = TRUE;
249 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200250 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
251 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 curbuf->b_p_bin = save_bin;
253 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 }
256
257 /* if first time loading this buffer, init b_chartab[] */
258 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100259 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100261#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100262 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100263#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100264 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
266 /*
267 * Set/reset the Changed flag first, autocmds may change the buffer.
268 * Apply the automatic commands, before processing the modelines.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200269 * So the modelines have priority over autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 */
271 /* When reading stdin, the buffer contents always needs writing, so set
272 * the changed flag. Unless in readonly mode: "ls | gview -".
273 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000274 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 || modified_was_set /* ":set modified" used in autocmd */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100276#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000279 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100281 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 unchanged(curbuf, FALSE);
283 save_file_ff(curbuf); /* keep this fileformat */
284
Bram Moolenaar8c64a362018-03-23 22:39:31 +0100285 /* Set last_changedtick to avoid triggering a TextChanged autocommand right
286 * after it was added. */
287 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
288#ifdef FEAT_INS_EXPAND
289 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
290#endif
291
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 /* require "!" to overwrite the file, because it wasn't read completely */
293#ifdef FEAT_EVAL
294 if (aborting())
295#else
296 if (got_int)
297#endif
298 curbuf->b_flags |= BF_READERR;
299
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000300#ifdef FEAT_FOLDING
301 /* Need to update automatic folding. Do this before the autocommands,
302 * they may use the fold info. */
303 foldUpdateAll(curwin);
304#endif
305
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 /* need to set w_topline, unless some autocommand already did that. */
307 if (!(curwin->w_valid & VALID_TOPLINE))
308 {
309 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100310#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100314#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100316#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318#endif
319
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100320 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 /*
323 * The autocommands may have changed the current buffer. Apply the
324 * modelines to the correct buffer, if it still exists and is loaded.
325 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200326 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 {
328 aco_save_T aco;
329
330 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200331 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +0000332 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
334
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100335#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100337 &retval);
338#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341
342 /* restore curwin/curbuf and a few other things */
343 aucmd_restbuf(&aco);
344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 }
346
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 return retval;
348}
349
350/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200351 * Store "buf" in "bufref" and set the free count.
352 */
353 void
354set_bufref(bufref_T *bufref, buf_T *buf)
355{
356 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200357 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200358 bufref->br_buf_free_count = buf_free_count;
359}
360
361/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200362 * Return TRUE if "bufref->br_buf" points to the same buffer as when
363 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200364 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200365 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
366 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200367 */
368 int
369bufref_valid(bufref_T *bufref)
370{
371 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200372 ? TRUE : buf_valid(bufref->br_buf)
373 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200374}
375
376/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200378 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 */
380 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100381buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382{
383 buf_T *bp;
384
Bram Moolenaar82404332016-07-10 17:00:38 +0200385 /* Assume that we more often have a recent buffer, start with the last
386 * one. */
387 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 if (bp == buf)
389 return TRUE;
390 return FALSE;
391}
392
393/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200394 * A hash table used to quickly lookup a buffer by its number.
395 */
396static hashtab_T buf_hashtab;
397
398 static void
399buf_hashtab_add(buf_T *buf)
400{
401 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
402 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
403 EMSG(_("E931: Buffer cannot be registered"));
404}
405
406 static void
407buf_hashtab_remove(buf_T *buf)
408{
409 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
410
411 if (!HASHITEM_EMPTY(hi))
412 hash_remove(&buf_hashtab, hi);
413}
414
Bram Moolenaara997b452018-04-17 23:24:06 +0200415static char *e_buflocked = N_("E937: Attempt to delete a buffer that is in use");
416
Bram Moolenaar480778b2016-07-14 22:09:39 +0200417/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 * Close the link to a buffer.
419 * "action" is used when there is no longer a window for the buffer.
420 * It can be:
421 * 0 buffer becomes hidden
422 * DOBUF_UNLOAD buffer is unloaded
423 * DOBUF_DELETE buffer is unloaded and removed from buffer list
424 * DOBUF_WIPE buffer is unloaded and really deleted
425 * When doing all but the first one on the current buffer, the caller should
426 * get a new buffer very soon!
427 *
428 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100429 *
430 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
431 * cause there to be only one window with this buffer. e.g. when ":quit" is
432 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 */
434 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100435close_buffer(
436 win_T *win, /* if not NULL, set b_last_cursor */
437 buf_T *buf,
438 int action,
439 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100442 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200443 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100444 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200445 win_T *the_curwin = curwin;
446 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 int unload_buf = (action != 0);
448 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
449 int wipe_buf = (action == DOBUF_WIPE);
450
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200451 /*
452 * Force unloading or deleting when 'bufhidden' says so.
453 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
454 * "hide" (otherwise we could never free or delete a buffer).
455 */
456 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
457 {
458 del_buf = TRUE;
459 unload_buf = TRUE;
460 }
461 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
462 {
463 del_buf = TRUE;
464 unload_buf = TRUE;
465 wipe_buf = TRUE;
466 }
467 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
468 unload_buf = TRUE;
469
Bram Moolenaar94053a52017-08-01 21:44:33 +0200470#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200471 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200472 {
473 if (term_job_running(buf->b_term))
474 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200475 if (wipe_buf || unload_buf)
Bram Moolenaara997b452018-04-17 23:24:06 +0200476 {
477 if (buf->b_locked)
478 {
479 EMSG(_(e_buflocked));
480 return;
481 }
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200482 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200483 free_terminal(buf);
Bram Moolenaara997b452018-04-17 23:24:06 +0200484 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200485 else
486 {
487 /* The job keeps running, hide the buffer. */
488 del_buf = FALSE;
489 unload_buf = FALSE;
490 }
491 }
492 else
493 {
494 /* A terminal buffer is wiped out if the job has finished. */
495 del_buf = TRUE;
496 unload_buf = TRUE;
497 wipe_buf = TRUE;
498 }
499 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200500#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200502 /* Disallow deleting the buffer when it is locked (already being closed or
503 * halfway a command that relies on it). Unloading is allowed. */
504 if (buf->b_locked > 0 && (del_buf || wipe_buf))
505 {
Bram Moolenaara997b452018-04-17 23:24:06 +0200506 EMSG(_(e_buflocked));
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200507 return;
508 }
509
Bram Moolenaar4033c552017-09-16 20:54:51 +0200510 /* check no autocommands closed the window */
511 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 {
513 /* Set b_last_cursor when closing the last window for the buffer.
514 * Remember the last cursor position and window options of the buffer.
515 * This used to be only for the current window, but then options like
516 * 'foldmethod' may be lost with a ":only" command. */
517 if (buf->b_nwindows == 1)
518 set_last_cursor(win);
519 buflist_setfpos(buf, win,
520 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
521 win->w_cursor.col, TRUE);
522 }
523
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200524 set_bufref(&bufref, buf);
525
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 /* When the buffer is no longer in a window, trigger BufWinLeave */
527 if (buf->b_nwindows == 1)
528 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200529 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200530 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
531 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200532 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100533 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200534 /* Autocommands deleted the buffer. */
535aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100536 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100538 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200539 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200540 if (abort_if_last && one_window())
541 /* Autocommands made this the only window. */
542 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543
544 /* When the buffer becomes hidden, but is not unloaded, trigger
545 * BufHidden */
546 if (!unload_buf)
547 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200548 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200549 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
550 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200551 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200552 /* Autocommands deleted the buffer. */
553 goto aucmd_abort;
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 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100559#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 if (aborting()) /* autocmds may abort script processing */
561 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200564
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200565 /* If the buffer was in curwin and the window has changed, go back to that
566 * window, if it still exists. This avoids that ":edit x" triggering a
567 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
568 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
569 {
570 block_autocmds();
571 goto_tabpage_win(the_curtab, the_curwin);
572 unblock_autocmds();
573 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200574
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 nwindows = buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576
577 /* decrease the link count from windows (unless not in any window) */
578 if (buf->b_nwindows > 0)
579 --buf->b_nwindows;
580
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100581#ifdef FEAT_DIFF
582 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100583 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100584#endif
585
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 /* Return when a window is displaying the buffer or when it's not
587 * unloaded. */
588 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590
591 /* Always remove the buffer when there is no file name. */
592 if (buf->b_ffname == NULL)
593 del_buf = TRUE;
594
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200595 /* When closing the current buffer stop Visual mode before freeing
596 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200597 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200598#if defined(EXITFREE)
599 && !entered_free_all_mem
600#endif
601 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200602 end_visual_mode();
603
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 /*
605 * Free all things allocated for this buffer.
606 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
607 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 /* Remember if we are closing the current buffer. Restore the number of
609 * windows, so that autocommands in buf_freeall() don't get confused. */
610 is_curbuf = (buf == curbuf);
611 buf->b_nwindows = nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200613 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200616 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100618#ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000619 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100621#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 /*
624 * It's possible that autocommands change curbuf to the one being deleted.
625 * This might cause the previous curbuf to be deleted unexpectedly. But
626 * in some cases it's OK to delete the curbuf, because a new one is
627 * obtained anyway. Therefore only return if curbuf changed to the
628 * deleted buffer.
629 */
630 if (buf == curbuf && !is_curbuf)
631 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200632
Bram Moolenaar4033c552017-09-16 20:54:51 +0200633 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200634 win->w_buffer = NULL; /* make sure we don't use the buffer now */
635
636 /* Autocommands may have opened or closed windows for this buffer.
637 * Decrement the count for the close we do here. */
638 if (buf->b_nwindows > 0)
639 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 /*
642 * Remove the buffer from the list.
643 */
644 if (wipe_buf)
645 {
646#ifdef FEAT_SUN_WORKSHOP
647 if (usingSunWorkShop)
648 workshop_file_closed_lineno((char *)buf->b_ffname,
649 (int)buf->b_last_cursor.lnum);
650#endif
651 vim_free(buf->b_ffname);
652 vim_free(buf->b_sfname);
653 if (buf->b_prev == NULL)
654 firstbuf = buf->b_next;
655 else
656 buf->b_prev->b_next = buf->b_next;
657 if (buf->b_next == NULL)
658 lastbuf = buf->b_prev;
659 else
660 buf->b_next->b_prev = buf->b_prev;
661 free_buffer(buf);
662 }
663 else
664 {
665 if (del_buf)
666 {
667 /* Free all internal variables and reset option values, to make
668 * ":bdel" compatible with Vim 5.7. */
669 free_buffer_stuff(buf, TRUE);
670
671 /* Make it look like a new buffer. */
672 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
673
674 /* Init the options when loaded again. */
675 buf->b_p_initialized = FALSE;
676 }
677 buf_clear_file(buf);
678 if (del_buf)
679 buf->b_p_bl = FALSE;
680 }
681}
682
683/*
684 * Make buffer not contain a file.
685 */
686 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100687buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688{
689 buf->b_ml.ml_line_count = 1;
690 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 buf->b_p_eol = TRUE;
693 buf->b_start_eol = TRUE;
694#ifdef FEAT_MBYTE
695 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000696 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697#endif
698 buf->b_ml.ml_mfp = NULL;
699 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
700#ifdef FEAT_NETBEANS_INTG
701 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702#endif
703}
704
705/*
706 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200707 * the file. Careful: get here with "curwin" NULL when exiting.
708 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200709 * BFA_DEL buffer is going to be deleted
710 * BFA_WIPE buffer is going to be wiped out
711 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100714buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200717 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200718 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200719 win_T *the_curwin = curwin;
720 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721
Bram Moolenaar5a497892016-09-03 16:29:04 +0200722 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200723 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200724 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200725 if (buf->b_ml.ml_mfp != NULL)
726 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200727 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
728 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200729 && !bufref_valid(&bufref))
730 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200731 return;
732 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200733 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200735 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
736 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200737 && !bufref_valid(&bufref))
738 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 return;
740 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200741 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200743 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
744 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200745 && !bufref_valid(&bufref))
746 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 return;
748 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200749 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200750
Bram Moolenaar5a497892016-09-03 16:29:04 +0200751 /* If the buffer was in curwin and the window has changed, go back to that
752 * window, if it still exists. This avoids that ":edit x" triggering a
753 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
754 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
755 {
756 block_autocmds();
757 goto_tabpage_win(the_curtab, the_curwin);
758 unblock_autocmds();
759 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200760
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100761#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000762 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100764#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765
766 /*
767 * It's possible that autocommands change curbuf to the one being deleted.
768 * This might cause curbuf to be deleted unexpectedly. But in some cases
769 * it's OK to delete the curbuf, because a new one is obtained anyway.
770 * Therefore only return if curbuf changed to the deleted buffer.
771 */
772 if (buf == curbuf && !is_curbuf)
773 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774#ifdef FEAT_DIFF
775 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
776#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200777#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100778 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200779 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100780 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200781#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000782
783#ifdef FEAT_FOLDING
784 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000785 {
786 win_T *win;
787 tabpage_T *tp;
788
789 FOR_ALL_TAB_WINDOWS(tp, win)
790 if (win->w_buffer == buf)
791 clearFolding(win);
792 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000793#endif
794
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795#ifdef FEAT_TCL
796 tcl_buffer_free(buf);
797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 ml_close(buf, TRUE); /* close and delete the memline/memfile */
799 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200800 if ((flags & BFA_KEEP_UNDO) == 0)
801 {
802 u_blockfree(buf); /* free the memory allocated for undo */
803 u_clearall(buf); /* reset all undo information */
804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200806 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000808 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809}
810
811/*
812 * Free a buffer structure and the things it contains related to the buffer
813 * itself (not the file, that must have been done already).
814 */
815 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100816free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200818 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200820#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200821 /* b:changedtick uses an item in buf_T, remove it now */
822 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200823 unref_var_dict(buf->b_vars);
824#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200825#ifdef FEAT_LUA
826 lua_buffer_free(buf);
827#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000828#ifdef FEAT_MZSCHEME
829 mzscheme_buffer_free(buf);
830#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#ifdef FEAT_PERL
832 perl_buf_free(buf);
833#endif
834#ifdef FEAT_PYTHON
835 python_buffer_free(buf);
836#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200837#ifdef FEAT_PYTHON3
838 python3_buffer_free(buf);
839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840#ifdef FEAT_RUBY
841 ruby_buffer_free(buf);
842#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200843#ifdef FEAT_JOB_CHANNEL
844 channel_buffer_free(buf);
845#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200846#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200847 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200848#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +0200849#ifdef FEAT_JOB_CHANNEL
850 vim_free(buf->b_prompt_text);
851 free_callback(buf->b_prompt_callback, buf->b_prompt_partial);
852#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200853
854 buf_hashtab_remove(buf);
855
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200856 aubuflocal_remove(buf);
857
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200858 if (autocmd_busy)
859 {
860 /* Do not free the buffer structure while autocommands are executing,
861 * it's still needed. Free it when autocmd_busy is reset. */
862 buf->b_next = au_pending_free_buf;
863 au_pending_free_buf = buf;
864 }
865 else
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200866 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867}
868
869/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100870 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100871 */
872 static void
873init_changedtick(buf_T *buf)
874{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100875 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100876
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100877 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
878 di->di_tv.v_type = VAR_NUMBER;
879 di->di_tv.v_lock = VAR_FIXED;
880 di->di_tv.vval.v_number = 0;
881
Bram Moolenaar92769c32017-02-25 15:41:37 +0100882#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100883 STRCPY(buf->b_ct_di.di_key, "changedtick");
884 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100885#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100886}
887
888/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
890 */
891 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100892free_buffer_stuff(
893 buf_T *buf,
894 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895{
896 if (free_options)
897 {
898 clear_wininfo(buf); /* including window-local options */
899 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200900#ifdef FEAT_SPELL
901 ga_clear(&buf->b_s.b_langp);
902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 }
904#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100905 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100906 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100907
908 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
909 hash_init(&buf->b_vars->dv_hashtab);
910 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100911 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913#endif
914#ifdef FEAT_USR_CMDS
915 uc_clear(&buf->b_ucmds); /* clear local user commands */
916#endif
917#ifdef FEAT_SIGNS
918 buf_delete_signs(buf); /* delete any signs */
919#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000920#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200921 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923#ifdef FEAT_LOCALMAP
924 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
925 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
926#endif
927#ifdef FEAT_MBYTE
Bram Moolenaard23a8232018-02-10 18:45:26 +0100928 VIM_CLEAR(buf->b_start_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929#endif
930}
931
932/*
933 * Free the b_wininfo list for buffer "buf".
934 */
935 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100936clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937{
938 wininfo_T *wip;
939
940 while (buf->b_wininfo != NULL)
941 {
942 wip = buf->b_wininfo;
943 buf->b_wininfo = wip->wi_next;
944 if (wip->wi_optset)
945 {
946 clear_winopt(&wip->wi_opt);
947#ifdef FEAT_FOLDING
948 deleteFoldRecurse(&wip->wi_folds);
949#endif
950 }
951 vim_free(wip);
952 }
953}
954
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955/*
956 * Go to another buffer. Handles the result of the ATTENTION dialog.
957 */
958 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100959goto_buffer(
960 exarg_T *eap,
961 int start,
962 int dir,
963 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964{
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200965#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200966 bufref_T old_curbuf;
967
968 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969
970 swap_exists_action = SEA_DIALOG;
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
973 start, dir, count, eap->forceit);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200974#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
976 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200977# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000978 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000979
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000980 /* Reset the error/interrupt/exception state here so that
981 * aborting() returns FALSE when closing a window. */
982 enter_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200983# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000984
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000985 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 win_close(curwin, TRUE);
987 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000988 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000989
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200990# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000991 /* Restore the error/interrupt/exception state if not discarded by a
992 * new aborting error, interrupt, or uncaught exception. */
993 leave_cleanup(&cs);
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200994# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 }
996 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200997 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998#endif
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200999}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000
Bram Moolenaare64ac772005-12-07 20:54:59 +00001001#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002/*
1003 * Handle the situation of swap_exists_action being set.
1004 * It is allowed for "old_curbuf" to be NULL or invalid.
1005 */
1006 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001007handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001009# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001010 cleanup_T cs;
1011# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001012# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001013 long old_tw = curbuf->b_p_tw;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001014# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001015 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001016
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 if (swap_exists_action == SEA_QUIT)
1018 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001019# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001020 /* Reset the error/interrupt/exception state here so that
1021 * aborting() returns FALSE when closing a buffer. */
1022 enter_cleanup(&cs);
1023# endif
1024
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 /* User selected Quit at ATTENTION prompt. Go back to previous
1026 * buffer. If that buffer is gone or the same as the current one,
1027 * open a new, empty buffer. */
1028 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001029 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001030 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001031 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1032 || old_curbuf->br_buf == curbuf)
1033 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1034 else
1035 buf = old_curbuf->br_buf;
1036 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001037 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001038 enter_buffer(buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001039# ifdef FEAT_SYN_HL
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001040 if (old_tw != curbuf->b_p_tw)
1041 check_colorcolumn(curwin);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001042# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001045
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001046# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001047 /* Restore the error/interrupt/exception state if not discarded by a
1048 * new aborting error, interrupt, or uncaught exception. */
1049 leave_cleanup(&cs);
1050# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 }
1052 else if (swap_exists_action == SEA_RECOVER)
1053 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001054# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001055 /* Reset the error/interrupt/exception state here so that
1056 * aborting() returns FALSE when closing a buffer. */
1057 enter_cleanup(&cs);
1058# endif
1059
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 /* User selected Recover at ATTENTION prompt. */
1061 msg_scroll = TRUE;
1062 ml_recover();
1063 MSG_PUTS("\n"); /* don't overwrite the last message */
1064 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001065 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001066
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001067# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001068 /* Restore the error/interrupt/exception state if not discarded by a
1069 * new aborting error, interrupt, or uncaught exception. */
1070 leave_cleanup(&cs);
1071# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 }
1073 swap_exists_action = SEA_NONE;
1074}
1075#endif
1076
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077/*
1078 * do_bufdel() - delete or unload buffer(s)
1079 *
1080 * addr_count == 0: ":bdel" - delete current buffer
1081 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1082 * buffer "end_bnr", then any other arguments.
1083 * addr_count == 2: ":N,N bdel" - delete buffers in range
1084 *
1085 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1086 * DOBUF_DEL (":bdel")
1087 *
1088 * Returns error message or NULL
1089 */
1090 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001091do_bufdel(
1092 int command,
1093 char_u *arg, /* pointer to extra arguments */
1094 int addr_count,
1095 int start_bnr, /* first buffer number in a range */
1096 int end_bnr, /* buffer nr or last buffer nr in a range */
1097 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098{
1099 int do_current = 0; /* delete current buffer? */
1100 int deleted = 0; /* number of buffers deleted */
1101 char_u *errormsg = NULL; /* return value */
1102 int bnr; /* buffer number */
1103 char_u *p;
1104
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 if (addr_count == 0)
1106 {
1107 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1108 }
1109 else
1110 {
1111 if (addr_count == 2)
1112 {
1113 if (*arg) /* both range and argument is not allowed */
1114 return (char_u *)_(e_trailing);
1115 bnr = start_bnr;
1116 }
1117 else /* addr_count == 1 */
1118 bnr = end_bnr;
1119
1120 for ( ;!got_int; ui_breakcheck())
1121 {
1122 /*
1123 * delete the current buffer last, otherwise when the
1124 * current buffer is deleted, the next buffer becomes
1125 * the current one and will be loaded, which may then
1126 * also be deleted, etc.
1127 */
1128 if (bnr == curbuf->b_fnum)
1129 do_current = bnr;
1130 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1131 forceit) == OK)
1132 ++deleted;
1133
1134 /*
1135 * find next buffer number to delete/unload
1136 */
1137 if (addr_count == 2)
1138 {
1139 if (++bnr > end_bnr)
1140 break;
1141 }
1142 else /* addr_count == 1 */
1143 {
1144 arg = skipwhite(arg);
1145 if (*arg == NUL)
1146 break;
1147 if (!VIM_ISDIGIT(*arg))
1148 {
1149 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001150 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1151 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 if (bnr < 0) /* failed */
1153 break;
1154 arg = p;
1155 }
1156 else
1157 bnr = getdigits(&arg);
1158 }
1159 }
1160 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1161 FORWARD, do_current, forceit) == OK)
1162 ++deleted;
1163
1164 if (deleted == 0)
1165 {
1166 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001167 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001169 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001171 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 errormsg = IObuff;
1173 }
1174 else if (deleted >= p_report)
1175 {
1176 if (command == DOBUF_UNLOAD)
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001177 smsg((char_u *)NGETTEXT("%d buffer unloaded",
1178 "%d buffers unloaded", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 else if (command == DOBUF_DEL)
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001180 smsg((char_u *)NGETTEXT("%d buffer deleted",
1181 "%d buffers deleted", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 else
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001183 smsg((char_u *)NGETTEXT("%d buffer wiped out",
1184 "%d buffers wiped out", deleted), deleted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 }
1186 }
1187
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
1189 return errormsg;
1190}
1191
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001192static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001193
1194/*
1195 * Make the current buffer empty.
1196 * Used when it is wiped out and it's the last buffer.
1197 */
1198 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001199empty_curbuf(
1200 int close_others,
1201 int forceit,
1202 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001203{
1204 int retval;
1205 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001206 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001207
1208 if (action == DOBUF_UNLOAD)
1209 {
1210 EMSG(_("E90: Cannot unload last buffer"));
1211 return FAIL;
1212 }
1213
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001214 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001215 if (close_others)
1216 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001217 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001218
1219 setpcmark();
1220 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1221 forceit ? ECMD_FORCEIT : 0, curwin);
1222
1223 /*
1224 * do_ecmd() may create a new buffer, then we have to delete
1225 * the old one. But do_ecmd() may have done that already, check
1226 * if the buffer still exists.
1227 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001228 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001229 close_buffer(NULL, buf, action, FALSE);
1230 if (!close_others)
1231 need_fileinfo = FALSE;
1232 return retval;
1233}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
1235 * Implementation of the commands for the buffer list.
1236 *
1237 * action == DOBUF_GOTO go to specified buffer
1238 * action == DOBUF_SPLIT split window and go to specified buffer
1239 * action == DOBUF_UNLOAD unload specified buffer(s)
1240 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1241 * action == DOBUF_WIPE delete specified buffer(s) really
1242 *
1243 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1244 * start == DOBUF_FIRST go to "count" buffer from first buffer
1245 * start == DOBUF_LAST go to "count" buffer from last buffer
1246 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1247 *
1248 * Return FAIL or OK.
1249 */
1250 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001251do_buffer(
1252 int action,
1253 int start,
1254 int dir, /* FORWARD or BACKWARD */
1255 int count, /* buffer number or number of buffers */
1256 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257{
1258 buf_T *buf;
1259 buf_T *bp;
1260 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1261 || action == DOBUF_WIPE);
1262
1263 switch (start)
1264 {
1265 case DOBUF_FIRST: buf = firstbuf; break;
1266 case DOBUF_LAST: buf = lastbuf; break;
1267 default: buf = curbuf; break;
1268 }
1269 if (start == DOBUF_MOD) /* find next modified buffer */
1270 {
1271 while (count-- > 0)
1272 {
1273 do
1274 {
1275 buf = buf->b_next;
1276 if (buf == NULL)
1277 buf = firstbuf;
1278 }
1279 while (buf != curbuf && !bufIsChanged(buf));
1280 }
1281 if (!bufIsChanged(buf))
1282 {
1283 EMSG(_("E84: No modified buffer found"));
1284 return FAIL;
1285 }
1286 }
1287 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1288 {
1289 while (buf != NULL && buf->b_fnum != count)
1290 buf = buf->b_next;
1291 }
1292 else
1293 {
1294 bp = NULL;
1295 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1296 {
1297 /* remember the buffer where we start, we come back there when all
1298 * buffers are unlisted. */
1299 if (bp == NULL)
1300 bp = buf;
1301 if (dir == FORWARD)
1302 {
1303 buf = buf->b_next;
1304 if (buf == NULL)
1305 buf = firstbuf;
1306 }
1307 else
1308 {
1309 buf = buf->b_prev;
1310 if (buf == NULL)
1311 buf = lastbuf;
1312 }
1313 /* don't count unlisted buffers */
1314 if (unload || buf->b_p_bl)
1315 {
1316 --count;
1317 bp = NULL; /* use this buffer as new starting point */
1318 }
1319 if (bp == buf)
1320 {
1321 /* back where we started, didn't find anything. */
1322 EMSG(_("E85: There is no listed buffer"));
1323 return FAIL;
1324 }
1325 }
1326 }
1327
1328 if (buf == NULL) /* could not find it */
1329 {
1330 if (start == DOBUF_FIRST)
1331 {
1332 /* don't warn when deleting */
1333 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001334 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 }
1336 else if (dir == FORWARD)
1337 EMSG(_("E87: Cannot go beyond last buffer"));
1338 else
1339 EMSG(_("E88: Cannot go before first buffer"));
1340 return FAIL;
1341 }
1342
1343#ifdef FEAT_GUI
1344 need_mouse_correct = TRUE;
1345#endif
1346
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 /*
1348 * delete buffer buf from memory and/or the list
1349 */
1350 if (unload)
1351 {
1352 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001353 bufref_T bufref;
1354
Bram Moolenaara997b452018-04-17 23:24:06 +02001355 if (buf->b_locked)
1356 {
1357 EMSG(_(e_buflocked));
1358 return FAIL;
1359 }
1360
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001361 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362
1363 /* When unloading or deleting a buffer that's already unloaded and
1364 * unlisted: fail silently. */
1365 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1366 return FAIL;
1367
1368 if (!forceit && bufIsChanged(buf))
1369 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001370#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 if ((p_confirm || cmdmod.confirm) && p_write)
1372 {
1373 dialog_changed(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001374 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 /* Autocommand deleted buffer, oops! It's not changed
1376 * now. */
1377 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001378 /* If it's still changed fail silently, the dialog already
1379 * mentioned why it fails. */
1380 if (bufIsChanged(buf))
1381 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001383 else
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02001384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 {
1386 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1387 buf->b_fnum);
1388 return FAIL;
1389 }
1390 }
1391
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001392 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001393 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001394 end_visual_mode();
1395
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 /*
1397 * If deleting the last (listed) buffer, make it empty.
1398 * The last (listed) buffer cannot be unloaded.
1399 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001400 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 if (bp->b_p_bl && bp != buf)
1402 break;
1403 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001404 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 /*
1407 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001408 * (unless it's the only window). Repeat this so long as we end up in
1409 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001411 while (buf == curbuf
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001412 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar459ca562016-11-10 18:16:33 +01001413 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001414 {
1415 if (win_close(curwin, FALSE) == FAIL)
1416 break;
1417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418
1419 /*
1420 * If the buffer to be deleted is not the current one, delete it here.
1421 */
1422 if (buf != curbuf)
1423 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001424 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001425 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001426 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 return OK;
1428 }
1429
1430 /*
1431 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001432 * There should be another, otherwise it would have been handled
1433 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001434 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 * Then prefer the buffer we most recently visited.
1436 * Else try to find one that is loaded, after the current buffer,
1437 * then before the current buffer.
1438 * Finally use any buffer.
1439 */
1440 buf = NULL; /* selected buffer */
1441 bp = NULL; /* used when no loaded buffer found */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001442 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1443 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444#ifdef FEAT_JUMPLIST
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001445 else if (curwin->w_jumplistlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 {
1447 int jumpidx;
1448
1449 jumpidx = curwin->w_jumplistidx - 1;
1450 if (jumpidx < 0)
1451 jumpidx = curwin->w_jumplistlen - 1;
1452
1453 forward = jumpidx;
1454 while (jumpidx != curwin->w_jumplistidx)
1455 {
1456 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1457 if (buf != NULL)
1458 {
1459 if (buf == curbuf || !buf->b_p_bl)
1460 buf = NULL; /* skip current and unlisted bufs */
1461 else if (buf->b_ml.ml_mfp == NULL)
1462 {
1463 /* skip unloaded buf, but may keep it for later */
1464 if (bp == NULL)
1465 bp = buf;
1466 buf = NULL;
1467 }
1468 }
1469 if (buf != NULL) /* found a valid buffer: stop searching */
1470 break;
1471 /* advance to older entry in jump list */
1472 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1473 break;
1474 if (--jumpidx < 0)
1475 jumpidx = curwin->w_jumplistlen - 1;
1476 if (jumpidx == forward) /* List exhausted for sure */
1477 break;
1478 }
1479 }
1480#endif
1481
1482 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1483 {
1484 forward = TRUE;
1485 buf = curbuf->b_next;
1486 for (;;)
1487 {
1488 if (buf == NULL)
1489 {
1490 if (!forward) /* tried both directions */
1491 break;
1492 buf = curbuf->b_prev;
1493 forward = FALSE;
1494 continue;
1495 }
1496 /* in non-help buffer, try to skip help buffers, and vv */
1497 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1498 {
1499 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1500 break;
1501 if (bp == NULL) /* remember unloaded buf for later */
1502 bp = buf;
1503 }
1504 if (forward)
1505 buf = buf->b_next;
1506 else
1507 buf = buf->b_prev;
1508 }
1509 }
1510 if (buf == NULL) /* No loaded buffer, use unloaded one */
1511 buf = bp;
1512 if (buf == NULL) /* No loaded buffer, find listed one */
1513 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001514 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 if (buf->b_p_bl && buf != curbuf)
1516 break;
1517 }
1518 if (buf == NULL) /* Still no buffer, just take one */
1519 {
1520 if (curbuf->b_next != NULL)
1521 buf = curbuf->b_next;
1522 else
1523 buf = curbuf->b_prev;
1524 }
1525 }
1526
Bram Moolenaara02471e2014-01-10 16:43:14 +01001527 if (buf == NULL)
1528 {
1529 /* Autocommands must have wiped out all other buffers. Only option
1530 * now is to make the current buffer empty. */
1531 return empty_curbuf(FALSE, forceit, action);
1532 }
1533
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 /*
1535 * make buf current buffer
1536 */
1537 if (action == DOBUF_SPLIT) /* split window first */
1538 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001539 /* If 'switchbuf' contains "useopen": jump to first window containing
1540 * "buf" if one exists */
1541 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001542 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001543 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001544 * page containing "buf" if one exists */
1545 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 return OK;
1547 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 return FAIL;
1549 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550
1551 /* go to current buffer - nothing to do */
1552 if (buf == curbuf)
1553 return OK;
1554
1555 /*
1556 * Check if the current buffer may be abandoned.
1557 */
1558 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1559 {
1560#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1561 if ((p_confirm || cmdmod.confirm) && p_write)
1562 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001563 bufref_T bufref;
1564
1565 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 dialog_changed(curbuf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001567 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 /* Autocommand deleted buffer, oops! */
1569 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 }
1571 if (bufIsChanged(curbuf))
1572#endif
1573 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001574 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 return FAIL;
1576 }
1577 }
1578
1579 /* Go to the other buffer. */
1580 set_curbuf(buf, action);
1581
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001583 {
1584 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001587#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 if (aborting()) /* autocmds may abort script processing */
1589 return FAIL;
1590#endif
1591
1592 return OK;
1593}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
1595/*
1596 * Set current buffer to "buf". Executes autocommands and closes current
1597 * buffer. "action" tells how to close the current buffer:
1598 * DOBUF_GOTO free or hide it
1599 * DOBUF_SPLIT nothing
1600 * DOBUF_UNLOAD unload it
1601 * DOBUF_DEL delete it
1602 * DOBUF_WIPE wipe it out
1603 */
1604 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001605set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606{
1607 buf_T *prevbuf;
1608 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1609 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001610#ifdef FEAT_SYN_HL
1611 long old_tw = curbuf->b_p_tw;
1612#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001613 bufref_T newbufref;
1614 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615
1616 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001617 if (!cmdmod.keepalt)
1618 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001619 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 /* Don't restart Select mode after switching to another buffer. */
1622 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001624 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1625 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001627 set_bufref(&prevbufref, prevbuf);
1628 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001630 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1631 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001632 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001633 || (bufref_valid(&prevbufref)
1634 && bufref_valid(&newbufref)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001635#ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001636 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001638 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001640#ifdef FEAT_SYN_HL
1641 if (prevbuf == curwin->w_buffer)
1642 reset_synblock(curwin);
1643#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001645 close_windows(prevbuf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001646#if defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001647 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001649 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001651 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001652 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001653 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001654 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1656 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001657 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001658 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001659 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001660 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001661 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 }
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001664 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001665 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001666 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1667 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001668#ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001669 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001671 ) || curwin->w_buffer == NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001672 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001674#ifdef FEAT_SYN_HL
1675 if (old_tw != curbuf->b_p_tw)
1676 check_colorcolumn(curwin);
1677#endif
1678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679}
1680
1681/*
1682 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001683 * Old curbuf must have been abandoned already! This also means "curbuf" may
1684 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 */
1686 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001687enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688{
1689 /* Copy buffer and window local option values. Not for a help buffer. */
1690 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1691 if (!buf->b_help)
1692 get_winopts(buf);
1693#ifdef FEAT_FOLDING
1694 else
1695 /* Remove all folds in the window. */
1696 clearFolding(curwin);
1697 foldUpdateAll(curwin); /* update folds (later). */
1698#endif
1699
1700 /* Get the buffer in the current window. */
1701 curwin->w_buffer = buf;
1702 curbuf = buf;
1703 ++curbuf->b_nwindows;
1704
1705#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001706 if (curwin->w_p_diff)
1707 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708#endif
1709
Bram Moolenaara971b822011-09-14 14:43:25 +02001710#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001711 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001712#endif
1713
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 /* Cursor on first line by default. */
1715 curwin->w_cursor.lnum = 1;
1716 curwin->w_cursor.col = 0;
1717#ifdef FEAT_VIRTUALEDIT
1718 curwin->w_cursor.coladd = 0;
1719#endif
1720 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001721 curwin->w_topline_was_set = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001723 /* mark cursor position as being invalid */
1724 curwin->w_valid = 0;
1725
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 /* Make sure the buffer is loaded. */
1727 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001728 {
1729 /* If there is no filetype, allow for detecting one. Esp. useful for
1730 * ":ball" used in a autocommand. If there already is a filetype we
1731 * might prefer to keep it. */
1732 if (*curbuf->b_p_ft == NUL)
1733 did_filetype = FALSE;
1734
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001735 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 else
1738 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001739 if (!msg_silent)
1740 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 curwin->w_topline = 1;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001743#ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 curwin->w_topfill = 0;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1747 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 }
1749
1750 /* If autocommands did not change the cursor position, restore cursor lnum
1751 * and possibly cursor col. */
1752 if (curwin->w_cursor.lnum == 1 && inindent(0))
1753 buflist_getfpos();
1754
1755 check_arg_idx(curwin); /* check for valid arg_idx */
1756#ifdef FEAT_TITLE
1757 maketitle();
1758#endif
Bram Moolenaard4153d42008-11-15 15:06:17 +00001759 /* when autocmds didn't change it */
1760 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1762
Bram Moolenaar009b2592004-10-24 19:18:58 +00001763#ifdef FEAT_NETBEANS_INTG
1764 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001765 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001766#endif
1767
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001768 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02001769 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770
1771#ifdef FEAT_KEYMAP
1772 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001773 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001775#ifdef FEAT_SPELL
1776 /* May need to set the spell language. Can only do this after the buffer
1777 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001778 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1779 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001780#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001781#ifdef FEAT_VIMINFO
1782 curbuf->b_last_used = vim_time();
1783#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001784
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 redraw_later(NOT_VALID);
1786}
1787
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001788#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1789/*
1790 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001791 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001792 */
1793 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001794do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001795{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001796 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001797 && curbuf->b_ffname != NULL
Bram Moolenaarb7407d32018-02-03 17:36:27 +01001798 && vim_chdirfile(curbuf->b_ffname, "auto") == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001799 shorten_fnames(TRUE);
1800}
1801#endif
1802
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001803 void
1804no_write_message(void)
1805{
1806#ifdef FEAT_TERMINAL
1807 if (term_job_running(curbuf->b_term))
1808 EMSG(_("E948: Job still running (add ! to end the job)"));
1809 else
1810#endif
1811 EMSG(_("E37: No write since last change (add ! to override)"));
1812}
1813
1814 void
Bram Moolenaar7a760922018-02-19 23:10:02 +01001815no_write_message_nobang(buf_T *buf UNUSED)
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001816{
1817#ifdef FEAT_TERMINAL
Bram Moolenaar7a760922018-02-19 23:10:02 +01001818 if (term_job_running(buf->b_term))
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001819 EMSG(_("E948: Job still running"));
1820 else
1821#endif
1822 EMSG(_("E37: No write since last change"));
1823}
1824
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825/*
1826 * functions for dealing with the buffer list
1827 */
1828
Bram Moolenaar480778b2016-07-14 22:09:39 +02001829static int top_file_num = 1; /* highest file number */
1830
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831/*
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001832 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in
1833 * only one window. That means it can be re-used.
1834 */
1835 int
1836curbuf_reusable(void)
1837{
1838 return (curbuf != NULL
1839 && curbuf->b_ffname == NULL
1840 && curbuf->b_nwindows <= 1
1841 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
1842 && !curbufIsChanged());
1843}
1844
1845/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 * Add a file name to the buffer list. Return a pointer to the buffer.
1847 * If the same file name already exists return a pointer to that buffer.
1848 * If it does not exist, or if fname == NULL, a new entry is created.
1849 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1850 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1851 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001852 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001853 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1854 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 * This is the ONLY way to create a new buffer.
1856 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001858buflist_new(
1859 char_u *ffname, /* full path of fname or relative */
1860 char_u *sfname, /* short fname or NULL */
1861 linenr_T lnum, /* preferred cursor line */
1862 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863{
1864 buf_T *buf;
1865#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001866 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867#endif
1868
Bram Moolenaar480778b2016-07-14 22:09:39 +02001869 if (top_file_num == 1)
1870 hash_init(&buf_hashtab);
1871
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1873
1874 /*
1875 * If file name already exists in the list, update the entry.
1876 */
1877#ifdef UNIX
1878 /* On Unix we can use inode numbers when the file exists. Works better
1879 * for hard links. */
1880 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1881 st.st_dev = (dev_T)-1;
1882#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001883 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884#ifdef UNIX
1885 buflist_findname_stat(ffname, &st)
1886#else
1887 buflist_findname(ffname)
1888#endif
1889 ) != NULL)
1890 {
1891 vim_free(ffname);
1892 if (lnum != 0)
1893 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001894
1895 if ((flags & BLN_NOOPT) == 0)
1896 /* copy the options now, if 'cpo' doesn't have 's' and not done
1897 * already */
1898 buf_copy_options(buf, 0);
1899
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1901 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001902 bufref_T bufref;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001903
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 buf->b_p_bl = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001905 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001907 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001908 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001909 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001910 return NULL;
1911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 }
1913 return buf;
1914 }
1915
1916 /*
1917 * If the current buffer has no name and no contents, use the current
1918 * buffer. Otherwise: Need to allocate a new buffer structure.
1919 *
1920 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001921 * (A spell file buffer is allocated in spell.c, but that's not a normal
1922 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 */
1924 buf = NULL;
Bram Moolenaar46a53df2018-04-24 21:58:51 +02001925 if ((flags & BLN_CURBUF) && curbuf_reusable())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 {
1927 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 /* It's like this buffer is deleted. Watch out for autocommands that
1929 * change curbuf! If that happens, allocate a new buffer anyway. */
1930 if (curbuf->b_p_bl)
1931 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1932 if (buf == curbuf)
1933 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001934#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001935 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 if (buf == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
1940 /* Make sure 'bufhidden' and 'buftype' are empty */
1941 clear_string_option(&buf->b_p_bh);
1942 clear_string_option(&buf->b_p_bt);
1943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 }
1945 if (buf != curbuf || curbuf == NULL)
1946 {
1947 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1948 if (buf == NULL)
1949 {
1950 vim_free(ffname);
1951 return NULL;
1952 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001953#ifdef FEAT_EVAL
1954 /* init b: variables */
1955 buf->b_vars = dict_alloc();
1956 if (buf->b_vars == NULL)
1957 {
1958 vim_free(ffname);
1959 vim_free(buf);
1960 return NULL;
1961 }
1962 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1963#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001964 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966
1967 if (ffname != NULL)
1968 {
1969 buf->b_ffname = ffname;
1970 buf->b_sfname = vim_strsave(sfname);
1971 }
1972
1973 clear_wininfo(buf);
1974 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1975
1976 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1977 || buf->b_wininfo == NULL)
1978 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001979 VIM_CLEAR(buf->b_ffname);
1980 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 if (buf != curbuf)
1982 free_buffer(buf);
1983 return NULL;
1984 }
1985
1986 if (buf == curbuf)
1987 {
1988 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001989 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 if (buf != curbuf) /* autocommands deleted the buffer! */
1991 return NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001992#if defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001993 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 return NULL;
1995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01001997
1998 /* Init the options. */
1999 buf->b_p_initialized = FALSE;
2000 buf_copy_options(buf, BCO_ENTER);
2001
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002#ifdef FEAT_KEYMAP
2003 /* need to reload lmaps and set b:keymap_name */
2004 curbuf->b_kmap_state |= KEYMAP_INIT;
2005#endif
2006 }
2007 else
2008 {
2009 /*
2010 * put new buffer at the end of the buffer list
2011 */
2012 buf->b_next = NULL;
2013 if (firstbuf == NULL) /* buffer list is empty */
2014 {
2015 buf->b_prev = NULL;
2016 firstbuf = buf;
2017 }
2018 else /* append new buffer at end of list */
2019 {
2020 lastbuf->b_next = buf;
2021 buf->b_prev = lastbuf;
2022 }
2023 lastbuf = buf;
2024
2025 buf->b_fnum = top_file_num++;
2026 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2027 {
2028 EMSG(_("W14: Warning: List of file names overflow"));
2029 if (emsg_silent == 0)
2030 {
2031 out_flush();
2032 ui_delay(3000L, TRUE); /* make sure it is noticed */
2033 }
2034 top_file_num = 1;
2035 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002036 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037
2038 /*
2039 * Always copy the options from the current buffer.
2040 */
2041 buf_copy_options(buf, BCO_ALWAYS);
2042 }
2043
2044 buf->b_wininfo->wi_fpos.lnum = lnum;
2045 buf->b_wininfo->wi_win = curwin;
2046
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002047#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002048 hash_init(&buf->b_s.b_keywtab);
2049 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050#endif
2051
2052 buf->b_fname = buf->b_sfname;
2053#ifdef UNIX
2054 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002055 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 else
2057 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002058 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 buf->b_dev = st.st_dev;
2060 buf->b_ino = st.st_ino;
2061 }
2062#endif
2063 buf->b_u_synced = TRUE;
2064 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002065 if (flags & BLN_DUMMY)
2066 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 buf_clear_file(buf);
2068 clrallmarks(buf); /* clear marks */
2069 fmarks_check_names(buf); /* check file marks for this file */
2070 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (!(flags & BLN_DUMMY))
2072 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002073 bufref_T bufref;
2074
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002075 /* Tricky: these autocommands may change the buffer list. They could
2076 * also split the window with re-using the one empty buffer. This may
2077 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002078 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002079 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002080 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002081 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002083 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002084 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002085 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002086 return NULL;
2087 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002088#ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002089 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093
2094 return buf;
2095}
2096
2097/*
2098 * Free the memory for the options of a buffer.
2099 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2100 * 'fileencoding'.
2101 */
2102 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002103free_buf_options(
2104 buf_T *buf,
2105 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 if (free_p_ff)
2108 {
2109#ifdef FEAT_MBYTE
2110 clear_string_option(&buf->b_p_fenc);
2111#endif
2112 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 clear_string_option(&buf->b_p_bh);
2114 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 }
2116#ifdef FEAT_FIND_ID
2117 clear_string_option(&buf->b_p_def);
2118 clear_string_option(&buf->b_p_inc);
2119# ifdef FEAT_EVAL
2120 clear_string_option(&buf->b_p_inex);
2121# endif
2122#endif
2123#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2124 clear_string_option(&buf->b_p_inde);
2125 clear_string_option(&buf->b_p_indk);
2126#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002127#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2128 clear_string_option(&buf->b_p_bexpr);
2129#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002130#if defined(FEAT_CRYPT)
2131 clear_string_option(&buf->b_p_cm);
2132#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002133 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002134#if defined(FEAT_EVAL)
2135 clear_string_option(&buf->b_p_fex);
2136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137#ifdef FEAT_CRYPT
2138 clear_string_option(&buf->b_p_key);
2139#endif
2140 clear_string_option(&buf->b_p_kp);
2141 clear_string_option(&buf->b_p_mps);
2142 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002143 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 clear_string_option(&buf->b_p_isk);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002145#ifdef FEAT_VARTABS
2146 clear_string_option(&buf->b_p_vsts);
2147 if (buf->b_p_vsts_nopaste)
2148 vim_free(buf->b_p_vsts_nopaste);
2149 buf->b_p_vsts_nopaste = NULL;
2150 if (buf->b_p_vsts_array)
2151 vim_free(buf->b_p_vsts_array);
2152 buf->b_p_vsts_array = NULL;
2153 clear_string_option(&buf->b_p_vts);
2154 if (buf->b_p_vts_array)
2155 vim_free(buf->b_p_vts_array);
2156 buf->b_p_vts_array = NULL;
2157#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158#ifdef FEAT_KEYMAP
2159 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002160 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 ga_clear(&buf->b_kmap_ga);
2162#endif
2163#ifdef FEAT_COMMENTS
2164 clear_string_option(&buf->b_p_com);
2165#endif
2166#ifdef FEAT_FOLDING
2167 clear_string_option(&buf->b_p_cms);
2168#endif
2169 clear_string_option(&buf->b_p_nf);
2170#ifdef FEAT_SYN_HL
2171 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002172 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002173#endif
2174#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002175 clear_string_option(&buf->b_s.b_p_spc);
2176 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002177 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002178 buf->b_s.b_cap_prog = NULL;
2179 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180#endif
2181#ifdef FEAT_SEARCHPATH
2182 clear_string_option(&buf->b_p_sua);
2183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 clear_string_option(&buf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185#ifdef FEAT_CINDENT
2186 clear_string_option(&buf->b_p_cink);
2187 clear_string_option(&buf->b_p_cino);
2188#endif
2189#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2190 clear_string_option(&buf->b_p_cinw);
2191#endif
2192#ifdef FEAT_INS_EXPAND
2193 clear_string_option(&buf->b_p_cpt);
2194#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002195#ifdef FEAT_COMPL_FUNC
2196 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002197 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#ifdef FEAT_QUICKFIX
2200 clear_string_option(&buf->b_p_gp);
2201 clear_string_option(&buf->b_p_mp);
2202 clear_string_option(&buf->b_p_efm);
2203#endif
2204 clear_string_option(&buf->b_p_ep);
2205 clear_string_option(&buf->b_p_path);
2206 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002207 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208#ifdef FEAT_INS_EXPAND
2209 clear_string_option(&buf->b_p_dict);
2210 clear_string_option(&buf->b_p_tsr);
2211#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002212#ifdef FEAT_TEXTOBJ
2213 clear_string_option(&buf->b_p_qe);
2214#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002216 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002217#ifdef FEAT_LISP
2218 clear_string_option(&buf->b_p_lw);
2219#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002220 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002221#ifdef FEAT_MBYTE
2222 clear_string_option(&buf->b_p_menc);
2223#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224}
2225
2226/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002227 * Get alternate file "n".
2228 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2229 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 * if (options & GETF_SETMARK) call setpcmark()
2231 * if (options & GETF_ALT) we are jumping to an alternate file.
2232 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2233 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002234 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 */
2236 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002237buflist_getfile(
2238 int n,
2239 linenr_T lnum,
2240 int options,
2241 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242{
2243 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 pos_T *fpos;
2246 colnr_T col;
2247
2248 buf = buflist_findnr(n);
2249 if (buf == NULL)
2250 {
2251 if ((options & GETF_ALT) && n == 0)
2252 EMSG(_(e_noalt));
2253 else
2254 EMSGN(_("E92: Buffer %ld not found"), n);
2255 return FAIL;
2256 }
2257
2258 /* if alternate file is the current buffer, nothing to do */
2259 if (buf == curbuf)
2260 return OK;
2261
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002262 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002263 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002264 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002266 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002267 if (curbuf_locked())
2268 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269
2270 /* altfpos may be changed by getfile(), get it now */
2271 if (lnum == 0)
2272 {
2273 fpos = buflist_findfpos(buf);
2274 lnum = fpos->lnum;
2275 col = fpos->col;
2276 }
2277 else
2278 col = 0;
2279
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 if (options & GETF_SWITCH)
2281 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002282 /* If 'switchbuf' contains "useopen": jump to first window containing
2283 * "buf" if one exists */
2284 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002286
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002287 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002288 * page containing "buf" if one exists */
2289 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002290 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002291
2292 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2293 * current buffer isn't empty: open new tab or window */
2294 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002295 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002297 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002298 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002299 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2300 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002302 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 }
2304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
2306 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002307 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2308 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 {
2310 --RedrawingDisabled;
2311
2312 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2313 if (!p_sol && col != 0)
2314 {
2315 curwin->w_cursor.col = col;
2316 check_cursor_col();
2317#ifdef FEAT_VIRTUALEDIT
2318 curwin->w_cursor.coladd = 0;
2319#endif
2320 curwin->w_set_curswant = TRUE;
2321 }
2322 return OK;
2323 }
2324 --RedrawingDisabled;
2325 return FAIL;
2326}
2327
2328/*
2329 * go to the last know line number for the current buffer
2330 */
2331 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002332buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333{
2334 pos_T *fpos;
2335
2336 fpos = buflist_findfpos(curbuf);
2337
2338 curwin->w_cursor.lnum = fpos->lnum;
2339 check_cursor_lnum();
2340
2341 if (p_sol)
2342 curwin->w_cursor.col = 0;
2343 else
2344 {
2345 curwin->w_cursor.col = fpos->col;
2346 check_cursor_col();
2347#ifdef FEAT_VIRTUALEDIT
2348 curwin->w_cursor.coladd = 0;
2349#endif
2350 curwin->w_set_curswant = TRUE;
2351 }
2352}
2353
Bram Moolenaar81695252004-12-29 20:58:21 +00002354#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2355/*
2356 * Find file in buffer list by name (it has to be for the current window).
2357 * Returns NULL if not found.
2358 */
2359 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002360buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002361{
2362 char_u *ffname;
2363 buf_T *buf = NULL;
2364
2365 /* First make the name into a full path name */
2366 ffname = FullName_save(fname,
2367#ifdef UNIX
2368 TRUE /* force expansion, get rid of symbolic links */
2369#else
2370 FALSE
2371#endif
2372 );
2373 if (ffname != NULL)
2374 {
2375 buf = buflist_findname(ffname);
2376 vim_free(ffname);
2377 }
2378 return buf;
2379}
2380#endif
2381
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382/*
2383 * Find file in buffer list by name (it has to be for the current window).
2384 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002385 * Skips dummy buffers.
2386 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 */
2388 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002389buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390{
2391#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002392 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394 if (mch_stat((char *)ffname, &st) < 0)
2395 st.st_dev = (dev_T)-1;
2396 return buflist_findname_stat(ffname, &st);
2397}
2398
2399/*
2400 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2401 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002402 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 */
2404 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002405buflist_findname_stat(
2406 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002407 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408{
2409#endif
2410 buf_T *buf;
2411
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002412 /* Start at the last buffer, expect to find a match sooner. */
2413 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002414 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415#ifdef UNIX
2416 , stp
2417#endif
2418 ))
2419 return buf;
2420 return NULL;
2421}
2422
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423/*
2424 * Find file in buffer list by a regexp pattern.
2425 * Return fnum of the found buffer.
2426 * Return < 0 for error.
2427 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002429buflist_findpat(
2430 char_u *pattern,
2431 char_u *pattern_end, /* pointer to first char after pattern */
2432 int unlisted, /* find unlisted buffers */
2433 int diffmode UNUSED, /* find diff-mode buffers only */
2434 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435{
2436 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 int match = -1;
2438 int find_listed;
2439 char_u *pat;
2440 char_u *patend;
2441 int attempt;
2442 char_u *p;
2443 int toggledollar;
2444
2445 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2446 {
2447 if (*pattern == '%')
2448 match = curbuf->b_fnum;
2449 else
2450 match = curwin->w_alt_fnum;
2451#ifdef FEAT_DIFF
2452 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2453 match = -1;
2454#endif
2455 }
2456
2457 /*
2458 * Try four ways of matching a listed buffer:
2459 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002460 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 * attempt == 2: with '$' at end (only match at end)
2462 * attempt == 3: with '^' at start and '$' at end (only full match)
2463 * Repeat this for finding an unlisted buffer if there was no matching
2464 * listed buffer.
2465 */
2466 else
2467 {
2468 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2469 if (pat == NULL)
2470 return -1;
2471 patend = pat + STRLEN(pat) - 1;
2472 toggledollar = (patend > pat && *patend == '$');
2473
2474 /* First try finding a listed buffer. If not found and "unlisted"
2475 * is TRUE, try finding an unlisted buffer. */
2476 find_listed = TRUE;
2477 for (;;)
2478 {
2479 for (attempt = 0; attempt <= 3; ++attempt)
2480 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002481 regmatch_T regmatch;
2482
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 /* may add '^' and '$' */
2484 if (toggledollar)
2485 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2486 p = pat;
2487 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2488 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002489 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2490 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 {
2492 vim_free(pat);
2493 return -1;
2494 }
2495
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002496 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 if (buf->b_p_bl == find_listed
2498#ifdef FEAT_DIFF
2499 && (!diffmode || diff_mode_buf(buf))
2500#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002501 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002503 if (curtab_only)
2504 {
2505 /* Ignore the match if the buffer is not open in
2506 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002507 win_T *wp;
2508
Bram Moolenaar29323592016-07-24 22:04:11 +02002509 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002510 if (wp->w_buffer == buf)
2511 break;
2512 if (wp == NULL)
2513 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 if (match >= 0) /* already found a match */
2516 {
2517 match = -2;
2518 break;
2519 }
2520 match = buf->b_fnum; /* remember first match */
2521 }
2522
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002523 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 if (match >= 0) /* found one match */
2525 break;
2526 }
2527
2528 /* Only search for unlisted buffers if there was no match with
2529 * a listed buffer. */
2530 if (!unlisted || !find_listed || match != -1)
2531 break;
2532 find_listed = FALSE;
2533 }
2534
2535 vim_free(pat);
2536 }
2537
2538 if (match == -2)
2539 EMSG2(_("E93: More than one match for %s"), pattern);
2540 else if (match < 0)
2541 EMSG2(_("E94: No matching buffer for %s"), pattern);
2542 return match;
2543}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544
2545#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2546
2547/*
2548 * Find all buffer names that match.
2549 * For command line expansion of ":buf" and ":sbuf".
2550 * Return OK if matches found, FAIL otherwise.
2551 */
2552 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002553ExpandBufnames(
2554 char_u *pat,
2555 int *num_file,
2556 char_u ***file,
2557 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558{
2559 int count = 0;
2560 buf_T *buf;
2561 int round;
2562 char_u *p;
2563 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002564 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
2566 *num_file = 0; /* return values in case of FAIL */
2567 *file = NULL;
2568
Bram Moolenaar05159a02005-02-26 23:04:13 +00002569 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2570 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002572 patc = alloc((unsigned)STRLEN(pat) + 11);
2573 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002575 STRCPY(patc, "\\(^\\|[\\/]\\)");
2576 STRCPY(patc + 11, pat + 1);
2577 }
2578 else
2579 patc = pat;
2580
2581 /*
2582 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002583 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002584 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002585 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002586 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002587 regmatch_T regmatch;
2588
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002589 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002590 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002591 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2592 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002593 {
2594 if (patc != pat)
2595 vim_free(patc);
2596 return FAIL;
2597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598
2599 /*
2600 * round == 1: Count the matches.
2601 * round == 2: Build the array to keep the matches.
2602 */
2603 for (round = 1; round <= 2; ++round)
2604 {
2605 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002606 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 {
2608 if (!buf->b_p_bl) /* skip unlisted buffers */
2609 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002610 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 if (p != NULL)
2612 {
2613 if (round == 1)
2614 ++count;
2615 else
2616 {
2617 if (options & WILD_HOME_REPLACE)
2618 p = home_replace_save(buf, p);
2619 else
2620 p = vim_strsave(p);
2621 (*file)[count++] = p;
2622 }
2623 }
2624 }
2625 if (count == 0) /* no match found, break here */
2626 break;
2627 if (round == 1)
2628 {
2629 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2630 if (*file == NULL)
2631 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002632 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002633 if (patc != pat)
2634 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 return FAIL;
2636 }
2637 }
2638 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002639 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 if (count) /* match(es) found, break here */
2641 break;
2642 }
2643
Bram Moolenaar05159a02005-02-26 23:04:13 +00002644 if (patc != pat)
2645 vim_free(patc);
2646
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 *num_file = count;
2648 return (count == 0 ? FAIL : OK);
2649}
2650
2651#endif /* FEAT_CMDL_COMPL */
2652
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653/*
2654 * Check for a match on the file name for buffer "buf" with regprog "prog".
2655 */
2656 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002657buflist_match(
2658 regmatch_T *rmp,
2659 buf_T *buf,
2660 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661{
2662 char_u *match;
2663
2664 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002665 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002667 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668
2669 return match;
2670}
2671
2672/*
2673 * Try matching the regexp in "prog" with file name "name".
2674 * Return "name" when there is a match, NULL when not.
2675 */
2676 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002677fname_match(
2678 regmatch_T *rmp,
2679 char_u *name,
2680 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681{
2682 char_u *match = NULL;
2683 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684
2685 if (name != NULL)
2686 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002687 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002688 rmp->rm_ic = p_fic || ignore_case;
2689 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 match = name;
2691 else
2692 {
2693 /* Replace $(HOME) with '~' and try matching again. */
2694 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002695 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 match = name;
2697 vim_free(p);
2698 }
2699 }
2700
2701 return match;
2702}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
2704/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002705 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 */
2707 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002708buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002710 char_u key[VIM_SIZEOF_INT * 2 + 1];
2711 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
2713 if (nr == 0)
2714 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002715 sprintf((char *)key, "%x", nr);
2716 hi = hash_find(&buf_hashtab, key);
2717
2718 if (!HASHITEM_EMPTY(hi))
2719 return (buf_T *)(hi->hi_key
2720 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 return NULL;
2722}
2723
2724/*
2725 * Get name of file 'n' in the buffer list.
2726 * When the file has no name an empty string is returned.
2727 * home_replace() is used to shorten the file name (used for marks).
2728 * Returns a pointer to allocated memory, of NULL when failed.
2729 */
2730 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002731buflist_nr2name(
2732 int n,
2733 int fullname,
2734 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735{
2736 buf_T *buf;
2737
2738 buf = buflist_findnr(n);
2739 if (buf == NULL)
2740 return NULL;
2741 return home_replace_save(helptail ? buf : NULL,
2742 fullname ? buf->b_ffname : buf->b_fname);
2743}
2744
2745/*
2746 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2747 * When "copy_options" is TRUE save the local window option values.
2748 * When "lnum" is 0 only do the options.
2749 */
2750 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002751buflist_setfpos(
2752 buf_T *buf,
2753 win_T *win,
2754 linenr_T lnum,
2755 colnr_T col,
2756 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757{
2758 wininfo_T *wip;
2759
2760 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2761 if (wip->wi_win == win)
2762 break;
2763 if (wip == NULL)
2764 {
2765 /* allocate a new entry */
2766 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2767 if (wip == NULL)
2768 return;
2769 wip->wi_win = win;
2770 if (lnum == 0) /* set lnum even when it's 0 */
2771 lnum = 1;
2772 }
2773 else
2774 {
2775 /* remove the entry from the list */
2776 if (wip->wi_prev)
2777 wip->wi_prev->wi_next = wip->wi_next;
2778 else
2779 buf->b_wininfo = wip->wi_next;
2780 if (wip->wi_next)
2781 wip->wi_next->wi_prev = wip->wi_prev;
2782 if (copy_options && wip->wi_optset)
2783 {
2784 clear_winopt(&wip->wi_opt);
2785#ifdef FEAT_FOLDING
2786 deleteFoldRecurse(&wip->wi_folds);
2787#endif
2788 }
2789 }
2790 if (lnum != 0)
2791 {
2792 wip->wi_fpos.lnum = lnum;
2793 wip->wi_fpos.col = col;
2794 }
2795 if (copy_options)
2796 {
2797 /* Save the window-specific option values. */
2798 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2799#ifdef FEAT_FOLDING
2800 wip->wi_fold_manual = win->w_fold_manual;
2801 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2802#endif
2803 wip->wi_optset = TRUE;
2804 }
2805
2806 /* insert the entry in front of the list */
2807 wip->wi_next = buf->b_wininfo;
2808 buf->b_wininfo = wip;
2809 wip->wi_prev = NULL;
2810 if (wip->wi_next)
2811 wip->wi_next->wi_prev = wip;
2812
2813 return;
2814}
2815
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002816#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002817static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002818
2819/*
2820 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2821 * page. That's because a diff is local to a tab page.
2822 */
2823 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002824wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002825{
2826 win_T *wp;
2827
2828 if (wip->wi_opt.wo_diff)
2829 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002830 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002831 /* return FALSE when it's a window in the current tab page, thus
2832 * the buffer was in diff mode here */
2833 if (wip->wi_win == wp)
2834 return FALSE;
2835 return TRUE;
2836 }
2837 return FALSE;
2838}
2839#endif
2840
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841/*
2842 * Find info for the current window in buffer "buf".
2843 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002844 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2845 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 * Returns NULL when there isn't any info.
2847 */
2848 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002849find_wininfo(
2850 buf_T *buf,
2851 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852{
2853 wininfo_T *wip;
2854
2855 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002856 if (wip->wi_win == curwin
2857#ifdef FEAT_DIFF
2858 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2859#endif
2860 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002862
2863 /* If no wininfo for curwin, use the first in the list (that doesn't have
2864 * 'diff' set and is in another tab page). */
2865 if (wip == NULL)
2866 {
2867#ifdef FEAT_DIFF
2868 if (skip_diff_buffer)
2869 {
2870 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2871 if (!wininfo_other_tab_diff(wip))
2872 break;
2873 }
2874 else
2875#endif
2876 wip = buf->b_wininfo;
2877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 return wip;
2879}
2880
2881/*
2882 * Reset the local window options to the values last used in this window.
2883 * If the buffer wasn't used in this window before, use the values from
2884 * the most recently used window. If the values were never set, use the
2885 * global values for the window.
2886 */
2887 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002888get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889{
2890 wininfo_T *wip;
2891
2892 clear_winopt(&curwin->w_onebuf_opt);
2893#ifdef FEAT_FOLDING
2894 clearFolding(curwin);
2895#endif
2896
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002897 wip = find_wininfo(buf, TRUE);
Bram Moolenaar25782a72018-05-13 18:05:33 +02002898 if (wip != NULL && wip->wi_win != NULL
2899 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 {
Bram Moolenaar25782a72018-05-13 18:05:33 +02002901 /* The buffer is currently displayed in the window: use the actual
2902 * option values instead of the saved (possibly outdated) values. */
2903 win_T *wp = wip->wi_win;
2904
2905 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt);
2906#ifdef FEAT_FOLDING
2907 curwin->w_fold_manual = wp->w_fold_manual;
2908 curwin->w_foldinvalid = TRUE;
2909 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds);
2910#endif
2911 }
2912 else if (wip != NULL && wip->wi_optset)
2913 {
2914 /* the buffer was displayed in the current window earlier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2916#ifdef FEAT_FOLDING
2917 curwin->w_fold_manual = wip->wi_fold_manual;
2918 curwin->w_foldinvalid = TRUE;
2919 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2920#endif
2921 }
2922 else
2923 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2924
2925#ifdef FEAT_FOLDING
2926 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2927 if (p_fdls >= 0)
2928 curwin->w_p_fdl = p_fdls;
2929#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002930#ifdef FEAT_SYN_HL
2931 check_colorcolumn(curwin);
2932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933}
2934
2935/*
2936 * Find the position (lnum and col) for the buffer 'buf' for the current
2937 * window.
2938 * Returns a pointer to no_position if no position is found.
2939 */
2940 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002941buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942{
2943 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002944 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002946 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 if (wip != NULL)
2948 return &(wip->wi_fpos);
2949 else
2950 return &no_position;
2951}
2952
2953/*
2954 * Find the lnum for the buffer 'buf' for the current window.
2955 */
2956 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002957buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958{
2959 return buflist_findfpos(buf)->lnum;
2960}
2961
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002963 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002966buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967{
2968 buf_T *buf;
2969 int len;
2970 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02002971 int ro_char;
2972 int changed_char;
Bram Moolenaar0751f512018-03-29 16:37:16 +02002973#ifdef FEAT_TERMINAL
2974 int job_running;
2975 int job_none_open;
2976#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977
2978 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2979 {
Bram Moolenaar0751f512018-03-29 16:37:16 +02002980#ifdef FEAT_TERMINAL
2981 job_running = term_job_running(buf->b_term);
2982 job_none_open = job_running && term_none_open(buf->b_term);
2983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002985 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2986 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2987 || (vim_strchr(eap->arg, '+')
2988 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2989 || (vim_strchr(eap->arg, 'a')
Bram Moolenaar0751f512018-03-29 16:37:16 +02002990 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
Bram Moolenaard51cb702015-07-21 15:03:06 +02002991 || (vim_strchr(eap->arg, 'h')
Bram Moolenaar0751f512018-03-29 16:37:16 +02002992 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2993#ifdef FEAT_TERMINAL
2994 || (vim_strchr(eap->arg, 'R')
2995 && (!job_running || (job_running && job_none_open)))
2996 || (vim_strchr(eap->arg, '?')
2997 && (!job_running || (job_running && !job_none_open)))
2998 || (vim_strchr(eap->arg, 'F')
2999 && (job_running || buf->b_term == NULL))
3000#endif
Bram Moolenaard51cb702015-07-21 15:03:06 +02003001 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3002 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3003 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3004 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3005 || (vim_strchr(eap->arg, '#')
3006 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003009 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 else
3011 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003012 if (message_filtered(NameBuff))
3013 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003015 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3016 : (bufIsChanged(buf) ? '+' : ' ');
3017#ifdef FEAT_TERMINAL
3018 if (term_job_running(buf->b_term))
3019 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003020 if (term_none_open(buf->b_term))
3021 ro_char = '?';
3022 else
3023 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003024 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3025 * closing, but it's not actually changed. */
3026 }
3027 else if (buf->b_term != NULL)
3028 ro_char = 'F';
3029 else
3030#endif
3031 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3032
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003033 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003034 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 buf->b_fnum,
3036 buf->b_p_bl ? ' ' : 'u',
3037 buf == curbuf ? '%' :
3038 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3039 buf->b_ml.ml_mfp == NULL ? ' ' :
3040 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003041 ro_char,
3042 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003043 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003044 if (len > IOSIZE - 20)
3045 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046
3047 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 i = 40 - vim_strsize(IObuff);
3049 do
3050 {
3051 IObuff[len++] = ' ';
3052 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003053 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3054 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003055 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 msg_outtrans(IObuff);
3057 out_flush(); /* output one line at a time */
3058 ui_breakcheck();
3059 }
3060}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061
3062/*
3063 * Get file name and line number for file 'fnum'.
3064 * Used by DoOneCmd() for translating '%' and '#'.
3065 * Used by insert_reg() and cmdline_paste() for '#' register.
3066 * Return FAIL if not found, OK for success.
3067 */
3068 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003069buflist_name_nr(
3070 int fnum,
3071 char_u **fname,
3072 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073{
3074 buf_T *buf;
3075
3076 buf = buflist_findnr(fnum);
3077 if (buf == NULL || buf->b_fname == NULL)
3078 return FAIL;
3079
3080 *fname = buf->b_fname;
3081 *lnum = buflist_findlnum(buf);
3082
3083 return OK;
3084}
3085
3086/*
3087 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3088 * The file name with the full path is also remembered, for when :cd is used.
3089 * Returns FAIL for failure (file name already in use by other buffer)
3090 * OK otherwise.
3091 */
3092 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003093setfname(
3094 buf_T *buf,
3095 char_u *ffname,
3096 char_u *sfname,
3097 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098{
Bram Moolenaar81695252004-12-29 20:58:21 +00003099 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003101 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102#endif
3103
3104 if (ffname == NULL || *ffname == NUL)
3105 {
3106 /* Removing the name. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01003107 VIM_CLEAR(buf->b_ffname);
3108 VIM_CLEAR(buf->b_sfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109#ifdef UNIX
3110 st.st_dev = (dev_T)-1;
3111#endif
3112 }
3113 else
3114 {
3115 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3116 if (ffname == NULL) /* out of memory */
3117 return FAIL;
3118
3119 /*
3120 * if the file name is already used in another buffer:
3121 * - if the buffer is loaded, fail
3122 * - if the buffer is not loaded, delete it from the list
3123 */
3124#ifdef UNIX
3125 if (mch_stat((char *)ffname, &st) < 0)
3126 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003127#endif
3128 if (!(buf->b_flags & BF_DUMMY))
3129#ifdef UNIX
3130 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003132 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133#endif
3134 if (obuf != NULL && obuf != buf)
3135 {
3136 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3137 {
3138 if (message)
3139 EMSG(_("E95: Buffer with this name already exists"));
3140 vim_free(ffname);
3141 return FAIL;
3142 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003143 /* delete from the list */
3144 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 }
3146 sfname = vim_strsave(sfname);
3147 if (ffname == NULL || sfname == NULL)
3148 {
3149 vim_free(sfname);
3150 vim_free(ffname);
3151 return FAIL;
3152 }
3153#ifdef USE_FNAME_CASE
3154# ifdef USE_LONG_FNAME
3155 if (USE_LONG_FNAME)
3156# endif
3157 fname_case(sfname, 0); /* set correct case for short file name */
3158#endif
3159 vim_free(buf->b_ffname);
3160 vim_free(buf->b_sfname);
3161 buf->b_ffname = ffname;
3162 buf->b_sfname = sfname;
3163 }
3164 buf->b_fname = buf->b_sfname;
3165#ifdef UNIX
3166 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003167 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 else
3169 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003170 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 buf->b_dev = st.st_dev;
3172 buf->b_ino = st.st_ino;
3173 }
3174#endif
3175
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177
3178 buf_name_changed(buf);
3179 return OK;
3180}
3181
3182/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003183 * Crude way of changing the name of a buffer. Use with care!
3184 * The name should be relative to the current directory.
3185 */
3186 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003187buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003188{
3189 buf_T *buf;
3190
3191 buf = buflist_findnr(fnum);
3192 if (buf != NULL)
3193 {
3194 vim_free(buf->b_sfname);
3195 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003196 buf->b_ffname = vim_strsave(name);
3197 buf->b_sfname = NULL;
3198 /* Allocate ffname and expand into full path. Also resolves .lnk
3199 * files on Win32. */
3200 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003201 buf->b_fname = buf->b_sfname;
3202 }
3203}
3204
3205/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 * Take care of what needs to be done when the name of buffer "buf" has
3207 * changed.
3208 */
3209 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003210buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211{
3212 /*
3213 * If the file name changed, also change the name of the swapfile
3214 */
3215 if (buf->b_ml.ml_mfp != NULL)
3216 ml_setname(buf);
3217
3218 if (curwin->w_buffer == buf)
3219 check_arg_idx(curwin); /* check file name for arg list */
3220#ifdef FEAT_TITLE
3221 maketitle(); /* set window title */
3222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 fmarks_check_names(buf); /* check named file marks */
3225 ml_timestamp(buf); /* reset timestamp */
3226}
3227
3228/*
3229 * set alternate file name for current window
3230 *
3231 * Used by do_one_cmd(), do_write() and do_ecmd().
3232 * Return the buffer.
3233 */
3234 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003235setaltfname(
3236 char_u *ffname,
3237 char_u *sfname,
3238 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239{
3240 buf_T *buf;
3241
3242 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3243 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003244 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 curwin->w_alt_fnum = buf->b_fnum;
3246 return buf;
3247}
3248
3249/*
3250 * Get alternate file name for current window.
3251 * Return NULL if there isn't any, and give error message if requested.
3252 */
3253 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003254getaltfname(
3255 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256{
3257 char_u *fname;
3258 linenr_T dummy;
3259
3260 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3261 {
3262 if (errmsg)
3263 EMSG(_(e_noalt));
3264 return NULL;
3265 }
3266 return fname;
3267}
3268
3269/*
3270 * Add a file name to the buflist and return its number.
3271 * Uses same flags as buflist_new(), except BLN_DUMMY.
3272 *
3273 * used by qf_init(), main() and doarglist()
3274 */
3275 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003276buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277{
3278 buf_T *buf;
3279
3280 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3281 if (buf != NULL)
3282 return buf->b_fnum;
3283 return 0;
3284}
3285
3286#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3287/*
3288 * Adjust slashes in file names. Called after 'shellslash' was set.
3289 */
3290 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003291buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292{
3293 buf_T *bp;
3294
Bram Moolenaar29323592016-07-24 22:04:11 +02003295 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 {
3297 if (bp->b_ffname != NULL)
3298 slash_adjust(bp->b_ffname);
3299 if (bp->b_sfname != NULL)
3300 slash_adjust(bp->b_sfname);
3301 }
3302}
3303#endif
3304
3305/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003306 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 * Also save the local window option values.
3308 */
3309 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003310buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003312 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313}
3314
3315/*
3316 * Return TRUE if 'ffname' is not the same file as current file.
3317 * Fname must have a full path (expanded by mch_FullName()).
3318 */
3319 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003320otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321{
3322 return otherfile_buf(curbuf, ffname
3323#ifdef UNIX
3324 , NULL
3325#endif
3326 );
3327}
3328
3329 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003330otherfile_buf(
3331 buf_T *buf,
3332 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003334 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003336 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337{
3338 /* no name is different */
3339 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3340 return TRUE;
3341 if (fnamecmp(ffname, buf->b_ffname) == 0)
3342 return FALSE;
3343#ifdef UNIX
3344 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003345 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346
Bram Moolenaar8767f522016-07-01 17:17:39 +02003347 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 if (stp == NULL)
3349 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003350 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 st.st_dev = (dev_T)-1;
3352 stp = &st;
3353 }
3354 /* Use dev/ino to check if the files are the same, even when the names
3355 * are different (possible with links). Still need to compare the
3356 * name above, for when the file doesn't exist yet.
3357 * Problem: The dev/ino changes when a file is deleted (and created
3358 * again) and remains the same when renamed/moved. We don't want to
3359 * mch_stat() each buffer each time, that would be too slow. Get the
3360 * dev/ino again when they appear to match, but not when they appear
3361 * to be different: Could skip a buffer when it's actually the same
3362 * file. */
3363 if (buf_same_ino(buf, stp))
3364 {
3365 buf_setino(buf);
3366 if (buf_same_ino(buf, stp))
3367 return FALSE;
3368 }
3369 }
3370#endif
3371 return TRUE;
3372}
3373
3374#if defined(UNIX) || defined(PROTO)
3375/*
3376 * Set inode and device number for a buffer.
3377 * Must always be called when b_fname is changed!.
3378 */
3379 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003380buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003382 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383
3384 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3385 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003386 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 buf->b_dev = st.st_dev;
3388 buf->b_ino = st.st_ino;
3389 }
3390 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003391 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392}
3393
3394/*
3395 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3396 */
3397 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003398buf_same_ino(
3399 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003400 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003402 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 && stp->st_dev == buf->b_dev
3404 && stp->st_ino == buf->b_ino);
3405}
3406#endif
3407
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003408/*
3409 * Print info about the current buffer.
3410 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003412fileinfo(
3413 int fullname, /* when non-zero print full path */
3414 int shorthelp,
3415 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416{
3417 char_u *name;
3418 int n;
3419 char_u *p;
3420 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003421 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422
3423 buffer = alloc(IOSIZE);
3424 if (buffer == NULL)
3425 return;
3426
3427 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3428 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003429 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 p = buffer + STRLEN(buffer);
3431 }
3432 else
3433 p = buffer;
3434
3435 *p++ = '"';
3436 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003437 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 else
3439 {
3440 if (!fullname && curbuf->b_fname != NULL)
3441 name = curbuf->b_fname;
3442 else
3443 name = curbuf->b_ffname;
3444 home_replace(shorthelp ? curbuf : NULL, name, p,
3445 (int)(IOSIZE - (p - buffer)), TRUE);
3446 }
3447
Bram Moolenaara800b422010-06-27 01:15:55 +02003448 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 curbufIsChanged() ? (shortmess(SHM_MOD)
3450 ? " [+]" : _(" [Modified]")) : " ",
3451 (curbuf->b_flags & BF_NOTEDITED)
3452#ifdef FEAT_QUICKFIX
3453 && !bt_dontwrite(curbuf)
3454#endif
3455 ? _("[Not edited]") : "",
3456 (curbuf->b_flags & BF_NEW)
3457#ifdef FEAT_QUICKFIX
3458 && !bt_dontwrite(curbuf)
3459#endif
3460 ? _("[New file]") : "",
3461 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003462 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 : _("[readonly]")) : "",
3464 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3465 || curbuf->b_p_ro) ?
3466 " " : "");
3467 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3468 * causes an overflow, thus for large numbers divide instead. */
3469 if (curwin->w_cursor.lnum > 1000000L)
3470 n = (int)(((long)curwin->w_cursor.lnum) /
3471 ((long)curbuf->b_ml.ml_line_count / 100L));
3472 else
3473 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3474 (long)curbuf->b_ml.ml_line_count);
3475 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaara800b422010-06-27 01:15:55 +02003476 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477#ifdef FEAT_CMDL_INFO
3478 else if (p_ru)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 /* Current line and column are already on the screen -- webb */
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003480 vim_snprintf_add((char *)buffer, IOSIZE,
3481 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--",
3482 curbuf->b_ml.ml_line_count),
3483 (long)curbuf->b_ml.ml_line_count, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484#endif
3485 else
3486 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003487 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 _("line %ld of %ld --%d%%-- col "),
3489 (long)curwin->w_cursor.lnum,
3490 (long)curbuf->b_ml.ml_line_count,
3491 n);
3492 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003493 len = STRLEN(buffer);
3494 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3496 }
3497
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003498 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
3500 if (dont_truncate)
3501 {
3502 /* Temporarily set msg_scroll to avoid the message being truncated.
3503 * First call msg_start() to get the message in the right place. */
3504 msg_start();
3505 n = msg_scroll;
3506 msg_scroll = TRUE;
3507 msg(buffer);
3508 msg_scroll = n;
3509 }
3510 else
3511 {
3512 p = msg_trunc_attr(buffer, FALSE, 0);
3513 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 /* Need to repeat the message after redrawing when:
3515 * - When restart_edit is set (otherwise there will be a delay
3516 * before redrawing).
3517 * - When the screen was scrolled but there is no wait-return
3518 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003519 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 }
3521
3522 vim_free(buffer);
3523}
3524
3525 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003526col_print(
3527 char_u *buf,
3528 size_t buflen,
3529 int col,
3530 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531{
3532 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003533 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003535 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536}
3537
3538#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539static char_u *lasttitle = NULL;
3540static char_u *lasticon = NULL;
3541
Bram Moolenaar84a93082018-06-16 22:58:15 +02003542/*
3543 * Put the file name in the title bar and icon of the window.
3544 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003546maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547{
3548 char_u *p;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003549 char_u *title_str = NULL;
3550 char_u *icon_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 int maxlen = 0;
3552 int len;
3553 int mustset;
3554 char_u buf[IOSIZE];
3555 int off;
3556
3557 if (!redrawing())
3558 {
3559 /* Postpone updating the title when 'lazyredraw' is set. */
3560 need_maketitle = TRUE;
3561 return;
3562 }
3563
3564 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003565 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003566 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567
3568 if (p_title)
3569 {
3570 if (p_titlelen > 0)
3571 {
3572 maxlen = p_titlelen * Columns / 100;
3573 if (maxlen < 10)
3574 maxlen = 10;
3575 }
3576
Bram Moolenaar84a93082018-06-16 22:58:15 +02003577 title_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 if (*p_titlestring != NUL)
3579 {
3580#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003581 if (stl_syntax & STL_IN_TITLE)
3582 {
3583 int use_sandbox = FALSE;
3584 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003585
3586# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003587 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003588# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003589 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003590 build_stl_str_hl(curwin, title_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003591 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003592 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003593 if (called_emsg)
3594 set_string_option_direct((char_u *)"titlestring", -1,
3595 (char_u *)"", OPT_FREE, SID_ERROR);
3596 called_emsg |= save_called_emsg;
3597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 else
3599#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003600 title_str = p_titlestring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 }
3602 else
3603 {
3604 /* format: "fname + (path) (1 of 2) - VIM" */
3605
Bram Moolenaar2c666692012-09-05 13:30:40 +02003606#define SPACE_FOR_FNAME (IOSIZE - 100)
3607#define SPACE_FOR_DIR (IOSIZE - 20)
3608#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003610 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003611#ifdef FEAT_TERMINAL
3612 else if (curbuf->b_term != NULL)
3613 {
3614 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3615 SPACE_FOR_FNAME);
3616 }
3617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 else
3619 {
3620 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003621 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 }
3624
Bram Moolenaar21554412017-07-24 21:44:43 +02003625#ifdef FEAT_TERMINAL
3626 if (curbuf->b_term == NULL)
3627#endif
3628 switch (bufIsChanged(curbuf)
3629 + (curbuf->b_p_ro * 2)
3630 + (!curbuf->b_p_ma * 4))
3631 {
3632 case 1: STRCAT(buf, " +"); break;
3633 case 2: STRCAT(buf, " ="); break;
3634 case 3: STRCAT(buf, " =+"); break;
3635 case 4:
3636 case 6: STRCAT(buf, " -"); break;
3637 case 5:
3638 case 7: STRCAT(buf, " -+"); break;
3639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640
Bram Moolenaar21554412017-07-24 21:44:43 +02003641 if (curbuf->b_fname != NULL
3642#ifdef FEAT_TERMINAL
3643 && curbuf->b_term == NULL
3644#endif
3645 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 {
3647 /* Get path of file, replace home dir with ~ */
3648 off = (int)STRLEN(buf);
3649 buf[off++] = ' ';
3650 buf[off++] = '(';
3651 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003652 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653#ifdef BACKSLASH_IN_FILENAME
3654 /* avoid "c:/name" to be reduced to "c" */
3655 if (isalpha(buf[off]) && buf[off + 1] == ':')
3656 off += 2;
3657#endif
3658 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003659 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003661 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003662 /* must be a help buffer */
3663 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003664 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003665 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003668
Bram Moolenaar2c666692012-09-05 13:30:40 +02003669 /* Translate unprintable chars and concatenate. Keep some
3670 * room for the server name. When there is no room (very long
3671 * file name) use (...). */
3672 if (off < SPACE_FOR_DIR)
3673 {
3674 p = transstr(buf + off);
3675 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3676 vim_free(p);
3677 }
3678 else
3679 {
3680 vim_strncpy(buf + off, (char_u *)"...",
3681 (size_t)(SPACE_FOR_ARGNR - off));
3682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 STRCAT(buf, ")");
3684 }
3685
Bram Moolenaar2c666692012-09-05 13:30:40 +02003686 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687
3688#if defined(FEAT_CLIENTSERVER)
3689 if (serverName != NULL)
3690 {
3691 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003692 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 }
3694 else
3695#endif
3696 STRCAT(buf, " - VIM");
3697
3698 if (maxlen > 0)
3699 {
3700 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003701 if (vim_strsize(buf) > maxlen)
3702 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 }
3704 }
3705 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003706 mustset = value_changed(title_str, &lasttitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707
3708 if (p_icon)
3709 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003710 icon_str = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 if (*p_iconstring != NUL)
3712 {
3713#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003714 if (stl_syntax & STL_IN_ICON)
3715 {
3716 int use_sandbox = FALSE;
3717 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003718
3719# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003720 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003721# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003722 called_emsg = FALSE;
Bram Moolenaar84a93082018-06-16 22:58:15 +02003723 build_stl_str_hl(curwin, icon_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003724 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003725 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003726 if (called_emsg)
3727 set_string_option_direct((char_u *)"iconstring", -1,
3728 (char_u *)"", OPT_FREE, SID_ERROR);
3729 called_emsg |= save_called_emsg;
3730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 else
3732#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003733 icon_str = p_iconstring;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 }
3735 else
3736 {
3737 if (buf_spname(curbuf) != NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003738 p = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 else /* use file name only in icon */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003740 p = gettail(curbuf->b_ffname);
3741 *icon_str = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 /* Truncate name at 100 bytes. */
Bram Moolenaar84a93082018-06-16 22:58:15 +02003743 len = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 if (len > 100)
3745 {
3746 len -= 100;
3747#ifdef FEAT_MBYTE
3748 if (has_mbyte)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003749 len += (*mb_tail_off)(p, p + len) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750#endif
Bram Moolenaar84a93082018-06-16 22:58:15 +02003751 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 }
Bram Moolenaar84a93082018-06-16 22:58:15 +02003753 STRCPY(icon_str, p);
3754 trans_characters(icon_str, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 }
3756 }
3757
Bram Moolenaar84a93082018-06-16 22:58:15 +02003758 mustset |= value_changed(icon_str, &lasticon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759
3760 if (mustset)
3761 resettitle();
3762}
3763
3764/*
3765 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3766 * from "str" if it does.
Bram Moolenaar84a93082018-06-16 22:58:15 +02003767 * Return TRUE if resettitle() is to be called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 */
3769 static int
Bram Moolenaar84a93082018-06-16 22:58:15 +02003770value_changed(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771{
3772 if ((str == NULL) != (*last == NULL)
3773 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3774 {
3775 vim_free(*last);
3776 if (str == NULL)
Bram Moolenaar84a93082018-06-16 22:58:15 +02003777 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 *last = NULL;
Bram Moolenaar40385db2018-08-07 22:31:44 +02003779 mch_restore_title(
3780 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 else
Bram Moolenaar84a93082018-06-16 22:58:15 +02003783 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 *last = vim_strsave(str);
Bram Moolenaar84a93082018-06-16 22:58:15 +02003785 return TRUE;
3786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 }
3788 return FALSE;
3789}
3790
3791/*
3792 * Put current window title back (used after calling a shell)
3793 */
3794 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003795resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796{
3797 mch_settitle(lasttitle, lasticon);
3798}
Bram Moolenaarea408852005-06-25 22:49:46 +00003799
3800# if defined(EXITFREE) || defined(PROTO)
3801 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003802free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003803{
3804 vim_free(lasttitle);
3805 vim_free(lasticon);
3806}
3807# endif
3808
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809#endif /* FEAT_TITLE */
3810
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003811#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003813 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 * Return length of string in screen cells.
3815 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003816 * Normally works for window "wp", except when working for 'tabline' then it
3817 * is "curwin".
3818 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 * Items are drawn interspersed with the text that surrounds it
3820 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3821 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3822 *
3823 * If maxwidth is not zero, the string will be filled at any middle marker
3824 * or truncated if too long, fillchar is used for all whitespace.
3825 */
3826 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003827build_stl_str_hl(
3828 win_T *wp,
3829 char_u *out, /* buffer to write into != NameBuff */
3830 size_t outlen, /* length of out[] */
3831 char_u *fmt,
3832 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3833 int fillchar,
3834 int maxwidth,
3835 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3836 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837{
3838 char_u *p;
3839 char_u *s;
3840 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003841 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003843 win_T *save_curwin;
3844 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845#endif
3846 int empty_line;
3847 colnr_T virtcol;
3848 long l;
3849 long n;
3850 int prevchar_isflag;
3851 int prevchar_isitem;
3852 int itemisflag;
3853 int fillable;
3854 char_u *str;
3855 long num;
3856 int width;
3857 int itemcnt;
3858 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003859 int group_end_userhl;
3860 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 int groupitem[STL_MAX_ITEM];
3862 int groupdepth;
3863 struct stl_item
3864 {
3865 char_u *start;
3866 int minwid;
3867 int maxwid;
3868 enum
3869 {
3870 Normal,
3871 Empty,
3872 Group,
3873 Middle,
3874 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003875 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 Trunc
3877 } type;
3878 } item[STL_MAX_ITEM];
3879 int minwid;
3880 int maxwid;
3881 int zeropad;
3882 char_u base;
3883 char_u opt;
3884#define TMPLEN 70
3885 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003886 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003887 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003888 int save_must_redraw = must_redraw;
3889 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003890
3891#ifdef FEAT_EVAL
3892 /*
3893 * When the format starts with "%!" then evaluate it as an expression and
3894 * use the result as the actual format string.
3895 */
3896 if (fmt[0] == '%' && fmt[1] == '!')
3897 {
3898 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3899 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003900 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003901 }
3902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903
3904 if (fillchar == 0)
3905 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003906#ifdef FEAT_MBYTE
3907 /* Can't handle a multi-byte fill character yet. */
3908 else if (mb_char2len(fillchar) > 1)
3909 fillchar = '-';
3910#endif
3911
Bram Moolenaar567199b2013-04-24 16:52:36 +02003912 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3913 * p will become invalid when getting another buffer line. */
3914 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3915 empty_line = (*p == NUL);
3916
3917 /* Get the byte value now, in case we need it below. This is more
3918 * efficient than making a copy of the line. */
3919 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3920 byteval = 0;
3921 else
3922#ifdef FEAT_MBYTE
3923 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3924#else
3925 byteval = p[wp->w_cursor.col];
3926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927
3928 groupdepth = 0;
3929 p = out;
3930 curitem = 0;
3931 prevchar_isflag = TRUE;
3932 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003933 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003935 if (curitem == STL_MAX_ITEM)
3936 {
3937 /* There are too many items. Add the error code to the statusline
3938 * to give the user a hint about what went wrong. */
3939 if (p + 6 < out + outlen)
3940 {
3941 mch_memmove(p, " E541", (size_t)5);
3942 p += 5;
3943 }
3944 break;
3945 }
3946
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 if (*s != NUL && *s != '%')
3948 prevchar_isflag = prevchar_isitem = FALSE;
3949
3950 /*
3951 * Handle up to the next '%' or the end.
3952 */
3953 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3954 *p++ = *s++;
3955 if (*s == NUL || p + 1 >= out + outlen)
3956 break;
3957
3958 /*
3959 * Handle one '%' item.
3960 */
3961 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003962 if (*s == NUL) /* ignore trailing % */
3963 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 if (*s == '%')
3965 {
3966 if (p + 1 >= out + outlen)
3967 break;
3968 *p++ = *s++;
3969 prevchar_isflag = prevchar_isitem = FALSE;
3970 continue;
3971 }
3972 if (*s == STL_MIDDLEMARK)
3973 {
3974 s++;
3975 if (groupdepth > 0)
3976 continue;
3977 item[curitem].type = Middle;
3978 item[curitem++].start = p;
3979 continue;
3980 }
3981 if (*s == STL_TRUNCMARK)
3982 {
3983 s++;
3984 item[curitem].type = Trunc;
3985 item[curitem++].start = p;
3986 continue;
3987 }
3988 if (*s == ')')
3989 {
3990 s++;
3991 if (groupdepth < 1)
3992 continue;
3993 groupdepth--;
3994
3995 t = item[groupitem[groupdepth]].start;
3996 *p = NUL;
3997 l = vim_strsize(t);
3998 if (curitem > groupitem[groupdepth] + 1
3999 && item[groupitem[groupdepth]].minwid == 0)
4000 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004001 /* remove group if all items are empty and highlight group
4002 * doesn't change */
4003 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004004 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4005 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004006 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004007 {
4008 group_start_userhl = group_end_userhl = item[n].minwid;
4009 break;
4010 }
4011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004013 {
4014 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004016 if (item[n].type == Highlight)
4017 group_end_userhl = item[n].minwid;
4018 }
4019 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 {
4021 p = t;
4022 l = 0;
4023 }
4024 }
4025 if (l > item[groupitem[groupdepth]].maxwid)
4026 {
4027 /* truncate, remove n bytes of text at the start */
4028#ifdef FEAT_MBYTE
4029 if (has_mbyte)
4030 {
4031 /* Find the first character that should be included. */
4032 n = 0;
4033 while (l >= item[groupitem[groupdepth]].maxwid)
4034 {
4035 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004036 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 }
4038 }
4039 else
4040#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004041 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
4043 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004044 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 p = p - n + 1;
4046#ifdef FEAT_MBYTE
4047 /* Fill up space left over by half a double-wide char. */
4048 while (++l < item[groupitem[groupdepth]].minwid)
4049 *p++ = fillchar;
4050#endif
4051
4052 /* correct the start of the items for the truncation */
4053 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4054 {
4055 item[l].start -= n;
4056 if (item[l].start < t)
4057 item[l].start = t;
4058 }
4059 }
4060 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4061 {
4062 /* fill */
4063 n = item[groupitem[groupdepth]].minwid;
4064 if (n < 0)
4065 {
4066 /* fill by appending characters */
4067 n = 0 - n;
4068 while (l++ < n && p + 1 < out + outlen)
4069 *p++ = fillchar;
4070 }
4071 else
4072 {
4073 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004074 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 l = n - l;
4076 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004077 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 p += l;
4079 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4080 item[n].start += l;
4081 for ( ; l > 0; l--)
4082 *t++ = fillchar;
4083 }
4084 }
4085 continue;
4086 }
4087 minwid = 0;
4088 maxwid = 9999;
4089 zeropad = FALSE;
4090 l = 1;
4091 if (*s == '0')
4092 {
4093 s++;
4094 zeropad = TRUE;
4095 }
4096 if (*s == '-')
4097 {
4098 s++;
4099 l = -1;
4100 }
4101 if (VIM_ISDIGIT(*s))
4102 {
4103 minwid = (int)getdigits(&s);
4104 if (minwid < 0) /* overflow */
4105 minwid = 0;
4106 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004107 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 {
4109 item[curitem].type = Highlight;
4110 item[curitem].start = p;
4111 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4112 s++;
4113 curitem++;
4114 continue;
4115 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004116 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4117 {
4118 if (*s == STL_TABCLOSENR)
4119 {
4120 if (minwid == 0)
4121 {
4122 /* %X ends the close label, go back to the previously
4123 * define tab label nr. */
4124 for (n = curitem - 1; n >= 0; --n)
4125 if (item[n].type == TabPage && item[n].minwid >= 0)
4126 {
4127 minwid = item[n].minwid;
4128 break;
4129 }
4130 }
4131 else
4132 /* close nrs are stored as negative values */
4133 minwid = - minwid;
4134 }
4135 item[curitem].type = TabPage;
4136 item[curitem].start = p;
4137 item[curitem].minwid = minwid;
4138 s++;
4139 curitem++;
4140 continue;
4141 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 if (*s == '.')
4143 {
4144 s++;
4145 if (VIM_ISDIGIT(*s))
4146 {
4147 maxwid = (int)getdigits(&s);
4148 if (maxwid <= 0) /* overflow */
4149 maxwid = 50;
4150 }
4151 }
4152 minwid = (minwid > 50 ? 50 : minwid) * l;
4153 if (*s == '(')
4154 {
4155 groupitem[groupdepth++] = curitem;
4156 item[curitem].type = Group;
4157 item[curitem].start = p;
4158 item[curitem].minwid = minwid;
4159 item[curitem].maxwid = maxwid;
4160 s++;
4161 curitem++;
4162 continue;
4163 }
4164 if (vim_strchr(STL_ALL, *s) == NULL)
4165 {
4166 s++;
4167 continue;
4168 }
4169 opt = *s++;
4170
4171 /* OK - now for the real work */
4172 base = 'D';
4173 itemisflag = FALSE;
4174 fillable = TRUE;
4175 num = -1;
4176 str = NULL;
4177 switch (opt)
4178 {
4179 case STL_FILEPATH:
4180 case STL_FULLPATH:
4181 case STL_FILENAME:
4182 fillable = FALSE; /* don't change ' ' to fillchar */
4183 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004184 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 else
4186 {
4187 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004188 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4190 }
4191 trans_characters(NameBuff, MAXPATHL);
4192 if (opt != STL_FILENAME)
4193 str = NameBuff;
4194 else
4195 str = gettail(NameBuff);
4196 break;
4197
4198 case STL_VIM_EXPR: /* '{' */
4199 itemisflag = TRUE;
4200 t = p;
4201 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4202 *p++ = *s++;
4203 if (*s != '}') /* missing '}' or out of space */
4204 break;
4205 s++;
4206 *p = 0;
4207 p = t;
4208
4209#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004210 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar3cb44482018-08-05 13:22:26 +02004211 set_internal_string_var((char_u *)"g:actual_curbuf", tmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004213 save_curbuf = curbuf;
4214 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 curwin = wp;
4216 curbuf = wp->w_buffer;
4217
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004218 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004220 curwin = save_curwin;
4221 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004222 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223
4224 if (str != NULL && *str != 0)
4225 {
4226 if (*skipdigits(str) == NUL)
4227 {
4228 num = atoi((char *)str);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004229 VIM_CLEAR(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 itemisflag = FALSE;
4231 }
4232 }
4233#endif
4234 break;
4235
4236 case STL_LINE:
4237 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4238 ? 0L : (long)(wp->w_cursor.lnum);
4239 break;
4240
4241 case STL_NUMLINES:
4242 num = wp->w_buffer->b_ml.ml_line_count;
4243 break;
4244
4245 case STL_COLUMN:
4246 num = !(State & INSERT) && empty_line
4247 ? 0 : (int)wp->w_cursor.col + 1;
4248 break;
4249
4250 case STL_VIRTCOL:
4251 case STL_VIRTCOL_ALT:
4252 /* In list mode virtcol needs to be recomputed */
4253 virtcol = wp->w_virtcol;
4254 if (wp->w_p_list && lcs_tab1 == NUL)
4255 {
4256 wp->w_p_list = FALSE;
4257 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4258 wp->w_p_list = TRUE;
4259 }
4260 ++virtcol;
4261 /* Don't display %V if it's the same as %c. */
4262 if (opt == STL_VIRTCOL_ALT
4263 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4264 ? 0 : (int)wp->w_cursor.col + 1)))
4265 break;
4266 num = (long)virtcol;
4267 break;
4268
4269 case STL_PERCENTAGE:
4270 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4271 (long)wp->w_buffer->b_ml.ml_line_count);
4272 break;
4273
4274 case STL_ALTPERCENT:
4275 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004276 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 break;
4278
4279 case STL_ARGLISTSTAT:
4280 fillable = FALSE;
4281 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004282 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 str = tmp;
4284 break;
4285
4286 case STL_KEYMAP:
4287 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004288 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 str = tmp;
4290 break;
4291 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004292#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004293 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294#else
4295 num = 0;
4296#endif
4297 break;
4298
4299 case STL_BUFNO:
4300 num = wp->w_buffer->b_fnum;
4301 break;
4302
4303 case STL_OFFSET_X:
4304 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004305 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 case STL_OFFSET:
4307#ifdef FEAT_BYTEOFF
4308 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4309 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4310 0L : l + 1 + (!(State & INSERT) && empty_line ?
4311 0 : (int)wp->w_cursor.col);
4312#endif
4313 break;
4314
4315 case STL_BYTEVAL_X:
4316 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004317 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004319 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 if (num == NL)
4321 num = 0;
4322 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4323 num = NL;
4324 break;
4325
4326 case STL_ROFLAG:
4327 case STL_ROFLAG_ALT:
4328 itemisflag = TRUE;
4329 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004330 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 break;
4332
4333 case STL_HELPFLAG:
4334 case STL_HELPFLAG_ALT:
4335 itemisflag = TRUE;
4336 if (wp->w_buffer->b_help)
4337 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004338 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 break;
4340
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 case STL_FILETYPE:
4342 if (*wp->w_buffer->b_p_ft != NUL
4343 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4344 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004345 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4346 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 str = tmp;
4348 }
4349 break;
4350
4351 case STL_FILETYPE_ALT:
4352 itemisflag = TRUE;
4353 if (*wp->w_buffer->b_p_ft != NUL
4354 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4355 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004356 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4357 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 for (t = tmp; *t != 0; t++)
4359 *t = TOUPPER_LOC(*t);
4360 str = tmp;
4361 }
4362 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363
Bram Moolenaar4033c552017-09-16 20:54:51 +02004364#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 case STL_PREVIEWFLAG:
4366 case STL_PREVIEWFLAG_ALT:
4367 itemisflag = TRUE;
4368 if (wp->w_p_pvw)
4369 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4370 : _("[Preview]"));
4371 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004372
4373 case STL_QUICKFIX:
4374 if (bt_quickfix(wp->w_buffer))
4375 str = (char_u *)(wp->w_llist_ref
4376 ? _(msg_loclist)
4377 : _(msg_qflist));
4378 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379#endif
4380
4381 case STL_MODIFIED:
4382 case STL_MODIFIED_ALT:
4383 itemisflag = TRUE;
4384 switch ((opt == STL_MODIFIED_ALT)
4385 + bufIsChanged(wp->w_buffer) * 2
4386 + (!wp->w_buffer->b_p_ma) * 4)
4387 {
4388 case 2: str = (char_u *)"[+]"; break;
4389 case 3: str = (char_u *)",+"; break;
4390 case 4: str = (char_u *)"[-]"; break;
4391 case 5: str = (char_u *)",-"; break;
4392 case 6: str = (char_u *)"[+-]"; break;
4393 case 7: str = (char_u *)",+-"; break;
4394 }
4395 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004396
4397 case STL_HIGHLIGHT:
4398 t = s;
4399 while (*s != '#' && *s != NUL)
4400 ++s;
4401 if (*s == '#')
4402 {
4403 item[curitem].type = Highlight;
4404 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004405 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004406 curitem++;
4407 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004408 if (*s != NUL)
4409 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004410 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 }
4412
4413 item[curitem].start = p;
4414 item[curitem].type = Normal;
4415 if (str != NULL && *str)
4416 {
4417 t = str;
4418 if (itemisflag)
4419 {
4420 if ((t[0] && t[1])
4421 && ((!prevchar_isitem && *t == ',')
4422 || (prevchar_isflag && *t == ' ')))
4423 t++;
4424 prevchar_isflag = TRUE;
4425 }
4426 l = vim_strsize(t);
4427 if (l > 0)
4428 prevchar_isitem = TRUE;
4429 if (l > maxwid)
4430 {
4431 while (l >= maxwid)
4432#ifdef FEAT_MBYTE
4433 if (has_mbyte)
4434 {
4435 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004436 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 }
4438 else
4439#endif
4440 l -= byte2cells(*t++);
4441 if (p + 1 >= out + outlen)
4442 break;
4443 *p++ = '<';
4444 }
4445 if (minwid > 0)
4446 {
4447 for (; l < minwid && p + 1 < out + outlen; l++)
4448 {
4449 /* Don't put a "-" in front of a digit. */
4450 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4451 *p++ = ' ';
4452 else
4453 *p++ = fillchar;
4454 }
4455 minwid = 0;
4456 }
4457 else
4458 minwid *= -1;
4459 while (*t && p + 1 < out + outlen)
4460 {
4461 *p++ = *t++;
4462 /* Change a space by fillchar, unless fillchar is '-' and a
4463 * digit follows. */
4464 if (fillable && p[-1] == ' '
4465 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4466 p[-1] = fillchar;
4467 }
4468 for (; l < minwid && p + 1 < out + outlen; l++)
4469 *p++ = fillchar;
4470 }
4471 else if (num >= 0)
4472 {
4473 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4474 char_u nstr[20];
4475
4476 if (p + 20 >= out + outlen)
4477 break; /* not sufficient space */
4478 prevchar_isitem = TRUE;
4479 t = nstr;
4480 if (opt == STL_VIRTCOL_ALT)
4481 {
4482 *t++ = '-';
4483 minwid--;
4484 }
4485 *t++ = '%';
4486 if (zeropad)
4487 *t++ = '0';
4488 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004489 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 *t = 0;
4491
4492 for (n = num, l = 1; n >= nbase; n /= nbase)
4493 l++;
4494 if (opt == STL_VIRTCOL_ALT)
4495 l++;
4496 if (l > maxwid)
4497 {
4498 l += 2;
4499 n = l - maxwid;
4500 while (l-- > maxwid)
4501 num /= nbase;
4502 *t++ = '>';
4503 *t++ = '%';
4504 *t = t[-3];
4505 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004506 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4507 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 }
4509 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004510 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4511 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 p += STRLEN(p);
4513 }
4514 else
4515 item[curitem].type = Empty;
4516
4517 if (opt == STL_VIM_EXPR)
4518 vim_free(str);
4519
4520 if (num >= 0 || (!itemisflag && str && *str))
4521 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4522 curitem++;
4523 }
4524 *p = NUL;
4525 itemcnt = curitem;
4526
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004527#ifdef FEAT_EVAL
4528 if (usefmt != fmt)
4529 vim_free(usefmt);
4530#endif
4531
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 width = vim_strsize(out);
4533 if (maxwidth > 0 && width > maxwidth)
4534 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004535 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 l = 0;
4537 if (itemcnt == 0)
4538 s = out;
4539 else
4540 {
4541 for ( ; l < itemcnt; l++)
4542 if (item[l].type == Trunc)
4543 {
4544 /* Truncate at %< item. */
4545 s = item[l].start;
4546 break;
4547 }
4548 if (l == itemcnt)
4549 {
4550 /* No %< item, truncate first item. */
4551 s = item[0].start;
4552 l = 0;
4553 }
4554 }
4555
4556 if (width - vim_strsize(s) >= maxwidth)
4557 {
4558 /* Truncation mark is beyond max length */
4559#ifdef FEAT_MBYTE
4560 if (has_mbyte)
4561 {
4562 s = out;
4563 width = 0;
4564 for (;;)
4565 {
4566 width += ptr2cells(s);
4567 if (width >= maxwidth)
4568 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004569 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 }
4571 /* Fill up for half a double-wide character. */
4572 while (++width < maxwidth)
4573 *s++ = fillchar;
4574 }
4575 else
4576#endif
4577 s = out + maxwidth - 1;
4578 for (l = 0; l < itemcnt; l++)
4579 if (item[l].start > s)
4580 break;
4581 itemcnt = l;
4582 *s++ = '>';
4583 *s = 0;
4584 }
4585 else
4586 {
4587#ifdef FEAT_MBYTE
4588 if (has_mbyte)
4589 {
4590 n = 0;
4591 while (width >= maxwidth)
4592 {
4593 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004594 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 }
4596 }
4597 else
4598#endif
4599 n = width - maxwidth + 1;
4600 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004601 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 *s = '<';
4603
4604 /* Fill up for half a double-wide character. */
4605 while (++width < maxwidth)
4606 {
4607 s = s + STRLEN(s);
4608 *s++ = fillchar;
4609 *s = NUL;
4610 }
4611
4612 --n; /* count the '<' */
4613 for (; l < itemcnt; l++)
4614 {
4615 if (item[l].start - n >= s)
4616 item[l].start -= n;
4617 else
4618 item[l].start = s;
4619 }
4620 }
4621 width = maxwidth;
4622 }
4623 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4624 {
4625 /* Apply STL_MIDDLE if any */
4626 for (l = 0; l < itemcnt; l++)
4627 if (item[l].type == Middle)
4628 break;
4629 if (l < itemcnt)
4630 {
4631 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004632 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 for (s = item[l].start; s < p; s++)
4634 *s = fillchar;
4635 for (l++; l < itemcnt; l++)
4636 item[l].start += maxwidth - width;
4637 width = maxwidth;
4638 }
4639 }
4640
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004641 /* Store the info about highlighting. */
4642 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004644 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 for (l = 0; l < itemcnt; l++)
4646 {
4647 if (item[l].type == Highlight)
4648 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004649 sp->start = item[l].start;
4650 sp->userhl = item[l].minwid;
4651 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 }
4653 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004654 sp->start = NULL;
4655 sp->userhl = 0;
4656 }
4657
4658 /* Store the info about tab pages labels. */
4659 if (tabtab != NULL)
4660 {
4661 sp = tabtab;
4662 for (l = 0; l < itemcnt; l++)
4663 {
4664 if (item[l].type == TabPage)
4665 {
4666 sp->start = item[l].start;
4667 sp->userhl = item[l].minwid;
4668 sp++;
4669 }
4670 }
4671 sp->start = NULL;
4672 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 }
4674
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004675 /* When inside update_screen we do not want redrawing a stausline, ruler,
4676 * title, etc. to trigger another redraw, it may cause an endless loop. */
4677 if (updating_screen)
4678 {
4679 must_redraw = save_must_redraw;
4680 curwin->w_redr_type = save_redr_type;
4681 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004682
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 return width;
4684}
4685#endif /* FEAT_STL_OPT */
4686
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004687#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4688 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004690 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4691 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 */
4693 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004694get_rel_pos(
4695 win_T *wp,
4696 char_u *buf,
4697 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698{
4699 long above; /* number of lines above window */
4700 long below; /* number of lines below window */
4701
Bram Moolenaar0027c212015-01-07 13:31:52 +01004702 if (buflen < 3) /* need at least 3 chars for writing */
4703 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 above = wp->w_topline - 1;
4705#ifdef FEAT_DIFF
4706 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004707 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4708 above = 0; /* All buffer lines are displayed and there is an
4709 * indication of filler lines, that can be considered
4710 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711#endif
4712 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4713 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004714 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4715 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004717 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004719 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 ? (int)(above / ((above + below) / 100L))
4721 : (int)(above * 100L / (above + below)));
4722}
4723#endif
4724
4725/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004726 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 * Return TRUE if it was appended.
4728 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004729 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004730append_arg_number(
4731 win_T *wp,
4732 char_u *buf,
4733 int buflen,
4734 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735{
4736 char_u *p;
4737
4738 if (ARGCOUNT <= 1) /* nothing to do */
4739 return FALSE;
4740
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004741 p = buf + STRLEN(buf); /* go to the end of the buffer */
4742 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 return FALSE;
4744 *p++ = ' ';
4745 *p++ = '(';
4746 if (add_file)
4747 {
4748 STRCPY(p, "file ");
4749 p += 5;
4750 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004751 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4752 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4754 return TRUE;
4755}
4756
4757/*
4758 * If fname is not a full path, make it a full path.
4759 * Returns pointer to allocated memory (NULL for failure).
4760 */
4761 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004762fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763{
4764 /*
4765 * Force expanding the path always for Unix, because symbolic links may
4766 * mess up the full path name, even though it starts with a '/'.
4767 * Also expand when there is ".." in the file name, try to remove it,
4768 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004769 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 * For MS-Windows also expand names like "longna~1" to "longname".
4771 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004772#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 return FullName_save(fname, TRUE);
4774#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004775 if (!vim_isAbsName(fname)
4776 || strstr((char *)fname, "..") != NULL
4777 || strstr((char *)fname, "//") != NULL
4778# ifdef BACKSLASH_IN_FILENAME
4779 || strstr((char *)fname, "\\\\") != NULL
4780# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004781# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004783# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 )
4785 return FullName_save(fname, FALSE);
4786
4787 fname = vim_strsave(fname);
4788
Bram Moolenaar9b942202007-10-03 12:31:33 +00004789# ifdef USE_FNAME_CASE
4790# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004792# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 {
4794 if (fname != NULL)
4795 fname_case(fname, 0); /* set correct case for file name */
4796 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004797# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798
4799 return fname;
4800#endif
4801}
4802
4803/*
4804 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4805 * "ffname" becomes a pointer to allocated memory (or NULL).
4806 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004808fname_expand(
4809 buf_T *buf UNUSED,
4810 char_u **ffname,
4811 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812{
4813 if (*ffname == NULL) /* if no file name given, nothing to do */
4814 return;
4815 if (*sfname == NULL) /* if no short file name given, use ffname */
4816 *sfname = *ffname;
4817 *ffname = fix_fname(*ffname); /* expand to full path */
4818
4819#ifdef FEAT_SHORTCUT
4820 if (!buf->b_p_bin)
4821 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004822 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823
4824 /* If the file name is a shortcut file, use the file it links to. */
4825 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004826 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 {
4828 vim_free(*ffname);
4829 *ffname = rfname;
4830 *sfname = rfname;
4831 }
4832 }
4833#endif
4834}
4835
4836/*
4837 * Get the file name for an argument list entry.
4838 */
4839 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004840alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841{
4842 buf_T *bp;
4843
4844 /* Use the name from the associated buffer if it exists. */
4845 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004846 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 return aep->ae_fname;
4848 return bp->b_fname;
4849}
4850
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851/*
4852 * do_arg_all(): Open up to 'count' windows, one for each argument.
4853 */
4854 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004855do_arg_all(
4856 int count,
4857 int forceit, /* hide buffers in current windows */
4858 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859{
4860 int i;
4861 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004862 char_u *opened; /* Array of weight for which args are open:
4863 * 0: not opened
4864 * 1: opened in other tab
4865 * 2: opened in curtab
4866 * 3: opened in curtab and curwin
4867 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004868 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 int use_firstwin = FALSE; /* use first window for arglist */
4870 int split_ret = OK;
4871 int p_ea_save;
4872 alist_T *alist; /* argument list to be used */
4873 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004874 tabpage_T *tpnext;
4875 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004876 win_T *old_curwin, *last_curwin;
4877 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004878 win_T *new_curwin = NULL;
4879 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880
4881 if (ARGCOUNT <= 0)
4882 {
4883 /* Don't give an error message. We don't want it when the ":all"
4884 * command is in the .vimrc. */
4885 return;
4886 }
4887 setpcmark();
4888
4889 opened_len = ARGCOUNT;
4890 opened = alloc_clear((unsigned)opened_len);
4891 if (opened == NULL)
4892 return;
4893
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004894 /* Autocommands may do anything to the argument list. Make sure it's not
4895 * freed while we are working here by "locking" it. We still have to
4896 * watch out for its size to be changed. */
4897 alist = curwin->w_alist;
4898 ++alist->al_refcount;
4899
4900 old_curwin = curwin;
4901 old_curtab = curtab;
4902
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004903# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004905# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906
4907 /*
4908 * Try closing all windows that are not in the argument list.
4909 * Also close windows that are not full width;
4910 * When 'hidden' or "forceit" set the buffer becomes hidden.
4911 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004912 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004914 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004915 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004916 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004918 tpnext = curtab->tp_next;
4919 for (wp = firstwin; wp != NULL; wp = wpnext)
4920 {
4921 wpnext = wp->w_next;
4922 buf = wp->w_buffer;
4923 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004924 || (!keep_tabs && (buf->b_nwindows > 1
4925 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004926 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004927 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004929 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004930 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004932 if (i < alist->al_ga.ga_len
4933 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4934 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4935 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004937 int weight = 1;
4938
4939 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004940 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004941 ++weight;
4942 if (old_curwin == wp)
4943 ++weight;
4944 }
4945
4946 if (weight > (int)opened[i])
4947 {
4948 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004949 if (i == 0)
4950 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004951 if (new_curwin != NULL)
4952 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004953 new_curwin = wp;
4954 new_curtab = curtab;
4955 }
4956 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004957 else if (keep_tabs)
4958 i = opened_len;
4959
4960 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004961 {
4962 /* Use the current argument list for all windows
4963 * containing a file from it. */
4964 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004965 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004966 ++wp->w_alist->al_refcount;
4967 }
4968 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 }
4971 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004972 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004974 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02004976 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004977 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004979 /* If the buffer was changed, and we would like to hide it,
4980 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02004981 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004982 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004984 bufref_T bufref;
4985
4986 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004987
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004988 (void)autowrite(buf, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004989
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004990 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004991 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004992 {
4993 wpnext = firstwin; /* start all over... */
4994 continue;
4995 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004996 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004997 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004998 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004999 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005000 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005001 else
5002 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005003 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005004
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005005 /* check if autocommands removed the next window */
5006 if (!win_valid(wpnext))
5007 wpnext = firstwin; /* start all over... */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005008 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
5011 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005012
5013 /* Without the ":tab" modifier only do the current tab page. */
5014 if (had_tab == 0 || tpnext == NULL)
5015 break;
5016
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005017 /* check if autocommands removed the next tab page */
5018 if (!valid_tabpage(tpnext))
5019 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005020
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005021 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 }
5023
5024 /*
5025 * Open a window for files in the argument list that don't have one.
5026 * ARGCOUNT may change while doing this, because of autocommands.
5027 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005028 if (count > opened_len || count <= 0)
5029 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5032 ++autocmd_no_enter;
5033 ++autocmd_no_leave;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005034 last_curwin = curwin;
5035 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005037 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5038 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005039 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005040 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5041 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005042
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005043 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 {
5045 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5046 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005047 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 {
5049 /* Move the already present window to below the current window */
5050 if (curwin->w_arg_idx != i)
5051 {
5052 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5053 {
5054 if (wpnext->w_arg_idx == i)
5055 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005056 if (keep_tabs)
5057 {
5058 new_curwin = wpnext;
5059 new_curtab = curtab;
5060 }
5061 else
5062 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 break;
5064 }
5065 }
5066 }
5067 }
5068 else if (split_ret == OK)
5069 {
5070 if (!use_firstwin) /* split current window */
5071 {
5072 p_ea_save = p_ea;
5073 p_ea = TRUE; /* use space from all windows */
5074 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5075 p_ea = p_ea_save;
5076 if (split_ret == FAIL)
5077 continue;
5078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 else /* first window: do autocmd for leaving this buffer */
5080 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081
5082 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005083 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 */
5085 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005086 if (i == 0)
5087 {
5088 new_curwin = curwin;
5089 new_curtab = curtab;
5090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5092 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005093 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005095 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 if (use_firstwin)
5097 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 use_firstwin = FALSE;
5099 }
5100 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005101
5102 /* When ":tab" was used open a new tab for a new window repeatedly. */
5103 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5104 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 }
5106
5107 /* Remove the "lock" on the argument list. */
5108 alist_unlink(alist);
5109
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 --autocmd_no_enter;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005111
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005112 /* restore last referenced tabpage's curwin */
5113 if (last_curtab != new_curtab)
5114 {
5115 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005116 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005117 if (win_valid(last_curwin))
5118 win_enter(last_curwin, FALSE);
5119 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005120 /* to window with first arg */
5121 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005122 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005123 if (win_valid(new_curwin))
5124 win_enter(new_curwin, FALSE);
5125
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 vim_free(opened);
5128}
5129
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130/*
5131 * Open a window for a number of buffers.
5132 */
5133 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005134ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135{
5136 buf_T *buf;
5137 win_T *wp, *wpnext;
5138 int split_ret = OK;
5139 int p_ea_save;
5140 int open_wins = 0;
5141 int r;
5142 int count; /* Maximum number of windows to open. */
5143 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005144 int had_tab = cmdmod.tab;
5145 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146
5147 if (eap->addr_count == 0) /* make as many windows as possible */
5148 count = 9999;
5149 else
5150 count = eap->line2; /* make as many windows as specified */
5151 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5152 all = FALSE;
5153 else
5154 all = TRUE;
5155
5156 setpcmark();
5157
5158#ifdef FEAT_GUI
5159 need_mouse_correct = TRUE;
5160#endif
5161
5162 /*
5163 * Close superfluous windows (two windows for the same buffer).
5164 * Also close windows that are not full-width.
5165 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005166 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005167 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005168 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005170 tpnext = curtab->tp_next;
5171 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005173 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005174 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005175 || ((cmdmod.split & WSP_VERT)
5176 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005177 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005178 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005179 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005180 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005181 {
5182 win_close(wp, FALSE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005183 wpnext = firstwin; /* just in case an autocommand does
5184 something strange with windows */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005185 tpnext = first_tabpage; /* start all over... */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005186 open_wins = 0;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005187 }
5188 else
5189 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005191
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005192 /* Without the ":tab" modifier only do the current tab page. */
5193 if (had_tab == 0 || tpnext == NULL)
5194 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005195 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 }
5197
5198 /*
5199 * Go through the buffer list. When a buffer doesn't have a window yet,
5200 * open one. Otherwise move the window to the right position.
5201 * Watch out for autocommands that delete buffers or windows!
5202 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5204 ++autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 win_enter(lastwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 ++autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5208 {
5209 /* Check if this buffer needs a window */
5210 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5211 continue;
5212
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005213 if (had_tab != 0)
5214 {
5215 /* With the ":tab" modifier don't move the window. */
5216 if (buf->b_nwindows > 0)
5217 wp = lastwin; /* buffer has a window, skip it */
5218 else
5219 wp = NULL;
5220 }
5221 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005222 {
5223 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005224 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005225 if (wp->w_buffer == buf)
5226 break;
5227 /* If the buffer already has a window, move it */
5228 if (wp != NULL)
5229 win_move_after(wp, curwin);
5230 }
5231
5232 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005234 bufref_T bufref;
5235
5236 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005237
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 /* Split the window and put the buffer in it */
5239 p_ea_save = p_ea;
5240 p_ea = TRUE; /* use space from all windows */
5241 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5242 ++open_wins;
5243 p_ea = p_ea_save;
5244 if (split_ret == FAIL)
5245 continue;
5246
5247 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005248#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 swap_exists_action = SEA_DIALOG;
5250#endif
5251 set_curbuf(buf, DOBUF_GOTO);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005252 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005254 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005255#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 swap_exists_action = SEA_NONE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 break;
5259 }
Bram Moolenaare64ac772005-12-07 20:54:59 +00005260#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 if (swap_exists_action == SEA_QUIT)
5262 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005263# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005264 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005265
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005266 /* Reset the error/interrupt/exception state here so that
5267 * aborting() returns FALSE when closing a window. */
5268 enter_cleanup(&cs);
5269# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005270
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005271 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 win_close(curwin, TRUE);
5273 --open_wins;
5274 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005275 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005276
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005277# if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005278 /* Restore the error/interrupt/exception state if not
5279 * discarded by a new aborting error, interrupt, or uncaught
5280 * exception. */
5281 leave_cleanup(&cs);
5282# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 }
5284 else
5285 handle_swap_exists(NULL);
5286#endif
5287 }
5288
5289 ui_breakcheck();
5290 if (got_int)
5291 {
5292 (void)vgetc(); /* only break the file loading, not the rest */
5293 break;
5294 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005295#ifdef FEAT_EVAL
5296 /* Autocommands deleted the buffer or aborted script processing!!! */
5297 if (aborting())
5298 break;
5299#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005300 /* When ":tab" was used open a new tab for a new window repeatedly. */
5301 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5302 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 --autocmd_no_enter;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 win_enter(firstwin, FALSE); /* back to first window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 --autocmd_no_leave;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307
5308 /*
5309 * Close superfluous windows.
5310 */
5311 for (wp = lastwin; open_wins > count; )
5312 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005313 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 || autowrite(wp->w_buffer, FALSE) == OK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 if (!win_valid(wp))
5316 {
5317 /* BufWrite Autocommands made the window invalid, start over */
5318 wp = lastwin;
5319 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005320 else if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005322 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 --open_wins;
5324 wp = lastwin;
5325 }
5326 else
5327 {
5328 wp = wp->w_prev;
5329 if (wp == NULL)
5330 break;
5331 }
5332 }
5333}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005336static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005337
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338/*
5339 * do_modelines() - process mode lines for the current file
5340 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005341 * "flags" can be:
5342 * OPT_WINONLY only set options local to window
5343 * OPT_NOWIN don't set options local to window
5344 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 * Returns immediately if the "ml" option isn't set.
5346 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005348do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005350 linenr_T lnum;
5351 int nmlines;
5352 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
5354 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5355 return;
5356
5357 /* Disallow recursive entry here. Can happen when executing a modeline
5358 * triggers an autocommand, which reloads modelines with a ":do". */
5359 if (entered)
5360 return;
5361
5362 ++entered;
5363 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5364 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005365 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 nmlines = 0;
5367
5368 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5369 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005370 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 nmlines = 0;
5372 --entered;
5373}
5374
5375#include "version.h" /* for version number */
5376
5377/*
5378 * chk_modeline() - check a single line for a mode string
5379 * Return FAIL if an error encountered.
5380 */
5381 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005382chk_modeline(
5383 linenr_T lnum,
5384 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385{
5386 char_u *s;
5387 char_u *e;
5388 char_u *linecopy; /* local copy of any modeline found */
5389 int prev;
5390 int vers;
5391 int end;
5392 int retval = OK;
5393 char_u *save_sourcing_name;
5394 linenr_T save_sourcing_lnum;
5395#ifdef FEAT_EVAL
5396 scid_T save_SID;
5397#endif
5398
5399 prev = -1;
5400 for (s = ml_get(lnum); *s != NUL; ++s)
5401 {
5402 if (prev == -1 || vim_isspace(prev))
5403 {
5404 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5405 || STRNCMP(s, "vi:", (size_t)3) == 0)
5406 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005407 /* Accept both "vim" and "Vim". */
5408 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 {
5410 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5411 e = s + 4;
5412 else
5413 e = s + 3;
5414 vers = getdigits(&e);
5415 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005416 && (s[0] != 'V'
5417 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 && (s[3] == ':'
5419 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5420 || (VIM_VERSION_100 < vers && s[3] == '<')
5421 || (VIM_VERSION_100 > vers && s[3] == '>')
5422 || (VIM_VERSION_100 == vers && s[3] == '=')))
5423 break;
5424 }
5425 }
5426 prev = *s;
5427 }
5428
5429 if (*s)
5430 {
5431 do /* skip over "ex:", "vi:" or "vim:" */
5432 ++s;
5433 while (s[-1] != ':');
5434
5435 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5436 if (linecopy == NULL)
5437 return FAIL;
5438
5439 save_sourcing_lnum = sourcing_lnum;
5440 save_sourcing_name = sourcing_name;
5441 sourcing_lnum = lnum; /* prepare for emsg() */
5442 sourcing_name = (char_u *)"modelines";
5443
5444 end = FALSE;
5445 while (end == FALSE)
5446 {
5447 s = skipwhite(s);
5448 if (*s == NUL)
5449 break;
5450
5451 /*
5452 * Find end of set command: ':' or end of line.
5453 * Skip over "\:", replacing it with ":".
5454 */
5455 for (e = s; *e != ':' && *e != NUL; ++e)
5456 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005457 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 if (*e == NUL)
5459 end = TRUE;
5460
5461 /*
5462 * If there is a "set" command, require a terminating ':' and
5463 * ignore the stuff after the ':'.
5464 * "vi:set opt opt opt: foo" -- foo not interpreted
5465 * "vi:opt opt opt: foo" -- foo interpreted
5466 * Accept "se" for compatibility with Elvis.
5467 */
5468 if (STRNCMP(s, "set ", (size_t)4) == 0
5469 || STRNCMP(s, "se ", (size_t)3) == 0)
5470 {
5471 if (*e != ':') /* no terminating ':'? */
5472 break;
5473 end = TRUE;
5474 s = vim_strchr(s, ' ') + 1;
5475 }
5476 *e = NUL; /* truncate the set command */
5477
5478 if (*s != NUL) /* skip over an empty "::" */
5479 {
5480#ifdef FEAT_EVAL
5481 save_SID = current_SID;
5482 current_SID = SID_MODELINE;
5483#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005484 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485#ifdef FEAT_EVAL
5486 current_SID = save_SID;
5487#endif
5488 if (retval == FAIL) /* stop if error found */
5489 break;
5490 }
5491 s = e + 1; /* advance to next part */
5492 }
5493
5494 sourcing_lnum = save_sourcing_lnum;
5495 sourcing_name = save_sourcing_name;
5496
5497 vim_free(linecopy);
5498 }
5499 return retval;
5500}
5501
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005502#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005504read_viminfo_bufferlist(
5505 vir_T *virp,
5506 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507{
5508 char_u *tab;
5509 linenr_T lnum;
5510 colnr_T col;
5511 buf_T *buf;
5512 char_u *sfname;
5513 char_u *xline;
5514
5515 /* Handle long line and escaped characters. */
5516 xline = viminfo_readstring(virp, 1, FALSE);
5517
5518 /* don't read in if there are files on the command-line or if writing: */
5519 if (xline != NULL && !writing && ARGCOUNT == 0
5520 && find_viminfo_parameter('%') != NULL)
5521 {
5522 /* Format is: <fname> Tab <lnum> Tab <col>.
5523 * Watch out for a Tab in the file name, work from the end. */
5524 lnum = 0;
5525 col = 0;
5526 tab = vim_strrchr(xline, '\t');
5527 if (tab != NULL)
5528 {
5529 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005530 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 tab = vim_strrchr(xline, '\t');
5532 if (tab != NULL)
5533 {
5534 *tab++ = '\0';
5535 lnum = atol((char *)tab);
5536 }
5537 }
5538
5539 /* Expand "~/" in the file name at "line + 1" to a full path.
5540 * Then try shortening it by comparing with the current directory */
5541 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005542 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543
5544 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5545 if (buf != NULL) /* just in case... */
5546 {
5547 buf->b_last_cursor.lnum = lnum;
5548 buf->b_last_cursor.col = col;
5549 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5550 }
5551 }
5552 vim_free(xline);
5553
5554 return viminfo_readline(virp);
5555}
5556
5557 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005558write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559{
5560 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005562 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005564 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565
5566 if (find_viminfo_parameter('%') == NULL)
5567 return;
5568
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005569 /* Without a number -1 is returned: do all buffers. */
5570 max_buffers = get_viminfo_parameter('%');
5571
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005573#define LINE_BUF_LEN (MAXPATHL + 40)
5574 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 if (line == NULL)
5576 return;
5577
Bram Moolenaarf740b292006-02-16 22:11:02 +00005578 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005581 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005582 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 {
5584 if (buf->b_fname == NULL
5585 || !buf->b_p_bl
5586#ifdef FEAT_QUICKFIX
5587 || bt_quickfix(buf)
5588#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005589#ifdef FEAT_TERMINAL
5590 || bt_terminal(buf)
5591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 || removable(buf->b_ffname))
5593 continue;
5594
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005595 if (max_buffers-- == 0)
5596 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 putc('%', fp);
5598 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005599 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 (long)buf->b_last_cursor.lnum,
5601 buf->b_last_cursor.col);
5602 viminfo_writestring(fp, line);
5603 }
5604 vim_free(line);
5605}
5606#endif
5607
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005608/*
Bram Moolenaar91335e52018-08-01 17:53:12 +02005609 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty.
5610 */
5611 int
5612bt_normal(buf_T *buf)
5613{
5614 return buf != NULL && buf->b_p_bt[0] == NUL;
5615}
5616
5617/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005618 * Return TRUE if "buf" is the quickfix buffer.
5619 */
5620 int
5621bt_quickfix(buf_T *buf)
5622{
5623 return buf != NULL && buf->b_p_bt[0] == 'q';
5624}
5625
5626/*
5627 * Return TRUE if "buf" is a terminal buffer.
5628 */
5629 int
5630bt_terminal(buf_T *buf)
5631{
5632 return buf != NULL && buf->b_p_bt[0] == 't';
5633}
5634
5635/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005636 * Return TRUE if "buf" is a help buffer.
5637 */
5638 int
5639bt_help(buf_T *buf)
5640{
5641 return buf != NULL && buf->b_help;
5642}
5643
5644/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02005645 * Return TRUE if "buf" is a prompt buffer.
5646 */
5647 int
5648bt_prompt(buf_T *buf)
5649{
5650 return buf != NULL && buf->b_p_bt[0] == 'p';
5651}
5652
5653/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005654 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
5655 * buffer. This means the buffer name is not a file name.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005656 */
5657 int
5658bt_nofile(buf_T *buf)
5659{
5660 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5661 || buf->b_p_bt[0] == 'a'
Bram Moolenaarf2732452018-06-03 14:47:35 +02005662 || buf->b_p_bt[0] == 't'
5663 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005664}
5665
5666/*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005667 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
5668 * buffer.
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005669 */
5670 int
5671bt_dontwrite(buf_T *buf)
5672{
Bram Moolenaarf2732452018-06-03 14:47:35 +02005673 return buf != NULL && (buf->b_p_bt[0] == 'n'
5674 || buf->b_p_bt[0] == 't'
5675 || buf->b_p_bt[0] == 'p');
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005676}
5677
5678 int
5679bt_dontwrite_msg(buf_T *buf)
5680{
5681 if (bt_dontwrite(buf))
5682 {
5683 EMSG(_("E382: Cannot write, 'buftype' option is set"));
5684 return TRUE;
5685 }
5686 return FALSE;
5687}
5688
5689/*
5690 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5691 * and 'bufhidden'.
5692 */
5693 int
5694buf_hide(buf_T *buf)
5695{
5696 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5697 switch (buf->b_p_bh[0])
5698 {
5699 case 'u': /* "unload" */
5700 case 'w': /* "wipe" */
5701 case 'd': return FALSE; /* "delete" */
5702 case 'h': return TRUE; /* "hide" */
5703 }
5704 return (p_hid || cmdmod.hide);
5705}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706
5707/*
5708 * Return special buffer name.
5709 * Returns NULL when the buffer has a normal file name.
5710 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005711 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005712buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005714#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005716 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005717 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005718 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005719
5720 /*
5721 * For location list window, w_llist_ref points to the location list.
5722 * For quickfix window, w_llist_ref is NULL.
5723 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005724 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005725 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005726 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005727 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005730
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005732 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (bt_nofile(buf))
5734 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005735#ifdef FEAT_TERMINAL
5736 if (buf->b_term != NULL)
5737 return term_get_status_text(buf->b_term);
5738#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005739 if (buf->b_fname != NULL)
5740 return buf->b_fname;
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02005741#ifdef FEAT_JOB_CHANNEL
5742 if (bt_prompt(buf))
5743 return (char_u *)_("[Prompt]");
5744#endif
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005745 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005747
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005749 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 return NULL;
5751}
5752
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005753#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005754 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5755 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005756# define SWITCH_TO_WIN
5757
5758/*
5759 * Find a window that contains "buf" and switch to it.
5760 * If there is no such window, use the current window and change "curbuf".
5761 * Caller must initialize save_curbuf to NULL.
5762 * restore_win_for_buf() MUST be called later!
5763 */
5764 void
5765switch_to_win_for_buf(
5766 buf_T *buf,
5767 win_T **save_curwinp,
5768 tabpage_T **save_curtabp,
5769 bufref_T *save_curbuf)
5770{
5771 win_T *wp;
5772 tabpage_T *tp;
5773
5774 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5775 switch_buffer(save_curbuf, buf);
5776 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5777 {
5778 restore_win(*save_curwinp, *save_curtabp, TRUE);
5779 switch_buffer(save_curbuf, buf);
5780 }
5781}
5782
5783 void
5784restore_win_for_buf(
5785 win_T *save_curwin,
5786 tabpage_T *save_curtab,
5787 bufref_T *save_curbuf)
5788{
5789 if (save_curbuf->br_buf == NULL)
5790 restore_win(save_curwin, save_curtab, TRUE);
5791 else
5792 restore_buffer(save_curbuf);
5793}
5794#endif
5795
Bram Moolenaar4033c552017-09-16 20:54:51 +02005796#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005797/*
5798 * Find a window for buffer "buf".
5799 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5800 * If not found FAIL is returned.
5801 */
5802 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005803find_win_for_buf(
5804 buf_T *buf,
5805 win_T **wp,
5806 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005807{
5808 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5809 if ((*wp)->w_buffer == buf)
5810 goto win_found;
5811 return FAIL;
5812win_found:
5813 return OK;
5814}
5815#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816
5817#if defined(FEAT_SIGNS) || defined(PROTO)
5818/*
5819 * Insert the sign into the signlist.
5820 */
5821 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005822insert_sign(
5823 buf_T *buf, /* buffer to store sign in */
5824 signlist_T *prev, /* previous sign entry */
5825 signlist_T *next, /* next sign entry */
5826 int id, /* sign ID */
5827 linenr_T lnum, /* line number which gets the mark */
5828 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829{
5830 signlist_T *newsign;
5831
5832 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5833 if (newsign != NULL)
5834 {
5835 newsign->id = id;
5836 newsign->lnum = lnum;
5837 newsign->typenr = typenr;
5838 newsign->next = next;
5839#ifdef FEAT_NETBEANS_INTG
5840 newsign->prev = prev;
5841 if (next != NULL)
5842 next->prev = newsign;
5843#endif
5844
5845 if (prev == NULL)
5846 {
5847 /* When adding first sign need to redraw the windows to create the
5848 * column for signs. */
5849 if (buf->b_signlist == NULL)
5850 {
5851 redraw_buf_later(buf, NOT_VALID);
5852 changed_cline_bef_curs();
5853 }
5854
5855 /* first sign in signlist */
5856 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005857#ifdef FEAT_NETBEANS_INTG
5858 if (netbeans_active())
5859 buf->b_has_sign_column = TRUE;
5860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861 }
5862 else
5863 prev->next = newsign;
5864 }
5865}
5866
5867/*
5868 * Add the sign into the signlist. Find the right spot to do it though.
5869 */
5870 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005871buf_addsign(
5872 buf_T *buf, /* buffer to store sign in */
5873 int id, /* sign ID */
5874 linenr_T lnum, /* line number which gets the mark */
5875 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876{
5877 signlist_T *sign; /* a sign in the signlist */
5878 signlist_T *prev; /* the previous sign */
5879
5880 prev = NULL;
5881 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5882 {
5883 if (lnum == sign->lnum && id == sign->id)
5884 {
5885 sign->typenr = typenr;
5886 return;
5887 }
5888 else if (
5889#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5890 id < 0 &&
5891#endif
5892 lnum < sign->lnum)
5893 {
5894#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5895 /* XXX - GRP: Is this because of sign slide problem? Or is it
5896 * really needed? Or is it because we allow multiple signs per
5897 * line? If so, should I add that feature to FEAT_SIGNS?
5898 */
5899 while (prev != NULL && prev->lnum == lnum)
5900 prev = prev->prev;
5901 if (prev == NULL)
5902 sign = buf->b_signlist;
5903 else
5904 sign = prev->next;
5905#endif
5906 insert_sign(buf, prev, sign, id, lnum, typenr);
5907 return;
5908 }
5909 prev = sign;
5910 }
5911#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5912 /* XXX - GRP: See previous comment */
5913 while (prev != NULL && prev->lnum == lnum)
5914 prev = prev->prev;
5915 if (prev == NULL)
5916 sign = buf->b_signlist;
5917 else
5918 sign = prev->next;
5919#endif
5920 insert_sign(buf, prev, sign, id, lnum, typenr);
5921
5922 return;
5923}
5924
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005925/*
5926 * For an existing, placed sign "markId" change the type to "typenr".
5927 * Returns the line number of the sign, or zero if the sign is not found.
5928 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005929 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005930buf_change_sign_type(
5931 buf_T *buf, /* buffer to store sign in */
5932 int markId, /* sign ID */
5933 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934{
5935 signlist_T *sign; /* a sign in the signlist */
5936
5937 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5938 {
5939 if (sign->id == markId)
5940 {
5941 sign->typenr = typenr;
5942 return sign->lnum;
5943 }
5944 }
5945
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005946 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947}
5948
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005949 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005950buf_getsigntype(
5951 buf_T *buf,
5952 linenr_T lnum,
5953 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954{
5955 signlist_T *sign; /* a sign in a b_signlist */
5956
5957 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5958 if (sign->lnum == lnum
5959 && (type == SIGN_ANY
5960# ifdef FEAT_SIGN_ICONS
5961 || (type == SIGN_ICON
5962 && sign_get_image(sign->typenr) != NULL)
5963# endif
5964 || (type == SIGN_TEXT
5965 && sign_get_text(sign->typenr) != NULL)
5966 || (type == SIGN_LINEHL
5967 && sign_get_attr(sign->typenr, TRUE) != 0)))
5968 return sign->typenr;
5969 return 0;
5970}
5971
5972
5973 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005974buf_delsign(
5975 buf_T *buf, /* buffer sign is stored in */
5976 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977{
5978 signlist_T **lastp; /* pointer to pointer to current sign */
5979 signlist_T *sign; /* a sign in a b_signlist */
5980 signlist_T *next; /* the next sign in a b_signlist */
5981 linenr_T lnum; /* line number whose sign was deleted */
5982
5983 lastp = &buf->b_signlist;
5984 lnum = 0;
5985 for (sign = buf->b_signlist; sign != NULL; sign = next)
5986 {
5987 next = sign->next;
5988 if (sign->id == id)
5989 {
5990 *lastp = next;
5991#ifdef FEAT_NETBEANS_INTG
5992 if (next != NULL)
5993 next->prev = sign->prev;
5994#endif
5995 lnum = sign->lnum;
5996 vim_free(sign);
5997 break;
5998 }
5999 else
6000 lastp = &sign->next;
6001 }
6002
6003 /* When deleted the last sign need to redraw the windows to remove the
6004 * sign column. */
6005 if (buf->b_signlist == NULL)
6006 {
6007 redraw_buf_later(buf, NOT_VALID);
6008 changed_cline_bef_curs();
6009 }
6010
6011 return lnum;
6012}
6013
6014
6015/*
6016 * Find the line number of the sign with the requested id. If the sign does
6017 * not exist, return 0 as the line number. This will still let the correct file
6018 * get loaded.
6019 */
6020 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006021buf_findsign(
6022 buf_T *buf, /* buffer to store sign in */
6023 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024{
6025 signlist_T *sign; /* a sign in the signlist */
6026
6027 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6028 if (sign->id == id)
6029 return sign->lnum;
6030
6031 return 0;
6032}
6033
6034 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006035buf_findsign_id(
6036 buf_T *buf, /* buffer whose sign we are searching for */
6037 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038{
6039 signlist_T *sign; /* a sign in the signlist */
6040
6041 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6042 if (sign->lnum == lnum)
6043 return sign->id;
6044
6045 return 0;
6046}
6047
6048
6049# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
6050/* see if a given type of sign exists on a specific line */
6051 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006052buf_findsigntype_id(
6053 buf_T *buf, /* buffer whose sign we are searching for */
6054 linenr_T lnum, /* line number of sign */
6055 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056{
6057 signlist_T *sign; /* a sign in the signlist */
6058
6059 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6060 if (sign->lnum == lnum && sign->typenr == typenr)
6061 return sign->id;
6062
6063 return 0;
6064}
6065
6066
6067# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6068/* return the number of icons on the given line */
6069 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006070buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071{
6072 signlist_T *sign; /* a sign in the signlist */
6073 int count = 0;
6074
6075 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6076 if (sign->lnum == lnum)
6077 if (sign_get_image(sign->typenr) != NULL)
6078 count++;
6079
6080 return count;
6081}
6082# endif /* FEAT_SIGN_ICONS */
6083# endif /* FEAT_NETBEANS_INTG */
6084
6085
6086/*
6087 * Delete signs in buffer "buf".
6088 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02006089 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006090buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091{
6092 signlist_T *next;
6093
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006094 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02006095 * sign column. Not when curwin is NULL (this means we're exiting). */
6096 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006097 {
6098 redraw_buf_later(buf, NOT_VALID);
6099 changed_cline_bef_curs();
6100 }
6101
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 while (buf->b_signlist != NULL)
6103 {
6104 next = buf->b_signlist->next;
6105 vim_free(buf->b_signlist);
6106 buf->b_signlist = next;
6107 }
6108}
6109
6110/*
6111 * Delete all signs in all buffers.
6112 */
6113 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006114buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115{
6116 buf_T *buf; /* buffer we are checking for signs */
6117
Bram Moolenaar29323592016-07-24 22:04:11 +02006118 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006119 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121}
6122
6123/*
6124 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6125 */
6126 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006127sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128{
6129 buf_T *buf;
6130 signlist_T *p;
6131 char lbuf[BUFSIZ];
6132
6133 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6134 msg_putchar('\n');
6135 if (rbuf == NULL)
6136 buf = firstbuf;
6137 else
6138 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006139 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 {
6141 if (buf->b_signlist != NULL)
6142 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006143 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006144 MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 msg_putchar('\n');
6146 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006147 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006149 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6151 MSG_PUTS(lbuf);
6152 msg_putchar('\n');
6153 }
6154 if (rbuf != NULL)
6155 break;
6156 buf = buf->b_next;
6157 }
6158}
6159
6160/*
6161 * Adjust a placed sign for inserted/deleted lines.
6162 */
6163 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006164sign_mark_adjust(
6165 linenr_T line1,
6166 linenr_T line2,
6167 long amount,
6168 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169{
6170 signlist_T *sign; /* a sign in a b_signlist */
6171
6172 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6173 {
6174 if (sign->lnum >= line1 && sign->lnum <= line2)
6175 {
6176 if (amount == MAXLNUM)
6177 sign->lnum = line1;
6178 else
6179 sign->lnum += amount;
6180 }
6181 else if (sign->lnum > line2)
6182 sign->lnum += amount_after;
6183 }
6184}
6185#endif /* FEAT_SIGNS */
6186
6187/*
6188 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6189 */
6190 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006191set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192{
6193 if (on != curbuf->b_p_bl)
6194 {
6195 curbuf->b_p_bl = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 if (on)
6197 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6198 else
6199 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 }
6201}
6202
6203/*
6204 * Read the file for "buf" again and check if the contents changed.
6205 * Return TRUE if it changed or this could not be checked.
6206 */
6207 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006208buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209{
6210 buf_T *newbuf;
6211 int differ = TRUE;
6212 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 exarg_T ea;
6215
6216 /* Allocate a buffer without putting it in the buffer list. */
6217 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6218 if (newbuf == NULL)
6219 return TRUE;
6220
6221 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6222 if (prep_exarg(&ea, buf) == FAIL)
6223 {
6224 wipe_buffer(newbuf, FALSE);
6225 return TRUE;
6226 }
6227
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 /* set curwin/curbuf to buf and save a few things */
6229 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230
Bram Moolenaar4770d092006-01-12 23:22:24 +00006231 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 && readfile(buf->b_ffname, buf->b_fname,
6233 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6234 &ea, READ_NEW | READ_DUMMY) == OK)
6235 {
6236 /* compare the two files line by line */
6237 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6238 {
6239 differ = FALSE;
6240 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6241 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6242 {
6243 differ = TRUE;
6244 break;
6245 }
6246 }
6247 }
6248 vim_free(ea.cmd);
6249
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 /* restore curwin/curbuf and a few other things */
6251 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252
6253 if (curbuf != newbuf) /* safety check */
6254 wipe_buffer(newbuf, FALSE);
6255
6256 return differ;
6257}
6258
6259/*
6260 * Wipe out a buffer and decrement the last buffer number if it was used for
6261 * this buffer. Call this to wipe out a temp buffer that does not contain any
6262 * marks.
6263 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006265wipe_buffer(
6266 buf_T *buf,
6267 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268{
6269 if (buf->b_fnum == top_file_num - 1)
6270 --top_file_num;
6271
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006273 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006274
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006275 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006276
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006278 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279}