blob: ecd8f4eb65e54107987aace1737328a96f67c255 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
30#if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032# define HAVE_BUFLIST_MATCH
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010033static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010035static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
36static wininfo_T *find_wininfo(buf_T *buf, int skip_diff_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +020038static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
39static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
40static int buf_same_ino(buf_T *buf, stat_T *stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#else
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010042static int otherfile_buf(buf_T *buf, char_u *ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#endif
44#ifdef FEAT_TITLE
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int ti_change(char_u *str, char_u **last);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010047static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
48static void free_buffer(buf_T *);
49static void free_buffer_stuff(buf_T *buf, int free_options);
50static void clear_wininfo(buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
52#ifdef UNIX
53# define dev_T dev_t
54#else
55# define dev_T unsigned
56#endif
57
58#if defined(FEAT_SIGNS)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010059static void insert_sign(buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060#endif
61
Bram Moolenaar4033c552017-09-16 20:54:51 +020062#if defined(FEAT_QUICKFIX)
Bram Moolenaar7fd73202010-07-25 16:58:46 +020063static char *msg_loclist = N_("[Location List]");
64static char *msg_qflist = N_("[Quickfix List]");
65#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +010066#ifdef FEAT_AUTOCMD
67static char *e_auabort = N_("E855: Autocommands caused command to abort");
68#endif
Bram Moolenaar7fd73202010-07-25 16:58:46 +020069
Bram Moolenaarb25f9a92016-07-10 18:21:50 +020070/* Number of times free_buffer() was called. */
71static int buf_free_count = 0;
72
Bram Moolenaarf71d7b92016-08-09 22:14:05 +020073/* Read data from buffer for retrying. */
74 static int
75read_buffer(
76 int read_stdin, /* read file from stdin, otherwise fifo */
77 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
78 int flags) /* extra flags for readfile() */
79{
80 int retval = OK;
81 linenr_T line_count;
82
83 /*
84 * Read from the buffer which the text is already filled in and append at
85 * the end. This makes it possible to retry when 'fileformat' or
86 * 'fileencoding' was guessed wrong.
87 */
88 line_count = curbuf->b_ml.ml_line_count;
89 retval = readfile(
90 read_stdin ? NULL : curbuf->b_ffname,
91 read_stdin ? NULL : curbuf->b_fname,
92 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
93 flags | READ_BUFFER);
94 if (retval == OK)
95 {
96 /* Delete the binary lines. */
97 while (--line_count >= 0)
98 ml_delete((linenr_T)1, FALSE);
99 }
100 else
101 {
102 /* Delete the converted lines. */
103 while (curbuf->b_ml.ml_line_count > line_count)
104 ml_delete(line_count, FALSE);
105 }
106 /* Put the cursor on the first line. */
107 curwin->w_cursor.lnum = 1;
108 curwin->w_cursor.col = 0;
109
110 if (read_stdin)
111 {
112 /* Set or reset 'modified' before executing autocommands, so that
113 * it can be changed there. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100114 if (!readonlymode && !BUFEMPTY())
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200115 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100116 else if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200117 unchanged(curbuf, FALSE);
118
119#ifdef FEAT_AUTOCMD
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100120 if (retval == OK)
121 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200122# ifdef FEAT_EVAL
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100123 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200124 curbuf, &retval);
125# else
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100126 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200127# endif
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100128 }
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200129#endif
130 }
131 return retval;
132}
133
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200135 * Open current buffer, that is: open the memfile and read the file into
136 * memory.
137 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138 */
139 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100140open_buffer(
141 int read_stdin, /* read file from stdin */
142 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
143 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 int retval = OK;
146#ifdef FEAT_AUTOCMD
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200147 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100149#ifdef FEAT_SYN_HL
150 long old_tw = curbuf->b_p_tw;
151#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200152 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153
154 /*
155 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
156 * When re-entering the same buffer, it should not change, because the
157 * user may have reset the flag by hand.
158 */
159 if (readonlymode && curbuf->b_ffname != NULL
160 && (curbuf->b_flags & BF_NEVERLOADED))
161 curbuf->b_p_ro = TRUE;
162
Bram Moolenaar4770d092006-01-12 23:22:24 +0000163 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 {
165 /*
166 * There MUST be a memfile, otherwise we can't do anything
167 * If we can't create one for the current buffer, take another buffer
168 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100169 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200170 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 if (curbuf->b_ml.ml_mfp != NULL)
172 break;
173 /*
174 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000175 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 */
177 if (curbuf == NULL)
178 {
179 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
180 getout(2);
181 }
182 EMSG(_("E83: Cannot allocate buffer, using other one..."));
183 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100184#ifdef FEAT_SYN_HL
185 if (old_tw != curbuf->b_p_tw)
186 check_colorcolumn(curwin);
187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 return FAIL;
189 }
190
191#ifdef FEAT_AUTOCMD
192 /* The autocommands in readfile() may change the buffer, but only AFTER
193 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200194 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 modified_was_set = FALSE;
196#endif
197
198 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100199 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200
201 if (curbuf->b_ffname != NULL
202#ifdef FEAT_NETBEANS_INTG
203 && netbeansReadFile
204#endif
205 )
206 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100207 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200208#ifdef UNIX
209 int save_bin = curbuf->b_p_bin;
210 int perm;
211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212#ifdef FEAT_NETBEANS_INTG
213 int oldFire = netbeansFireChanges;
214
215 netbeansFireChanges = 0;
216#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200217#ifdef UNIX
218 perm = mch_getperm(curbuf->b_ffname);
219 if (perm >= 0 && (0
220# ifdef S_ISFIFO
221 || S_ISFIFO(perm)
222# endif
223# ifdef S_ISSOCK
224 || S_ISSOCK(perm)
225# endif
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200226# ifdef OPEN_CHR_FILES
227 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
228# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200229 ))
230 read_fifo = TRUE;
231 if (read_fifo)
232 curbuf->b_p_bin = TRUE;
233#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100234 if (shortmess(SHM_FILEINFO))
235 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200237 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200238 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
239#ifdef UNIX
240 if (read_fifo)
241 {
242 curbuf->b_p_bin = save_bin;
243 if (retval == OK)
244 retval = read_buffer(FALSE, eap, flags);
245 }
246#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100247 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248#ifdef FEAT_NETBEANS_INTG
249 netbeansFireChanges = oldFire;
250#endif
251 /* Help buffer is filtered. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +0200252 if (bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 fix_help_buffer();
254 }
255 else if (read_stdin)
256 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200257 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258
259 /*
260 * First read the text in binary mode into the buffer.
261 * Then read from that same buffer and append at the end. This makes
262 * it possible to retry when 'fileformat' or 'fileencoding' was
263 * guessed wrong.
264 */
265 curbuf->b_p_bin = TRUE;
266 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200267 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
268 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 curbuf->b_p_bin = save_bin;
270 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200271 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 }
273
274 /* if first time loading this buffer, init b_chartab[] */
275 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100278#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100279 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100280#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100281 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282
283 /*
284 * Set/reset the Changed flag first, autocmds may change the buffer.
285 * Apply the automatic commands, before processing the modelines.
286 * So the modelines have priority over auto commands.
287 */
288 /* When reading stdin, the buffer contents always needs writing, so set
289 * the changed flag. Unless in readonly mode: "ls | gview -".
290 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000291 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292#ifdef FEAT_AUTOCMD
293 || modified_was_set /* ":set modified" used in autocmd */
294# ifdef FEAT_EVAL
295 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
296# endif
297#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000298 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299 changed();
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100300 else if (retval == OK && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 unchanged(curbuf, FALSE);
302 save_file_ff(curbuf); /* keep this fileformat */
303
304 /* require "!" to overwrite the file, because it wasn't read completely */
305#ifdef FEAT_EVAL
306 if (aborting())
307#else
308 if (got_int)
309#endif
310 curbuf->b_flags |= BF_READERR;
311
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000312#ifdef FEAT_FOLDING
313 /* Need to update automatic folding. Do this before the autocommands,
314 * they may use the fold info. */
315 foldUpdateAll(curwin);
316#endif
317
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318#ifdef FEAT_AUTOCMD
319 /* need to set w_topline, unless some autocommand already did that. */
320 if (!(curwin->w_valid & VALID_TOPLINE))
321 {
322 curwin->w_topline = 1;
323# ifdef FEAT_DIFF
324 curwin->w_topfill = 0;
325# endif
326 }
327# ifdef FEAT_EVAL
328 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
329# else
330 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
331# endif
332#endif
333
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100334 if (retval == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 {
336#ifdef FEAT_AUTOCMD
337 /*
338 * The autocommands may have changed the current buffer. Apply the
339 * modelines to the correct buffer, if it still exists and is loaded.
340 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200341 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 {
343 aco_save_T aco;
344
345 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200346 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +0000348 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
350
351#ifdef FEAT_AUTOCMD
352# ifdef FEAT_EVAL
353 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
354 &retval);
355# else
356 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
357# endif
358
359 /* restore curwin/curbuf and a few other things */
360 aucmd_restbuf(&aco);
361 }
362#endif
363 }
364
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 return retval;
366}
367
368/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200369 * Store "buf" in "bufref" and set the free count.
370 */
371 void
372set_bufref(bufref_T *bufref, buf_T *buf)
373{
374 bufref->br_buf = buf;
Bram Moolenaarfadacf02017-06-19 20:35:32 +0200375 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200376 bufref->br_buf_free_count = buf_free_count;
377}
378
379/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200380 * Return TRUE if "bufref->br_buf" points to the same buffer as when
381 * set_bufref() was called and it is a valid buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200382 * Only goes through the buffer list if buf_free_count changed.
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200383 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get
384 * the same allocated memory, but it's a different buffer.
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200385 */
386 int
387bufref_valid(bufref_T *bufref)
388{
389 return bufref->br_buf_free_count == buf_free_count
Bram Moolenaar45e5fd12017-06-04 14:58:02 +0200390 ? TRUE : buf_valid(bufref->br_buf)
391 && bufref->br_fnum == bufref->br_buf->b_fnum;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200392}
393
394/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200396 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 */
398 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100399buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400{
401 buf_T *bp;
402
Bram Moolenaar82404332016-07-10 17:00:38 +0200403 /* Assume that we more often have a recent buffer, start with the last
404 * one. */
405 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 if (bp == buf)
407 return TRUE;
408 return FALSE;
409}
410
411/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200412 * A hash table used to quickly lookup a buffer by its number.
413 */
414static hashtab_T buf_hashtab;
415
416 static void
417buf_hashtab_add(buf_T *buf)
418{
419 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
420 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
421 EMSG(_("E931: Buffer cannot be registered"));
422}
423
424 static void
425buf_hashtab_remove(buf_T *buf)
426{
427 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
428
429 if (!HASHITEM_EMPTY(hi))
430 hash_remove(&buf_hashtab, hi);
431}
432
433/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 * Close the link to a buffer.
435 * "action" is used when there is no longer a window for the buffer.
436 * It can be:
437 * 0 buffer becomes hidden
438 * DOBUF_UNLOAD buffer is unloaded
439 * DOBUF_DELETE buffer is unloaded and removed from buffer list
440 * DOBUF_WIPE buffer is unloaded and really deleted
441 * When doing all but the first one on the current buffer, the caller should
442 * get a new buffer very soon!
443 *
444 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100445 *
446 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
447 * cause there to be only one window with this buffer. e.g. when ":quit" is
448 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 */
450 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100451close_buffer(
452 win_T *win, /* if not NULL, set b_last_cursor */
453 buf_T *buf,
454 int action,
455 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456{
457#ifdef FEAT_AUTOCMD
458 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100459 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200460 bufref_T bufref;
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100461 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200462 win_T *the_curwin = curwin;
463 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464#endif
465 int unload_buf = (action != 0);
466 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
467 int wipe_buf = (action == DOBUF_WIPE);
468
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200469 /*
470 * Force unloading or deleting when 'bufhidden' says so.
471 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
472 * "hide" (otherwise we could never free or delete a buffer).
473 */
474 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
475 {
476 del_buf = TRUE;
477 unload_buf = TRUE;
478 }
479 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
480 {
481 del_buf = TRUE;
482 unload_buf = TRUE;
483 wipe_buf = TRUE;
484 }
485 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
486 unload_buf = TRUE;
487
Bram Moolenaar94053a52017-08-01 21:44:33 +0200488#ifdef FEAT_TERMINAL
Bram Moolenaar8adb0d02017-09-17 19:08:02 +0200489 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf))
Bram Moolenaar94053a52017-08-01 21:44:33 +0200490 {
491 if (term_job_running(buf->b_term))
492 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +0200493 if (wipe_buf || unload_buf)
494 /* Wiping out or unloading a terminal buffer kills the job. */
Bram Moolenaar94053a52017-08-01 21:44:33 +0200495 free_terminal(buf);
496 else
497 {
498 /* The job keeps running, hide the buffer. */
499 del_buf = FALSE;
500 unload_buf = FALSE;
501 }
502 }
503 else
504 {
505 /* A terminal buffer is wiped out if the job has finished. */
506 del_buf = TRUE;
507 unload_buf = TRUE;
508 wipe_buf = TRUE;
509 }
510 }
Bram Moolenaar94053a52017-08-01 21:44:33 +0200511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512
Bram Moolenaar30180b82016-09-04 19:57:56 +0200513#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200514 /* Disallow deleting the buffer when it is locked (already being closed or
515 * halfway a command that relies on it). Unloading is allowed. */
516 if (buf->b_locked > 0 && (del_buf || wipe_buf))
517 {
518 EMSG(_("E937: Attempt to delete a buffer that is in use"));
519 return;
520 }
Bram Moolenaar30180b82016-09-04 19:57:56 +0200521#endif
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200522
Bram Moolenaar4033c552017-09-16 20:54:51 +0200523 /* check no autocommands closed the window */
524 if (win != NULL && win_valid_any_tab(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 {
526 /* Set b_last_cursor when closing the last window for the buffer.
527 * Remember the last cursor position and window options of the buffer.
528 * This used to be only for the current window, but then options like
529 * 'foldmethod' may be lost with a ":only" command. */
530 if (buf->b_nwindows == 1)
531 set_last_cursor(win);
532 buflist_setfpos(buf, win,
533 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
534 win->w_cursor.col, TRUE);
535 }
536
537#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200538 set_bufref(&bufref, buf);
539
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 /* When the buffer is no longer in a window, trigger BufWinLeave */
541 if (buf->b_nwindows == 1)
542 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200543 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200544 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
545 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200546 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100547 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200548 /* Autocommands deleted the buffer. */
549aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100550 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100552 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200553 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200554 if (abort_if_last && one_window())
555 /* Autocommands made this the only window. */
556 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557
558 /* When the buffer becomes hidden, but is not unloaded, trigger
559 * BufHidden */
560 if (!unload_buf)
561 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200562 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200563 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
564 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200565 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200566 /* Autocommands deleted the buffer. */
567 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200568 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200569 if (abort_if_last && one_window())
570 /* Autocommands made this the only window. */
571 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 }
573# ifdef FEAT_EVAL
574 if (aborting()) /* autocmds may abort script processing */
575 return;
576# endif
577 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200578
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200579 /* If the buffer was in curwin and the window has changed, go back to that
580 * window, if it still exists. This avoids that ":edit x" triggering a
581 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
582 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
583 {
584 block_autocmds();
585 goto_tabpage_win(the_curtab, the_curwin);
586 unblock_autocmds();
587 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200588
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 nwindows = buf->b_nwindows;
590#endif
591
592 /* decrease the link count from windows (unless not in any window) */
593 if (buf->b_nwindows > 0)
594 --buf->b_nwindows;
595
Bram Moolenaar97ce4192017-12-01 20:35:58 +0100596#ifdef FEAT_DIFF
597 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0)
598 diff_buf_delete(buf); /* Clear 'diff' for hidden buffer. */
599#endif
600
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 /* Return when a window is displaying the buffer or when it's not
602 * unloaded. */
603 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
606 /* Always remove the buffer when there is no file name. */
607 if (buf->b_ffname == NULL)
608 del_buf = TRUE;
609
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200610 /* When closing the current buffer stop Visual mode before freeing
611 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200612 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200613#if defined(EXITFREE)
614 && !entered_free_all_mem
615#endif
616 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200617 end_visual_mode();
618
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 /*
620 * Free all things allocated for this buffer.
621 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
622 */
623#ifdef FEAT_AUTOCMD
624 /* Remember if we are closing the current buffer. Restore the number of
625 * windows, so that autocommands in buf_freeall() don't get confused. */
626 is_curbuf = (buf == curbuf);
627 buf->b_nwindows = nwindows;
628#endif
629
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200630 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631
632#ifdef FEAT_AUTOCMD
633 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200634 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 return;
636# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000637 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 return;
639# endif
640
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 /*
642 * It's possible that autocommands change curbuf to the one being deleted.
643 * This might cause the previous curbuf to be deleted unexpectedly. But
644 * in some cases it's OK to delete the curbuf, because a new one is
645 * obtained anyway. Therefore only return if curbuf changed to the
646 * deleted buffer.
647 */
648 if (buf == curbuf && !is_curbuf)
649 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200650
Bram Moolenaar4033c552017-09-16 20:54:51 +0200651 if (win_valid_any_tab(win) && win->w_buffer == buf)
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200652 win->w_buffer = NULL; /* make sure we don't use the buffer now */
653
654 /* Autocommands may have opened or closed windows for this buffer.
655 * Decrement the count for the close we do here. */
656 if (buf->b_nwindows > 0)
657 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658#endif
659
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000660 /* Change directories when the 'acd' option is set. */
661 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
663 /*
664 * Remove the buffer from the list.
665 */
666 if (wipe_buf)
667 {
668#ifdef FEAT_SUN_WORKSHOP
669 if (usingSunWorkShop)
670 workshop_file_closed_lineno((char *)buf->b_ffname,
671 (int)buf->b_last_cursor.lnum);
672#endif
673 vim_free(buf->b_ffname);
674 vim_free(buf->b_sfname);
675 if (buf->b_prev == NULL)
676 firstbuf = buf->b_next;
677 else
678 buf->b_prev->b_next = buf->b_next;
679 if (buf->b_next == NULL)
680 lastbuf = buf->b_prev;
681 else
682 buf->b_next->b_prev = buf->b_prev;
683 free_buffer(buf);
684 }
685 else
686 {
687 if (del_buf)
688 {
689 /* Free all internal variables and reset option values, to make
690 * ":bdel" compatible with Vim 5.7. */
691 free_buffer_stuff(buf, TRUE);
692
693 /* Make it look like a new buffer. */
694 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
695
696 /* Init the options when loaded again. */
697 buf->b_p_initialized = FALSE;
698 }
699 buf_clear_file(buf);
700 if (del_buf)
701 buf->b_p_bl = FALSE;
702 }
703}
704
705/*
706 * Make buffer not contain a file.
707 */
708 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100709buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710{
711 buf->b_ml.ml_line_count = 1;
712 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 buf->b_p_eol = TRUE;
715 buf->b_start_eol = TRUE;
716#ifdef FEAT_MBYTE
717 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000718 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719#endif
720 buf->b_ml.ml_mfp = NULL;
721 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
722#ifdef FEAT_NETBEANS_INTG
723 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724#endif
725}
726
727/*
728 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200729 * the file. Careful: get here with "curwin" NULL when exiting.
730 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200731 * BFA_DEL buffer is going to be deleted
732 * BFA_WIPE buffer is going to be wiped out
733 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100736buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737{
738#ifdef FEAT_AUTOCMD
739 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200740 bufref_T bufref;
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200741 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200742 win_T *the_curwin = curwin;
743 tabpage_T *the_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744
Bram Moolenaar5a497892016-09-03 16:29:04 +0200745 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200746 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200747 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200748 if (buf->b_ml.ml_mfp != NULL)
749 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200750 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
751 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200752 && !bufref_valid(&bufref))
753 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200754 return;
755 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200756 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200758 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
759 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200760 && !bufref_valid(&bufref))
761 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 return;
763 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200764 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200766 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
767 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200768 && !bufref_valid(&bufref))
769 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 return;
771 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200772 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200773
Bram Moolenaar5a497892016-09-03 16:29:04 +0200774 /* If the buffer was in curwin and the window has changed, go back to that
775 * window, if it still exists. This avoids that ":edit x" triggering a
776 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
777 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
778 {
779 block_autocmds();
780 goto_tabpage_win(the_curtab, the_curwin);
781 unblock_autocmds();
782 }
Bram Moolenaar5a497892016-09-03 16:29:04 +0200783
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000785 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 return;
787# endif
788
789 /*
790 * It's possible that autocommands change curbuf to the one being deleted.
791 * This might cause curbuf to be deleted unexpectedly. But in some cases
792 * it's OK to delete the curbuf, because a new one is obtained anyway.
793 * Therefore only return if curbuf changed to the deleted buffer.
794 */
795 if (buf == curbuf && !is_curbuf)
796 return;
797#endif
798#ifdef FEAT_DIFF
799 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
800#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200801#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100802 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200803 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100804 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200805#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000806
807#ifdef FEAT_FOLDING
808 /* No folds in an empty buffer. */
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000809 {
810 win_T *win;
811 tabpage_T *tp;
812
813 FOR_ALL_TAB_WINDOWS(tp, win)
814 if (win->w_buffer == buf)
815 clearFolding(win);
816 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000817#endif
818
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819#ifdef FEAT_TCL
820 tcl_buffer_free(buf);
821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 ml_close(buf, TRUE); /* close and delete the memline/memfile */
823 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200824 if ((flags & BFA_KEEP_UNDO) == 0)
825 {
826 u_blockfree(buf); /* free the memory allocated for undo */
827 u_clearall(buf); /* reset all undo information */
828 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200830 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000832 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833}
834
835/*
836 * Free a buffer structure and the things it contains related to the buffer
837 * itself (not the file, that must have been done already).
838 */
839 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100840free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200842 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200844#ifdef FEAT_EVAL
Bram Moolenaarb2c87502017-10-14 21:15:58 +0200845 /* b:changedtick uses an item in buf_T, remove it now */
846 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200847 unref_var_dict(buf->b_vars);
848#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200849#ifdef FEAT_LUA
850 lua_buffer_free(buf);
851#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000852#ifdef FEAT_MZSCHEME
853 mzscheme_buffer_free(buf);
854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855#ifdef FEAT_PERL
856 perl_buf_free(buf);
857#endif
858#ifdef FEAT_PYTHON
859 python_buffer_free(buf);
860#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200861#ifdef FEAT_PYTHON3
862 python3_buffer_free(buf);
863#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864#ifdef FEAT_RUBY
865 ruby_buffer_free(buf);
866#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200867#ifdef FEAT_JOB_CHANNEL
868 channel_buffer_free(buf);
869#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200870#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200871 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200872#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200873
874 buf_hashtab_remove(buf);
875
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200876#ifdef FEAT_AUTOCMD
877 aubuflocal_remove(buf);
878
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200879 if (autocmd_busy)
880 {
881 /* Do not free the buffer structure while autocommands are executing,
882 * it's still needed. Free it when autocmd_busy is reset. */
883 buf->b_next = au_pending_free_buf;
884 au_pending_free_buf = buf;
885 }
886 else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000887#endif
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200888 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889}
890
891/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100892 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100893 */
894 static void
895init_changedtick(buf_T *buf)
896{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100897 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100898
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100899 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
900 di->di_tv.v_type = VAR_NUMBER;
901 di->di_tv.v_lock = VAR_FIXED;
902 di->di_tv.vval.v_number = 0;
903
Bram Moolenaar92769c32017-02-25 15:41:37 +0100904#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100905 STRCPY(buf->b_ct_di.di_key, "changedtick");
906 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100907#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100908}
909
910/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
912 */
913 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100914free_buffer_stuff(
915 buf_T *buf,
916 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917{
918 if (free_options)
919 {
920 clear_wininfo(buf); /* including window-local options */
921 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200922#ifdef FEAT_SPELL
923 ga_clear(&buf->b_s.b_langp);
924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 }
926#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100927 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100928 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100929
930 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
931 hash_init(&buf->b_vars->dv_hashtab);
932 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100933 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935#endif
936#ifdef FEAT_USR_CMDS
937 uc_clear(&buf->b_ucmds); /* clear local user commands */
938#endif
939#ifdef FEAT_SIGNS
940 buf_delete_signs(buf); /* delete any signs */
941#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000942#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200943 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000944#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945#ifdef FEAT_LOCALMAP
946 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
947 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
948#endif
949#ifdef FEAT_MBYTE
950 vim_free(buf->b_start_fenc);
951 buf->b_start_fenc = NULL;
952#endif
953}
954
955/*
956 * Free the b_wininfo list for buffer "buf".
957 */
958 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100959clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960{
961 wininfo_T *wip;
962
963 while (buf->b_wininfo != NULL)
964 {
965 wip = buf->b_wininfo;
966 buf->b_wininfo = wip->wi_next;
967 if (wip->wi_optset)
968 {
969 clear_winopt(&wip->wi_opt);
970#ifdef FEAT_FOLDING
971 deleteFoldRecurse(&wip->wi_folds);
972#endif
973 }
974 vim_free(wip);
975 }
976}
977
978#if defined(FEAT_LISTCMDS) || defined(PROTO)
979/*
980 * Go to another buffer. Handles the result of the ATTENTION dialog.
981 */
982 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100983goto_buffer(
984 exarg_T *eap,
985 int start,
986 int dir,
987 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988{
Bram Moolenaar4033c552017-09-16 20:54:51 +0200989# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200990 bufref_T old_curbuf;
991
992 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994 swap_exists_action = SEA_DIALOG;
995# endif
996 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
997 start, dir, count, eap->forceit);
Bram Moolenaar4033c552017-09-16 20:54:51 +0200998# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1000 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001001# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1002 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001003
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001004 /* Reset the error/interrupt/exception state here so that
1005 * aborting() returns FALSE when closing a window. */
1006 enter_cleanup(&cs);
1007# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001008
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001009 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 win_close(curwin, TRUE);
1011 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001012 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001013
1014# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1015 /* Restore the error/interrupt/exception state if not discarded by a
1016 * new aborting error, interrupt, or uncaught exception. */
1017 leave_cleanup(&cs);
1018# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 }
1020 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001021 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022# endif
1023}
1024#endif
1025
Bram Moolenaare64ac772005-12-07 20:54:59 +00001026#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027/*
1028 * Handle the situation of swap_exists_action being set.
1029 * It is allowed for "old_curbuf" to be NULL or invalid.
1030 */
1031 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001032handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033{
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001034# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1035 cleanup_T cs;
1036# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001037#ifdef FEAT_SYN_HL
1038 long old_tw = curbuf->b_p_tw;
1039#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001040 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001041
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 if (swap_exists_action == SEA_QUIT)
1043 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001044# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1045 /* Reset the error/interrupt/exception state here so that
1046 * aborting() returns FALSE when closing a buffer. */
1047 enter_cleanup(&cs);
1048# endif
1049
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 /* User selected Quit at ATTENTION prompt. Go back to previous
1051 * buffer. If that buffer is gone or the same as the current one,
1052 * open a new, empty buffer. */
1053 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001054 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001055 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001056 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1057 || old_curbuf->br_buf == curbuf)
1058 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1059 else
1060 buf = old_curbuf->br_buf;
1061 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001062 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001063 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001064#ifdef FEAT_SYN_HL
1065 if (old_tw != curbuf->b_p_tw)
1066 check_colorcolumn(curwin);
1067#endif
1068 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001070
1071# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1072 /* Restore the error/interrupt/exception state if not discarded by a
1073 * new aborting error, interrupt, or uncaught exception. */
1074 leave_cleanup(&cs);
1075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 }
1077 else if (swap_exists_action == SEA_RECOVER)
1078 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001079# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1080 /* Reset the error/interrupt/exception state here so that
1081 * aborting() returns FALSE when closing a buffer. */
1082 enter_cleanup(&cs);
1083# endif
1084
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 /* User selected Recover at ATTENTION prompt. */
1086 msg_scroll = TRUE;
1087 ml_recover();
1088 MSG_PUTS("\n"); /* don't overwrite the last message */
1089 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001090 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091
1092# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1093 /* Restore the error/interrupt/exception state if not discarded by a
1094 * new aborting error, interrupt, or uncaught exception. */
1095 leave_cleanup(&cs);
1096# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 }
1098 swap_exists_action = SEA_NONE;
1099}
1100#endif
1101
1102#if defined(FEAT_LISTCMDS) || defined(PROTO)
1103/*
1104 * do_bufdel() - delete or unload buffer(s)
1105 *
1106 * addr_count == 0: ":bdel" - delete current buffer
1107 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1108 * buffer "end_bnr", then any other arguments.
1109 * addr_count == 2: ":N,N bdel" - delete buffers in range
1110 *
1111 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1112 * DOBUF_DEL (":bdel")
1113 *
1114 * Returns error message or NULL
1115 */
1116 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001117do_bufdel(
1118 int command,
1119 char_u *arg, /* pointer to extra arguments */
1120 int addr_count,
1121 int start_bnr, /* first buffer number in a range */
1122 int end_bnr, /* buffer nr or last buffer nr in a range */
1123 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124{
1125 int do_current = 0; /* delete current buffer? */
1126 int deleted = 0; /* number of buffers deleted */
1127 char_u *errormsg = NULL; /* return value */
1128 int bnr; /* buffer number */
1129 char_u *p;
1130
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 if (addr_count == 0)
1132 {
1133 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1134 }
1135 else
1136 {
1137 if (addr_count == 2)
1138 {
1139 if (*arg) /* both range and argument is not allowed */
1140 return (char_u *)_(e_trailing);
1141 bnr = start_bnr;
1142 }
1143 else /* addr_count == 1 */
1144 bnr = end_bnr;
1145
1146 for ( ;!got_int; ui_breakcheck())
1147 {
1148 /*
1149 * delete the current buffer last, otherwise when the
1150 * current buffer is deleted, the next buffer becomes
1151 * the current one and will be loaded, which may then
1152 * also be deleted, etc.
1153 */
1154 if (bnr == curbuf->b_fnum)
1155 do_current = bnr;
1156 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1157 forceit) == OK)
1158 ++deleted;
1159
1160 /*
1161 * find next buffer number to delete/unload
1162 */
1163 if (addr_count == 2)
1164 {
1165 if (++bnr > end_bnr)
1166 break;
1167 }
1168 else /* addr_count == 1 */
1169 {
1170 arg = skipwhite(arg);
1171 if (*arg == NUL)
1172 break;
1173 if (!VIM_ISDIGIT(*arg))
1174 {
1175 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001176 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1177 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 if (bnr < 0) /* failed */
1179 break;
1180 arg = p;
1181 }
1182 else
1183 bnr = getdigits(&arg);
1184 }
1185 }
1186 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1187 FORWARD, do_current, forceit) == OK)
1188 ++deleted;
1189
1190 if (deleted == 0)
1191 {
1192 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001193 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001195 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001197 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 errormsg = IObuff;
1199 }
1200 else if (deleted >= p_report)
1201 {
1202 if (command == DOBUF_UNLOAD)
1203 {
1204 if (deleted == 1)
1205 MSG(_("1 buffer unloaded"));
1206 else
1207 smsg((char_u *)_("%d buffers unloaded"), deleted);
1208 }
1209 else if (command == DOBUF_DEL)
1210 {
1211 if (deleted == 1)
1212 MSG(_("1 buffer deleted"));
1213 else
1214 smsg((char_u *)_("%d buffers deleted"), deleted);
1215 }
1216 else
1217 {
1218 if (deleted == 1)
1219 MSG(_("1 buffer wiped out"));
1220 else
1221 smsg((char_u *)_("%d buffers wiped out"), deleted);
1222 }
1223 }
1224 }
1225
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227 return errormsg;
1228}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001229#endif /* FEAT_LISTCMDS */
1230
1231#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1232 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001234static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001235
1236/*
1237 * Make the current buffer empty.
1238 * Used when it is wiped out and it's the last buffer.
1239 */
1240 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001241empty_curbuf(
1242 int close_others,
1243 int forceit,
1244 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001245{
1246 int retval;
1247 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001248 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001249
1250 if (action == DOBUF_UNLOAD)
1251 {
1252 EMSG(_("E90: Cannot unload last buffer"));
1253 return FAIL;
1254 }
1255
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001256 set_bufref(&bufref, buf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001257 if (close_others)
1258 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001259 close_windows(buf, TRUE);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001260
1261 setpcmark();
1262 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1263 forceit ? ECMD_FORCEIT : 0, curwin);
1264
1265 /*
1266 * do_ecmd() may create a new buffer, then we have to delete
1267 * the old one. But do_ecmd() may have done that already, check
1268 * if the buffer still exists.
1269 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001270 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001271 close_buffer(NULL, buf, action, FALSE);
1272 if (!close_others)
1273 need_fileinfo = FALSE;
1274 return retval;
1275}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276/*
1277 * Implementation of the commands for the buffer list.
1278 *
1279 * action == DOBUF_GOTO go to specified buffer
1280 * action == DOBUF_SPLIT split window and go to specified buffer
1281 * action == DOBUF_UNLOAD unload specified buffer(s)
1282 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1283 * action == DOBUF_WIPE delete specified buffer(s) really
1284 *
1285 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1286 * start == DOBUF_FIRST go to "count" buffer from first buffer
1287 * start == DOBUF_LAST go to "count" buffer from last buffer
1288 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1289 *
1290 * Return FAIL or OK.
1291 */
1292 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001293do_buffer(
1294 int action,
1295 int start,
1296 int dir, /* FORWARD or BACKWARD */
1297 int count, /* buffer number or number of buffers */
1298 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299{
1300 buf_T *buf;
1301 buf_T *bp;
1302 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1303 || action == DOBUF_WIPE);
1304
1305 switch (start)
1306 {
1307 case DOBUF_FIRST: buf = firstbuf; break;
1308 case DOBUF_LAST: buf = lastbuf; break;
1309 default: buf = curbuf; break;
1310 }
1311 if (start == DOBUF_MOD) /* find next modified buffer */
1312 {
1313 while (count-- > 0)
1314 {
1315 do
1316 {
1317 buf = buf->b_next;
1318 if (buf == NULL)
1319 buf = firstbuf;
1320 }
1321 while (buf != curbuf && !bufIsChanged(buf));
1322 }
1323 if (!bufIsChanged(buf))
1324 {
1325 EMSG(_("E84: No modified buffer found"));
1326 return FAIL;
1327 }
1328 }
1329 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1330 {
1331 while (buf != NULL && buf->b_fnum != count)
1332 buf = buf->b_next;
1333 }
1334 else
1335 {
1336 bp = NULL;
1337 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1338 {
1339 /* remember the buffer where we start, we come back there when all
1340 * buffers are unlisted. */
1341 if (bp == NULL)
1342 bp = buf;
1343 if (dir == FORWARD)
1344 {
1345 buf = buf->b_next;
1346 if (buf == NULL)
1347 buf = firstbuf;
1348 }
1349 else
1350 {
1351 buf = buf->b_prev;
1352 if (buf == NULL)
1353 buf = lastbuf;
1354 }
1355 /* don't count unlisted buffers */
1356 if (unload || buf->b_p_bl)
1357 {
1358 --count;
1359 bp = NULL; /* use this buffer as new starting point */
1360 }
1361 if (bp == buf)
1362 {
1363 /* back where we started, didn't find anything. */
1364 EMSG(_("E85: There is no listed buffer"));
1365 return FAIL;
1366 }
1367 }
1368 }
1369
1370 if (buf == NULL) /* could not find it */
1371 {
1372 if (start == DOBUF_FIRST)
1373 {
1374 /* don't warn when deleting */
1375 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001376 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 }
1378 else if (dir == FORWARD)
1379 EMSG(_("E87: Cannot go beyond last buffer"));
1380 else
1381 EMSG(_("E88: Cannot go before first buffer"));
1382 return FAIL;
1383 }
1384
1385#ifdef FEAT_GUI
1386 need_mouse_correct = TRUE;
1387#endif
1388
1389#ifdef FEAT_LISTCMDS
1390 /*
1391 * delete buffer buf from memory and/or the list
1392 */
1393 if (unload)
1394 {
1395 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001396 bufref_T bufref;
1397
1398 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399
1400 /* When unloading or deleting a buffer that's already unloaded and
1401 * unlisted: fail silently. */
1402 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1403 return FAIL;
1404
1405 if (!forceit && bufIsChanged(buf))
1406 {
1407#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1408 if ((p_confirm || cmdmod.confirm) && p_write)
1409 {
1410 dialog_changed(buf, FALSE);
1411# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001412 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 /* Autocommand deleted buffer, oops! It's not changed
1414 * now. */
1415 return FAIL;
1416# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001417 /* If it's still changed fail silently, the dialog already
1418 * mentioned why it fails. */
1419 if (bufIsChanged(buf))
1420 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001422 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423#endif
1424 {
1425 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1426 buf->b_fnum);
1427 return FAIL;
1428 }
1429 }
1430
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001431 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001432 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001433 end_visual_mode();
1434
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 /*
1436 * If deleting the last (listed) buffer, make it empty.
1437 * The last (listed) buffer cannot be unloaded.
1438 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001439 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 if (bp->b_p_bl && bp != buf)
1441 break;
1442 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001443 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 /*
1446 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001447 * (unless it's the only window). Repeat this so long as we end up in
1448 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001450 while (buf == curbuf
Bram Moolenaar4033c552017-09-16 20:54:51 +02001451#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001452 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar4033c552017-09-16 20:54:51 +02001453#endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01001454 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001455 {
1456 if (win_close(curwin, FALSE) == FAIL)
1457 break;
1458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
1460 /*
1461 * If the buffer to be deleted is not the current one, delete it here.
1462 */
1463 if (buf != curbuf)
1464 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001465 close_windows(buf, FALSE);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001466 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001467 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 return OK;
1469 }
1470
1471 /*
1472 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001473 * There should be another, otherwise it would have been handled
1474 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001475 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 * Then prefer the buffer we most recently visited.
1477 * Else try to find one that is loaded, after the current buffer,
1478 * then before the current buffer.
1479 * Finally use any buffer.
1480 */
1481 buf = NULL; /* selected buffer */
1482 bp = NULL; /* used when no loaded buffer found */
1483#ifdef FEAT_AUTOCMD
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001484 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1485 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486# ifdef FEAT_JUMPLIST
1487 else
1488# endif
1489#endif
1490#ifdef FEAT_JUMPLIST
1491 if (curwin->w_jumplistlen > 0)
1492 {
1493 int jumpidx;
1494
1495 jumpidx = curwin->w_jumplistidx - 1;
1496 if (jumpidx < 0)
1497 jumpidx = curwin->w_jumplistlen - 1;
1498
1499 forward = jumpidx;
1500 while (jumpidx != curwin->w_jumplistidx)
1501 {
1502 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1503 if (buf != NULL)
1504 {
1505 if (buf == curbuf || !buf->b_p_bl)
1506 buf = NULL; /* skip current and unlisted bufs */
1507 else if (buf->b_ml.ml_mfp == NULL)
1508 {
1509 /* skip unloaded buf, but may keep it for later */
1510 if (bp == NULL)
1511 bp = buf;
1512 buf = NULL;
1513 }
1514 }
1515 if (buf != NULL) /* found a valid buffer: stop searching */
1516 break;
1517 /* advance to older entry in jump list */
1518 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1519 break;
1520 if (--jumpidx < 0)
1521 jumpidx = curwin->w_jumplistlen - 1;
1522 if (jumpidx == forward) /* List exhausted for sure */
1523 break;
1524 }
1525 }
1526#endif
1527
1528 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1529 {
1530 forward = TRUE;
1531 buf = curbuf->b_next;
1532 for (;;)
1533 {
1534 if (buf == NULL)
1535 {
1536 if (!forward) /* tried both directions */
1537 break;
1538 buf = curbuf->b_prev;
1539 forward = FALSE;
1540 continue;
1541 }
1542 /* in non-help buffer, try to skip help buffers, and vv */
1543 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1544 {
1545 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1546 break;
1547 if (bp == NULL) /* remember unloaded buf for later */
1548 bp = buf;
1549 }
1550 if (forward)
1551 buf = buf->b_next;
1552 else
1553 buf = buf->b_prev;
1554 }
1555 }
1556 if (buf == NULL) /* No loaded buffer, use unloaded one */
1557 buf = bp;
1558 if (buf == NULL) /* No loaded buffer, find listed one */
1559 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001560 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 if (buf->b_p_bl && buf != curbuf)
1562 break;
1563 }
1564 if (buf == NULL) /* Still no buffer, just take one */
1565 {
1566 if (curbuf->b_next != NULL)
1567 buf = curbuf->b_next;
1568 else
1569 buf = curbuf->b_prev;
1570 }
1571 }
1572
Bram Moolenaara02471e2014-01-10 16:43:14 +01001573 if (buf == NULL)
1574 {
1575 /* Autocommands must have wiped out all other buffers. Only option
1576 * now is to make the current buffer empty. */
1577 return empty_curbuf(FALSE, forceit, action);
1578 }
1579
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 /*
1581 * make buf current buffer
1582 */
1583 if (action == DOBUF_SPLIT) /* split window first */
1584 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00001585 /* If 'switchbuf' contains "useopen": jump to first window containing
1586 * "buf" if one exists */
1587 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001588 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001589 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001590 * page containing "buf" if one exists */
1591 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 return OK;
1593 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 return FAIL;
1595 }
1596#endif
1597
1598 /* go to current buffer - nothing to do */
1599 if (buf == curbuf)
1600 return OK;
1601
1602 /*
1603 * Check if the current buffer may be abandoned.
1604 */
1605 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1606 {
1607#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1608 if ((p_confirm || cmdmod.confirm) && p_write)
1609 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001610# ifdef FEAT_AUTOCMD
1611 bufref_T bufref;
1612
1613 set_bufref(&bufref, buf);
1614# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 dialog_changed(curbuf, FALSE);
1616# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001617 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 /* Autocommand deleted buffer, oops! */
1619 return FAIL;
1620# endif
1621 }
1622 if (bufIsChanged(curbuf))
1623#endif
1624 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001625 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 return FAIL;
1627 }
1628 }
1629
1630 /* Go to the other buffer. */
1631 set_curbuf(buf, action);
1632
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001633#if defined(FEAT_LISTCMDS) \
1634 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001636 {
1637 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639#endif
1640
1641#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1642 if (aborting()) /* autocmds may abort script processing */
1643 return FAIL;
1644#endif
1645
1646 return OK;
1647}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649
1650/*
1651 * Set current buffer to "buf". Executes autocommands and closes current
1652 * buffer. "action" tells how to close the current buffer:
1653 * DOBUF_GOTO free or hide it
1654 * DOBUF_SPLIT nothing
1655 * DOBUF_UNLOAD unload it
1656 * DOBUF_DEL delete it
1657 * DOBUF_WIPE wipe it out
1658 */
1659 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001660set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661{
1662 buf_T *prevbuf;
1663 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1664 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001665#ifdef FEAT_SYN_HL
1666 long old_tw = curbuf->b_p_tw;
1667#endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001668 bufref_T newbufref;
1669 bufref_T prevbufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670
1671 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001672 if (!cmdmod.keepalt)
1673 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001674 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 /* Don't restart Select mode after switching to another buffer. */
1677 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001679 /* close_windows() or apply_autocmds() may change curbuf and wipe out "buf"
1680 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 prevbuf = curbuf;
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001682 set_bufref(&prevbufref, prevbuf);
1683 set_bufref(&newbufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684
1685#ifdef FEAT_AUTOCMD
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001686 /* Autocommands may delete the curren buffer and/or the buffer we wan to go
1687 * to. In those cases don't close the buffer. */
Bram Moolenaar82404332016-07-10 17:00:38 +02001688 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001689 || (bufref_valid(&prevbufref)
1690 && bufref_valid(&newbufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691# ifdef FEAT_EVAL
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001692 && !aborting()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693# endif
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001694 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695#endif
1696 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001697#ifdef FEAT_SYN_HL
1698 if (prevbuf == curwin->w_buffer)
1699 reset_synblock(curwin);
1700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001702 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001704 if (bufref_valid(&prevbufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705#else
Bram Moolenaar9bca8052017-12-18 12:37:55 +01001706 if (bufref_valid(&prevbufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001708 {
Bram Moolenaare25865a2012-07-06 16:22:02 +02001709 win_T *previouswin = curwin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001710 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001711 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1713 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001714 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001715 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaare25865a2012-07-06 16:22:02 +02001716 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001717 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001718 curwin = previouswin;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 }
1721#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001722 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001723 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001724 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1725 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001726# ifdef FEAT_EVAL
Bram Moolenaar4033c552017-09-16 20:54:51 +02001727 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001728# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001729 ) || curwin->w_buffer == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001731 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001733#ifdef FEAT_SYN_HL
1734 if (old_tw != curbuf->b_p_tw)
1735 check_colorcolumn(curwin);
1736#endif
1737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738}
1739
1740/*
1741 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001742 * Old curbuf must have been abandoned already! This also means "curbuf" may
1743 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 */
1745 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001746enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747{
1748 /* Copy buffer and window local option values. Not for a help buffer. */
1749 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1750 if (!buf->b_help)
1751 get_winopts(buf);
1752#ifdef FEAT_FOLDING
1753 else
1754 /* Remove all folds in the window. */
1755 clearFolding(curwin);
1756 foldUpdateAll(curwin); /* update folds (later). */
1757#endif
1758
1759 /* Get the buffer in the current window. */
1760 curwin->w_buffer = buf;
1761 curbuf = buf;
1762 ++curbuf->b_nwindows;
1763
1764#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001765 if (curwin->w_p_diff)
1766 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767#endif
1768
Bram Moolenaara971b822011-09-14 14:43:25 +02001769#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001770 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001771#endif
1772
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 /* Cursor on first line by default. */
1774 curwin->w_cursor.lnum = 1;
1775 curwin->w_cursor.col = 0;
1776#ifdef FEAT_VIRTUALEDIT
1777 curwin->w_cursor.coladd = 0;
1778#endif
1779 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001780#ifdef FEAT_AUTOCMD
1781 curwin->w_topline_was_set = FALSE;
1782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001784 /* mark cursor position as being invalid */
1785 curwin->w_valid = 0;
1786
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 /* Make sure the buffer is loaded. */
1788 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001789 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001790#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001791 /* If there is no filetype, allow for detecting one. Esp. useful for
1792 * ":ball" used in a autocommand. If there already is a filetype we
1793 * might prefer to keep it. */
1794 if (*curbuf->b_p_ft == NUL)
1795 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001796#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001797
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001798 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001799 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 else
1801 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001802 if (!msg_silent)
1803 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1805#ifdef FEAT_AUTOCMD
1806 curwin->w_topline = 1;
1807# ifdef FEAT_DIFF
1808 curwin->w_topfill = 0;
1809# endif
1810 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1811 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1812#endif
1813 }
1814
1815 /* If autocommands did not change the cursor position, restore cursor lnum
1816 * and possibly cursor col. */
1817 if (curwin->w_cursor.lnum == 1 && inindent(0))
1818 buflist_getfpos();
1819
1820 check_arg_idx(curwin); /* check for valid arg_idx */
1821#ifdef FEAT_TITLE
1822 maketitle();
1823#endif
1824#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001825 /* when autocmds didn't change it */
1826 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827#endif
1828 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1829
Bram Moolenaar009b2592004-10-24 19:18:58 +00001830#ifdef FEAT_NETBEANS_INTG
1831 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001832 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001833#endif
1834
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001835 /* Change directories when the 'acd' option is set. */
1836 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837
1838#ifdef FEAT_KEYMAP
1839 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001840 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001842#ifdef FEAT_SPELL
1843 /* May need to set the spell language. Can only do this after the buffer
1844 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001845 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1846 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001847#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001848#ifdef FEAT_VIMINFO
1849 curbuf->b_last_used = vim_time();
1850#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001851
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 redraw_later(NOT_VALID);
1853}
1854
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001855#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1856/*
1857 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001858 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001859 */
1860 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001861do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001862{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001863 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001864 && curbuf->b_ffname != NULL
1865 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001866 shorten_fnames(TRUE);
1867}
1868#endif
1869
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02001870 void
1871no_write_message(void)
1872{
1873#ifdef FEAT_TERMINAL
1874 if (term_job_running(curbuf->b_term))
1875 EMSG(_("E948: Job still running (add ! to end the job)"));
1876 else
1877#endif
1878 EMSG(_("E37: No write since last change (add ! to override)"));
1879}
1880
1881 void
1882no_write_message_nobang(void)
1883{
1884#ifdef FEAT_TERMINAL
1885 if (term_job_running(curbuf->b_term))
1886 EMSG(_("E948: Job still running"));
1887 else
1888#endif
1889 EMSG(_("E37: No write since last change"));
1890}
1891
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892/*
1893 * functions for dealing with the buffer list
1894 */
1895
Bram Moolenaar480778b2016-07-14 22:09:39 +02001896static int top_file_num = 1; /* highest file number */
1897
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898/*
1899 * Add a file name to the buffer list. Return a pointer to the buffer.
1900 * If the same file name already exists return a pointer to that buffer.
1901 * If it does not exist, or if fname == NULL, a new entry is created.
1902 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1903 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1904 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001905 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001906 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1907 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 * This is the ONLY way to create a new buffer.
1909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001911buflist_new(
1912 char_u *ffname, /* full path of fname or relative */
1913 char_u *sfname, /* short fname or NULL */
1914 linenr_T lnum, /* preferred cursor line */
1915 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917 buf_T *buf;
1918#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001919 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920#endif
1921
Bram Moolenaar480778b2016-07-14 22:09:39 +02001922 if (top_file_num == 1)
1923 hash_init(&buf_hashtab);
1924
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1926
1927 /*
1928 * If file name already exists in the list, update the entry.
1929 */
1930#ifdef UNIX
1931 /* On Unix we can use inode numbers when the file exists. Works better
1932 * for hard links. */
1933 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1934 st.st_dev = (dev_T)-1;
1935#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001936 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937#ifdef UNIX
1938 buflist_findname_stat(ffname, &st)
1939#else
1940 buflist_findname(ffname)
1941#endif
1942 ) != NULL)
1943 {
1944 vim_free(ffname);
1945 if (lnum != 0)
1946 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001947
1948 if ((flags & BLN_NOOPT) == 0)
1949 /* copy the options now, if 'cpo' doesn't have 's' and not done
1950 * already */
1951 buf_copy_options(buf, 0);
1952
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1954 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001955#ifdef FEAT_AUTOCMD
1956 bufref_T bufref;
1957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 buf->b_p_bl = TRUE;
1959#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001960 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001962 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001963 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001964 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001965 return NULL;
1966 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967#endif
1968 }
1969 return buf;
1970 }
1971
1972 /*
1973 * If the current buffer has no name and no contents, use the current
1974 * buffer. Otherwise: Need to allocate a new buffer structure.
1975 *
1976 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001977 * (A spell file buffer is allocated in spell.c, but that's not a normal
1978 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 */
1980 buf = NULL;
1981 if ((flags & BLN_CURBUF)
1982 && curbuf != NULL
1983 && curbuf->b_ffname == NULL
1984 && curbuf->b_nwindows <= 1
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001985 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 {
1987 buf = curbuf;
1988#ifdef FEAT_AUTOCMD
1989 /* It's like this buffer is deleted. Watch out for autocommands that
1990 * change curbuf! If that happens, allocate a new buffer anyway. */
1991 if (curbuf->b_p_bl)
1992 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1993 if (buf == curbuf)
1994 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1995# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001996 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 return NULL;
1998# endif
1999#endif
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02002000#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 if (buf == curbuf)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02002002#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 {
2004 /* Make sure 'bufhidden' and 'buftype' are empty */
2005 clear_string_option(&buf->b_p_bh);
2006 clear_string_option(&buf->b_p_bt);
2007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 }
2009 if (buf != curbuf || curbuf == NULL)
2010 {
2011 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
2012 if (buf == NULL)
2013 {
2014 vim_free(ffname);
2015 return NULL;
2016 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002017#ifdef FEAT_EVAL
2018 /* init b: variables */
2019 buf->b_vars = dict_alloc();
2020 if (buf->b_vars == NULL)
2021 {
2022 vim_free(ffname);
2023 vim_free(buf);
2024 return NULL;
2025 }
2026 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2027#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002028 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 }
2030
2031 if (ffname != NULL)
2032 {
2033 buf->b_ffname = ffname;
2034 buf->b_sfname = vim_strsave(sfname);
2035 }
2036
2037 clear_wininfo(buf);
2038 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2039
2040 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2041 || buf->b_wininfo == NULL)
2042 {
2043 vim_free(buf->b_ffname);
2044 buf->b_ffname = NULL;
2045 vim_free(buf->b_sfname);
2046 buf->b_sfname = NULL;
2047 if (buf != curbuf)
2048 free_buffer(buf);
2049 return NULL;
2050 }
2051
2052 if (buf == curbuf)
2053 {
2054 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002055 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 if (buf != curbuf) /* autocommands deleted the buffer! */
2057 return NULL;
2058#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002059 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 return NULL;
2061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002063
2064 /* Init the options. */
2065 buf->b_p_initialized = FALSE;
2066 buf_copy_options(buf, BCO_ENTER);
2067
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068#ifdef FEAT_KEYMAP
2069 /* need to reload lmaps and set b:keymap_name */
2070 curbuf->b_kmap_state |= KEYMAP_INIT;
2071#endif
2072 }
2073 else
2074 {
2075 /*
2076 * put new buffer at the end of the buffer list
2077 */
2078 buf->b_next = NULL;
2079 if (firstbuf == NULL) /* buffer list is empty */
2080 {
2081 buf->b_prev = NULL;
2082 firstbuf = buf;
2083 }
2084 else /* append new buffer at end of list */
2085 {
2086 lastbuf->b_next = buf;
2087 buf->b_prev = lastbuf;
2088 }
2089 lastbuf = buf;
2090
2091 buf->b_fnum = top_file_num++;
2092 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2093 {
2094 EMSG(_("W14: Warning: List of file names overflow"));
2095 if (emsg_silent == 0)
2096 {
2097 out_flush();
2098 ui_delay(3000L, TRUE); /* make sure it is noticed */
2099 }
2100 top_file_num = 1;
2101 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002102 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103
2104 /*
2105 * Always copy the options from the current buffer.
2106 */
2107 buf_copy_options(buf, BCO_ALWAYS);
2108 }
2109
2110 buf->b_wininfo->wi_fpos.lnum = lnum;
2111 buf->b_wininfo->wi_win = curwin;
2112
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002113#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002114 hash_init(&buf->b_s.b_keywtab);
2115 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116#endif
2117
2118 buf->b_fname = buf->b_sfname;
2119#ifdef UNIX
2120 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002121 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 else
2123 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002124 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 buf->b_dev = st.st_dev;
2126 buf->b_ino = st.st_ino;
2127 }
2128#endif
2129 buf->b_u_synced = TRUE;
2130 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002131 if (flags & BLN_DUMMY)
2132 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 buf_clear_file(buf);
2134 clrallmarks(buf); /* clear marks */
2135 fmarks_check_names(buf); /* check file marks for this file */
2136 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2137#ifdef FEAT_AUTOCMD
2138 if (!(flags & BLN_DUMMY))
2139 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002140 bufref_T bufref;
2141
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002142 /* Tricky: these autocommands may change the buffer list. They could
2143 * also split the window with re-using the one empty buffer. This may
2144 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002145 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002146 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002147 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002148 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002150 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002151 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002152 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002153 return NULL;
2154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002156 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 return NULL;
2158# endif
2159 }
2160#endif
2161
2162 return buf;
2163}
2164
2165/*
2166 * Free the memory for the options of a buffer.
2167 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2168 * 'fileencoding'.
2169 */
2170 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002171free_buf_options(
2172 buf_T *buf,
2173 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174{
2175 if (free_p_ff)
2176 {
2177#ifdef FEAT_MBYTE
2178 clear_string_option(&buf->b_p_fenc);
2179#endif
2180 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 clear_string_option(&buf->b_p_bh);
2182 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 }
2184#ifdef FEAT_FIND_ID
2185 clear_string_option(&buf->b_p_def);
2186 clear_string_option(&buf->b_p_inc);
2187# ifdef FEAT_EVAL
2188 clear_string_option(&buf->b_p_inex);
2189# endif
2190#endif
2191#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2192 clear_string_option(&buf->b_p_inde);
2193 clear_string_option(&buf->b_p_indk);
2194#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002195#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2196 clear_string_option(&buf->b_p_bexpr);
2197#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002198#if defined(FEAT_CRYPT)
2199 clear_string_option(&buf->b_p_cm);
2200#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002201 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002202#if defined(FEAT_EVAL)
2203 clear_string_option(&buf->b_p_fex);
2204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205#ifdef FEAT_CRYPT
2206 clear_string_option(&buf->b_p_key);
2207#endif
2208 clear_string_option(&buf->b_p_kp);
2209 clear_string_option(&buf->b_p_mps);
2210 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002211 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 clear_string_option(&buf->b_p_isk);
2213#ifdef FEAT_KEYMAP
2214 clear_string_option(&buf->b_p_keymap);
Bram Moolenaar50138322018-01-28 17:05:16 +01002215 keymap_clear(&buf->b_kmap_ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 ga_clear(&buf->b_kmap_ga);
2217#endif
2218#ifdef FEAT_COMMENTS
2219 clear_string_option(&buf->b_p_com);
2220#endif
2221#ifdef FEAT_FOLDING
2222 clear_string_option(&buf->b_p_cms);
2223#endif
2224 clear_string_option(&buf->b_p_nf);
2225#ifdef FEAT_SYN_HL
2226 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002227 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002228#endif
2229#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002230 clear_string_option(&buf->b_s.b_p_spc);
2231 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002232 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002233 buf->b_s.b_cap_prog = NULL;
2234 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235#endif
2236#ifdef FEAT_SEARCHPATH
2237 clear_string_option(&buf->b_p_sua);
2238#endif
2239#ifdef FEAT_AUTOCMD
2240 clear_string_option(&buf->b_p_ft);
2241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242#ifdef FEAT_CINDENT
2243 clear_string_option(&buf->b_p_cink);
2244 clear_string_option(&buf->b_p_cino);
2245#endif
2246#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2247 clear_string_option(&buf->b_p_cinw);
2248#endif
2249#ifdef FEAT_INS_EXPAND
2250 clear_string_option(&buf->b_p_cpt);
2251#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002252#ifdef FEAT_COMPL_FUNC
2253 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002254 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256#ifdef FEAT_QUICKFIX
2257 clear_string_option(&buf->b_p_gp);
2258 clear_string_option(&buf->b_p_mp);
2259 clear_string_option(&buf->b_p_efm);
2260#endif
2261 clear_string_option(&buf->b_p_ep);
2262 clear_string_option(&buf->b_p_path);
2263 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002264 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265#ifdef FEAT_INS_EXPAND
2266 clear_string_option(&buf->b_p_dict);
2267 clear_string_option(&buf->b_p_tsr);
2268#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002269#ifdef FEAT_TEXTOBJ
2270 clear_string_option(&buf->b_p_qe);
2271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002273 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002274#ifdef FEAT_LISP
2275 clear_string_option(&buf->b_p_lw);
2276#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002277 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002278#ifdef FEAT_MBYTE
2279 clear_string_option(&buf->b_p_menc);
2280#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281}
2282
2283/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002284 * Get alternate file "n".
2285 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2286 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 * if (options & GETF_SETMARK) call setpcmark()
2288 * if (options & GETF_ALT) we are jumping to an alternate file.
2289 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2290 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002291 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 */
2293 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002294buflist_getfile(
2295 int n,
2296 linenr_T lnum,
2297 int options,
2298 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299{
2300 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 pos_T *fpos;
2303 colnr_T col;
2304
2305 buf = buflist_findnr(n);
2306 if (buf == NULL)
2307 {
2308 if ((options & GETF_ALT) && n == 0)
2309 EMSG(_(e_noalt));
2310 else
2311 EMSGN(_("E92: Buffer %ld not found"), n);
2312 return FAIL;
2313 }
2314
2315 /* if alternate file is the current buffer, nothing to do */
2316 if (buf == curbuf)
2317 return OK;
2318
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002319 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002320 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002321 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002323 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002324#ifdef FEAT_AUTOCMD
2325 if (curbuf_locked())
2326 return FAIL;
2327#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328
2329 /* altfpos may be changed by getfile(), get it now */
2330 if (lnum == 0)
2331 {
2332 fpos = buflist_findfpos(buf);
2333 lnum = fpos->lnum;
2334 col = fpos->col;
2335 }
2336 else
2337 col = 0;
2338
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 if (options & GETF_SWITCH)
2340 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002341 /* If 'switchbuf' contains "useopen": jump to first window containing
2342 * "buf" if one exists */
2343 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002345
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002346 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002347 * page containing "buf" if one exists */
2348 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002349 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002350
2351 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2352 * current buffer isn't empty: open new tab or window */
2353 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002354 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002356 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002357 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002358 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2359 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002361 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 }
2363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364
2365 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002366 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2367 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 {
2369 --RedrawingDisabled;
2370
2371 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2372 if (!p_sol && col != 0)
2373 {
2374 curwin->w_cursor.col = col;
2375 check_cursor_col();
2376#ifdef FEAT_VIRTUALEDIT
2377 curwin->w_cursor.coladd = 0;
2378#endif
2379 curwin->w_set_curswant = TRUE;
2380 }
2381 return OK;
2382 }
2383 --RedrawingDisabled;
2384 return FAIL;
2385}
2386
2387/*
2388 * go to the last know line number for the current buffer
2389 */
2390 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002391buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392{
2393 pos_T *fpos;
2394
2395 fpos = buflist_findfpos(curbuf);
2396
2397 curwin->w_cursor.lnum = fpos->lnum;
2398 check_cursor_lnum();
2399
2400 if (p_sol)
2401 curwin->w_cursor.col = 0;
2402 else
2403 {
2404 curwin->w_cursor.col = fpos->col;
2405 check_cursor_col();
2406#ifdef FEAT_VIRTUALEDIT
2407 curwin->w_cursor.coladd = 0;
2408#endif
2409 curwin->w_set_curswant = TRUE;
2410 }
2411}
2412
Bram Moolenaar81695252004-12-29 20:58:21 +00002413#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2414/*
2415 * Find file in buffer list by name (it has to be for the current window).
2416 * Returns NULL if not found.
2417 */
2418 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002419buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002420{
2421 char_u *ffname;
2422 buf_T *buf = NULL;
2423
2424 /* First make the name into a full path name */
2425 ffname = FullName_save(fname,
2426#ifdef UNIX
2427 TRUE /* force expansion, get rid of symbolic links */
2428#else
2429 FALSE
2430#endif
2431 );
2432 if (ffname != NULL)
2433 {
2434 buf = buflist_findname(ffname);
2435 vim_free(ffname);
2436 }
2437 return buf;
2438}
2439#endif
2440
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441/*
2442 * Find file in buffer list by name (it has to be for the current window).
2443 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002444 * Skips dummy buffers.
2445 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 */
2447 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002448buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449{
2450#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002451 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452
2453 if (mch_stat((char *)ffname, &st) < 0)
2454 st.st_dev = (dev_T)-1;
2455 return buflist_findname_stat(ffname, &st);
2456}
2457
2458/*
2459 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2460 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002461 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 */
2463 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002464buflist_findname_stat(
2465 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002466 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467{
2468#endif
2469 buf_T *buf;
2470
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002471 /* Start at the last buffer, expect to find a match sooner. */
2472 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002473 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474#ifdef UNIX
2475 , stp
2476#endif
2477 ))
2478 return buf;
2479 return NULL;
2480}
2481
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002482#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2483 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484/*
2485 * Find file in buffer list by a regexp pattern.
2486 * Return fnum of the found buffer.
2487 * Return < 0 for error.
2488 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002490buflist_findpat(
2491 char_u *pattern,
2492 char_u *pattern_end, /* pointer to first char after pattern */
2493 int unlisted, /* find unlisted buffers */
2494 int diffmode UNUSED, /* find diff-mode buffers only */
2495 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496{
2497 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 int match = -1;
2499 int find_listed;
2500 char_u *pat;
2501 char_u *patend;
2502 int attempt;
2503 char_u *p;
2504 int toggledollar;
2505
2506 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2507 {
2508 if (*pattern == '%')
2509 match = curbuf->b_fnum;
2510 else
2511 match = curwin->w_alt_fnum;
2512#ifdef FEAT_DIFF
2513 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2514 match = -1;
2515#endif
2516 }
2517
2518 /*
2519 * Try four ways of matching a listed buffer:
2520 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002521 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 * attempt == 2: with '$' at end (only match at end)
2523 * attempt == 3: with '^' at start and '$' at end (only full match)
2524 * Repeat this for finding an unlisted buffer if there was no matching
2525 * listed buffer.
2526 */
2527 else
2528 {
2529 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2530 if (pat == NULL)
2531 return -1;
2532 patend = pat + STRLEN(pat) - 1;
2533 toggledollar = (patend > pat && *patend == '$');
2534
2535 /* First try finding a listed buffer. If not found and "unlisted"
2536 * is TRUE, try finding an unlisted buffer. */
2537 find_listed = TRUE;
2538 for (;;)
2539 {
2540 for (attempt = 0; attempt <= 3; ++attempt)
2541 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002542 regmatch_T regmatch;
2543
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 /* may add '^' and '$' */
2545 if (toggledollar)
2546 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2547 p = pat;
2548 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2549 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002550 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2551 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 {
2553 vim_free(pat);
2554 return -1;
2555 }
2556
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002557 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if (buf->b_p_bl == find_listed
2559#ifdef FEAT_DIFF
2560 && (!diffmode || diff_mode_buf(buf))
2561#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002562 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002564 if (curtab_only)
2565 {
2566 /* Ignore the match if the buffer is not open in
2567 * the current tab. */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002568 win_T *wp;
2569
Bram Moolenaar29323592016-07-24 22:04:11 +02002570 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002571 if (wp->w_buffer == buf)
2572 break;
2573 if (wp == NULL)
2574 continue;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 if (match >= 0) /* already found a match */
2577 {
2578 match = -2;
2579 break;
2580 }
2581 match = buf->b_fnum; /* remember first match */
2582 }
2583
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002584 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 if (match >= 0) /* found one match */
2586 break;
2587 }
2588
2589 /* Only search for unlisted buffers if there was no match with
2590 * a listed buffer. */
2591 if (!unlisted || !find_listed || match != -1)
2592 break;
2593 find_listed = FALSE;
2594 }
2595
2596 vim_free(pat);
2597 }
2598
2599 if (match == -2)
2600 EMSG2(_("E93: More than one match for %s"), pattern);
2601 else if (match < 0)
2602 EMSG2(_("E94: No matching buffer for %s"), pattern);
2603 return match;
2604}
2605#endif
2606
2607#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2608
2609/*
2610 * Find all buffer names that match.
2611 * For command line expansion of ":buf" and ":sbuf".
2612 * Return OK if matches found, FAIL otherwise.
2613 */
2614 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002615ExpandBufnames(
2616 char_u *pat,
2617 int *num_file,
2618 char_u ***file,
2619 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620{
2621 int count = 0;
2622 buf_T *buf;
2623 int round;
2624 char_u *p;
2625 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002626 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627
2628 *num_file = 0; /* return values in case of FAIL */
2629 *file = NULL;
2630
Bram Moolenaar05159a02005-02-26 23:04:13 +00002631 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2632 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002634 patc = alloc((unsigned)STRLEN(pat) + 11);
2635 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002637 STRCPY(patc, "\\(^\\|[\\/]\\)");
2638 STRCPY(patc + 11, pat + 1);
2639 }
2640 else
2641 patc = pat;
2642
2643 /*
2644 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002645 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002646 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002647 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002648 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002649 regmatch_T regmatch;
2650
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002651 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002652 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002653 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2654 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002655 {
2656 if (patc != pat)
2657 vim_free(patc);
2658 return FAIL;
2659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660
2661 /*
2662 * round == 1: Count the matches.
2663 * round == 2: Build the array to keep the matches.
2664 */
2665 for (round = 1; round <= 2; ++round)
2666 {
2667 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002668 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 {
2670 if (!buf->b_p_bl) /* skip unlisted buffers */
2671 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002672 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 if (p != NULL)
2674 {
2675 if (round == 1)
2676 ++count;
2677 else
2678 {
2679 if (options & WILD_HOME_REPLACE)
2680 p = home_replace_save(buf, p);
2681 else
2682 p = vim_strsave(p);
2683 (*file)[count++] = p;
2684 }
2685 }
2686 }
2687 if (count == 0) /* no match found, break here */
2688 break;
2689 if (round == 1)
2690 {
2691 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2692 if (*file == NULL)
2693 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002694 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002695 if (patc != pat)
2696 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 return FAIL;
2698 }
2699 }
2700 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002701 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 if (count) /* match(es) found, break here */
2703 break;
2704 }
2705
Bram Moolenaar05159a02005-02-26 23:04:13 +00002706 if (patc != pat)
2707 vim_free(patc);
2708
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 *num_file = count;
2710 return (count == 0 ? FAIL : OK);
2711}
2712
2713#endif /* FEAT_CMDL_COMPL */
2714
2715#ifdef HAVE_BUFLIST_MATCH
2716/*
2717 * Check for a match on the file name for buffer "buf" with regprog "prog".
2718 */
2719 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002720buflist_match(
2721 regmatch_T *rmp,
2722 buf_T *buf,
2723 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724{
2725 char_u *match;
2726
2727 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002728 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002730 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
2732 return match;
2733}
2734
2735/*
2736 * Try matching the regexp in "prog" with file name "name".
2737 * Return "name" when there is a match, NULL when not.
2738 */
2739 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002740fname_match(
2741 regmatch_T *rmp,
2742 char_u *name,
2743 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744{
2745 char_u *match = NULL;
2746 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747
2748 if (name != NULL)
2749 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002750 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002751 rmp->rm_ic = p_fic || ignore_case;
2752 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 match = name;
2754 else
2755 {
2756 /* Replace $(HOME) with '~' and try matching again. */
2757 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002758 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 match = name;
2760 vim_free(p);
2761 }
2762 }
2763
2764 return match;
2765}
2766#endif
2767
2768/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002769 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 */
2771 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002772buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002774 char_u key[VIM_SIZEOF_INT * 2 + 1];
2775 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776
2777 if (nr == 0)
2778 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002779 sprintf((char *)key, "%x", nr);
2780 hi = hash_find(&buf_hashtab, key);
2781
2782 if (!HASHITEM_EMPTY(hi))
2783 return (buf_T *)(hi->hi_key
2784 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 return NULL;
2786}
2787
2788/*
2789 * Get name of file 'n' in the buffer list.
2790 * When the file has no name an empty string is returned.
2791 * home_replace() is used to shorten the file name (used for marks).
2792 * Returns a pointer to allocated memory, of NULL when failed.
2793 */
2794 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002795buflist_nr2name(
2796 int n,
2797 int fullname,
2798 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799{
2800 buf_T *buf;
2801
2802 buf = buflist_findnr(n);
2803 if (buf == NULL)
2804 return NULL;
2805 return home_replace_save(helptail ? buf : NULL,
2806 fullname ? buf->b_ffname : buf->b_fname);
2807}
2808
2809/*
2810 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2811 * When "copy_options" is TRUE save the local window option values.
2812 * When "lnum" is 0 only do the options.
2813 */
2814 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002815buflist_setfpos(
2816 buf_T *buf,
2817 win_T *win,
2818 linenr_T lnum,
2819 colnr_T col,
2820 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821{
2822 wininfo_T *wip;
2823
2824 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2825 if (wip->wi_win == win)
2826 break;
2827 if (wip == NULL)
2828 {
2829 /* allocate a new entry */
2830 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2831 if (wip == NULL)
2832 return;
2833 wip->wi_win = win;
2834 if (lnum == 0) /* set lnum even when it's 0 */
2835 lnum = 1;
2836 }
2837 else
2838 {
2839 /* remove the entry from the list */
2840 if (wip->wi_prev)
2841 wip->wi_prev->wi_next = wip->wi_next;
2842 else
2843 buf->b_wininfo = wip->wi_next;
2844 if (wip->wi_next)
2845 wip->wi_next->wi_prev = wip->wi_prev;
2846 if (copy_options && wip->wi_optset)
2847 {
2848 clear_winopt(&wip->wi_opt);
2849#ifdef FEAT_FOLDING
2850 deleteFoldRecurse(&wip->wi_folds);
2851#endif
2852 }
2853 }
2854 if (lnum != 0)
2855 {
2856 wip->wi_fpos.lnum = lnum;
2857 wip->wi_fpos.col = col;
2858 }
2859 if (copy_options)
2860 {
2861 /* Save the window-specific option values. */
2862 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2863#ifdef FEAT_FOLDING
2864 wip->wi_fold_manual = win->w_fold_manual;
2865 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2866#endif
2867 wip->wi_optset = TRUE;
2868 }
2869
2870 /* insert the entry in front of the list */
2871 wip->wi_next = buf->b_wininfo;
2872 buf->b_wininfo = wip;
2873 wip->wi_prev = NULL;
2874 if (wip->wi_next)
2875 wip->wi_next->wi_prev = wip;
2876
2877 return;
2878}
2879
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002880#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002881static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002882
2883/*
2884 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2885 * page. That's because a diff is local to a tab page.
2886 */
2887 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002888wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002889{
2890 win_T *wp;
2891
2892 if (wip->wi_opt.wo_diff)
2893 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002894 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002895 /* return FALSE when it's a window in the current tab page, thus
2896 * the buffer was in diff mode here */
2897 if (wip->wi_win == wp)
2898 return FALSE;
2899 return TRUE;
2900 }
2901 return FALSE;
2902}
2903#endif
2904
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905/*
2906 * Find info for the current window in buffer "buf".
2907 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002908 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2909 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 * Returns NULL when there isn't any info.
2911 */
2912 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002913find_wininfo(
2914 buf_T *buf,
2915 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916{
2917 wininfo_T *wip;
2918
2919 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002920 if (wip->wi_win == curwin
2921#ifdef FEAT_DIFF
2922 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2923#endif
2924 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002926
2927 /* If no wininfo for curwin, use the first in the list (that doesn't have
2928 * 'diff' set and is in another tab page). */
2929 if (wip == NULL)
2930 {
2931#ifdef FEAT_DIFF
2932 if (skip_diff_buffer)
2933 {
2934 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2935 if (!wininfo_other_tab_diff(wip))
2936 break;
2937 }
2938 else
2939#endif
2940 wip = buf->b_wininfo;
2941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 return wip;
2943}
2944
2945/*
2946 * Reset the local window options to the values last used in this window.
2947 * If the buffer wasn't used in this window before, use the values from
2948 * the most recently used window. If the values were never set, use the
2949 * global values for the window.
2950 */
2951 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002952get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953{
2954 wininfo_T *wip;
2955
2956 clear_winopt(&curwin->w_onebuf_opt);
2957#ifdef FEAT_FOLDING
2958 clearFolding(curwin);
2959#endif
2960
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002961 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 if (wip != NULL && wip->wi_optset)
2963 {
2964 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2965#ifdef FEAT_FOLDING
2966 curwin->w_fold_manual = wip->wi_fold_manual;
2967 curwin->w_foldinvalid = TRUE;
2968 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2969#endif
2970 }
2971 else
2972 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2973
2974#ifdef FEAT_FOLDING
2975 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2976 if (p_fdls >= 0)
2977 curwin->w_p_fdl = p_fdls;
2978#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002979#ifdef FEAT_SYN_HL
2980 check_colorcolumn(curwin);
2981#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982}
2983
2984/*
2985 * Find the position (lnum and col) for the buffer 'buf' for the current
2986 * window.
2987 * Returns a pointer to no_position if no position is found.
2988 */
2989 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002990buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002993 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002995 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (wip != NULL)
2997 return &(wip->wi_fpos);
2998 else
2999 return &no_position;
3000}
3001
3002/*
3003 * Find the lnum for the buffer 'buf' for the current window.
3004 */
3005 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003006buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
3008 return buflist_findfpos(buf)->lnum;
3009}
3010
3011#if defined(FEAT_LISTCMDS) || defined(PROTO)
3012/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003013 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003016buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 buf_T *buf;
3019 int len;
3020 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003021 int ro_char;
3022 int changed_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023
3024 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
3025 {
3026 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02003027 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3028 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3029 || (vim_strchr(eap->arg, '+')
3030 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3031 || (vim_strchr(eap->arg, 'a')
3032 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
3033 || (vim_strchr(eap->arg, 'h')
3034 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3035 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3036 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3037 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3038 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3039 || (vim_strchr(eap->arg, '#')
3040 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003043 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 else
3045 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003046 if (message_filtered(NameBuff))
3047 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003049 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3050 : (bufIsChanged(buf) ? '+' : ' ');
3051#ifdef FEAT_TERMINAL
3052 if (term_job_running(buf->b_term))
3053 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02003054 if (term_none_open(buf->b_term))
3055 ro_char = '?';
3056 else
3057 ro_char = 'R';
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003058 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3059 * closing, but it's not actually changed. */
3060 }
3061 else if (buf->b_term != NULL)
3062 ro_char = 'F';
3063 else
3064#endif
3065 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3066
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003067 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003068 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 buf->b_fnum,
3070 buf->b_p_bl ? ' ' : 'u',
3071 buf == curbuf ? '%' :
3072 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3073 buf->b_ml.ml_mfp == NULL ? ' ' :
3074 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003075 ro_char,
3076 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003077 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003078 if (len > IOSIZE - 20)
3079 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080
3081 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 i = 40 - vim_strsize(IObuff);
3083 do
3084 {
3085 IObuff[len++] = ' ';
3086 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003087 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3088 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003089 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 msg_outtrans(IObuff);
3091 out_flush(); /* output one line at a time */
3092 ui_breakcheck();
3093 }
3094}
3095#endif
3096
3097/*
3098 * Get file name and line number for file 'fnum'.
3099 * Used by DoOneCmd() for translating '%' and '#'.
3100 * Used by insert_reg() and cmdline_paste() for '#' register.
3101 * Return FAIL if not found, OK for success.
3102 */
3103 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003104buflist_name_nr(
3105 int fnum,
3106 char_u **fname,
3107 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108{
3109 buf_T *buf;
3110
3111 buf = buflist_findnr(fnum);
3112 if (buf == NULL || buf->b_fname == NULL)
3113 return FAIL;
3114
3115 *fname = buf->b_fname;
3116 *lnum = buflist_findlnum(buf);
3117
3118 return OK;
3119}
3120
3121/*
3122 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3123 * The file name with the full path is also remembered, for when :cd is used.
3124 * Returns FAIL for failure (file name already in use by other buffer)
3125 * OK otherwise.
3126 */
3127 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003128setfname(
3129 buf_T *buf,
3130 char_u *ffname,
3131 char_u *sfname,
3132 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133{
Bram Moolenaar81695252004-12-29 20:58:21 +00003134 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003136 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137#endif
3138
3139 if (ffname == NULL || *ffname == NUL)
3140 {
3141 /* Removing the name. */
3142 vim_free(buf->b_ffname);
3143 vim_free(buf->b_sfname);
3144 buf->b_ffname = NULL;
3145 buf->b_sfname = NULL;
3146#ifdef UNIX
3147 st.st_dev = (dev_T)-1;
3148#endif
3149 }
3150 else
3151 {
3152 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3153 if (ffname == NULL) /* out of memory */
3154 return FAIL;
3155
3156 /*
3157 * if the file name is already used in another buffer:
3158 * - if the buffer is loaded, fail
3159 * - if the buffer is not loaded, delete it from the list
3160 */
3161#ifdef UNIX
3162 if (mch_stat((char *)ffname, &st) < 0)
3163 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003164#endif
3165 if (!(buf->b_flags & BF_DUMMY))
3166#ifdef UNIX
3167 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003169 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170#endif
3171 if (obuf != NULL && obuf != buf)
3172 {
3173 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3174 {
3175 if (message)
3176 EMSG(_("E95: Buffer with this name already exists"));
3177 vim_free(ffname);
3178 return FAIL;
3179 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003180 /* delete from the list */
3181 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 }
3183 sfname = vim_strsave(sfname);
3184 if (ffname == NULL || sfname == NULL)
3185 {
3186 vim_free(sfname);
3187 vim_free(ffname);
3188 return FAIL;
3189 }
3190#ifdef USE_FNAME_CASE
3191# ifdef USE_LONG_FNAME
3192 if (USE_LONG_FNAME)
3193# endif
3194 fname_case(sfname, 0); /* set correct case for short file name */
3195#endif
3196 vim_free(buf->b_ffname);
3197 vim_free(buf->b_sfname);
3198 buf->b_ffname = ffname;
3199 buf->b_sfname = sfname;
3200 }
3201 buf->b_fname = buf->b_sfname;
3202#ifdef UNIX
3203 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003204 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 else
3206 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003207 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 buf->b_dev = st.st_dev;
3209 buf->b_ino = st.st_ino;
3210 }
3211#endif
3212
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214
3215 buf_name_changed(buf);
3216 return OK;
3217}
3218
3219/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003220 * Crude way of changing the name of a buffer. Use with care!
3221 * The name should be relative to the current directory.
3222 */
3223 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003224buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003225{
3226 buf_T *buf;
3227
3228 buf = buflist_findnr(fnum);
3229 if (buf != NULL)
3230 {
3231 vim_free(buf->b_sfname);
3232 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003233 buf->b_ffname = vim_strsave(name);
3234 buf->b_sfname = NULL;
3235 /* Allocate ffname and expand into full path. Also resolves .lnk
3236 * files on Win32. */
3237 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003238 buf->b_fname = buf->b_sfname;
3239 }
3240}
3241
3242/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 * Take care of what needs to be done when the name of buffer "buf" has
3244 * changed.
3245 */
3246 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003247buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248{
3249 /*
3250 * If the file name changed, also change the name of the swapfile
3251 */
3252 if (buf->b_ml.ml_mfp != NULL)
3253 ml_setname(buf);
3254
3255 if (curwin->w_buffer == buf)
3256 check_arg_idx(curwin); /* check file name for arg list */
3257#ifdef FEAT_TITLE
3258 maketitle(); /* set window title */
3259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 status_redraw_all(); /* status lines need to be redrawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 fmarks_check_names(buf); /* check named file marks */
3262 ml_timestamp(buf); /* reset timestamp */
3263}
3264
3265/*
3266 * set alternate file name for current window
3267 *
3268 * Used by do_one_cmd(), do_write() and do_ecmd().
3269 * Return the buffer.
3270 */
3271 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003272setaltfname(
3273 char_u *ffname,
3274 char_u *sfname,
3275 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276{
3277 buf_T *buf;
3278
3279 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3280 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003281 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 curwin->w_alt_fnum = buf->b_fnum;
3283 return buf;
3284}
3285
3286/*
3287 * Get alternate file name for current window.
3288 * Return NULL if there isn't any, and give error message if requested.
3289 */
3290 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003291getaltfname(
3292 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293{
3294 char_u *fname;
3295 linenr_T dummy;
3296
3297 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3298 {
3299 if (errmsg)
3300 EMSG(_(e_noalt));
3301 return NULL;
3302 }
3303 return fname;
3304}
3305
3306/*
3307 * Add a file name to the buflist and return its number.
3308 * Uses same flags as buflist_new(), except BLN_DUMMY.
3309 *
3310 * used by qf_init(), main() and doarglist()
3311 */
3312 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003313buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314{
3315 buf_T *buf;
3316
3317 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3318 if (buf != NULL)
3319 return buf->b_fnum;
3320 return 0;
3321}
3322
3323#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3324/*
3325 * Adjust slashes in file names. Called after 'shellslash' was set.
3326 */
3327 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003328buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329{
3330 buf_T *bp;
3331
Bram Moolenaar29323592016-07-24 22:04:11 +02003332 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 {
3334 if (bp->b_ffname != NULL)
3335 slash_adjust(bp->b_ffname);
3336 if (bp->b_sfname != NULL)
3337 slash_adjust(bp->b_sfname);
3338 }
3339}
3340#endif
3341
3342/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003343 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 * Also save the local window option values.
3345 */
3346 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003347buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003349 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350}
3351
3352/*
3353 * Return TRUE if 'ffname' is not the same file as current file.
3354 * Fname must have a full path (expanded by mch_FullName()).
3355 */
3356 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003357otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358{
3359 return otherfile_buf(curbuf, ffname
3360#ifdef UNIX
3361 , NULL
3362#endif
3363 );
3364}
3365
3366 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003367otherfile_buf(
3368 buf_T *buf,
3369 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003371 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003373 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374{
3375 /* no name is different */
3376 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3377 return TRUE;
3378 if (fnamecmp(ffname, buf->b_ffname) == 0)
3379 return FALSE;
3380#ifdef UNIX
3381 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003382 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383
Bram Moolenaar8767f522016-07-01 17:17:39 +02003384 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 if (stp == NULL)
3386 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003387 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 st.st_dev = (dev_T)-1;
3389 stp = &st;
3390 }
3391 /* Use dev/ino to check if the files are the same, even when the names
3392 * are different (possible with links). Still need to compare the
3393 * name above, for when the file doesn't exist yet.
3394 * Problem: The dev/ino changes when a file is deleted (and created
3395 * again) and remains the same when renamed/moved. We don't want to
3396 * mch_stat() each buffer each time, that would be too slow. Get the
3397 * dev/ino again when they appear to match, but not when they appear
3398 * to be different: Could skip a buffer when it's actually the same
3399 * file. */
3400 if (buf_same_ino(buf, stp))
3401 {
3402 buf_setino(buf);
3403 if (buf_same_ino(buf, stp))
3404 return FALSE;
3405 }
3406 }
3407#endif
3408 return TRUE;
3409}
3410
3411#if defined(UNIX) || defined(PROTO)
3412/*
3413 * Set inode and device number for a buffer.
3414 * Must always be called when b_fname is changed!.
3415 */
3416 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003417buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003419 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420
3421 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3422 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003423 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 buf->b_dev = st.st_dev;
3425 buf->b_ino = st.st_ino;
3426 }
3427 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003428 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429}
3430
3431/*
3432 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3433 */
3434 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003435buf_same_ino(
3436 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003437 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003439 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 && stp->st_dev == buf->b_dev
3441 && stp->st_ino == buf->b_ino);
3442}
3443#endif
3444
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003445/*
3446 * Print info about the current buffer.
3447 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003449fileinfo(
3450 int fullname, /* when non-zero print full path */
3451 int shorthelp,
3452 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453{
3454 char_u *name;
3455 int n;
3456 char_u *p;
3457 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003458 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459
3460 buffer = alloc(IOSIZE);
3461 if (buffer == NULL)
3462 return;
3463
3464 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3465 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003466 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 p = buffer + STRLEN(buffer);
3468 }
3469 else
3470 p = buffer;
3471
3472 *p++ = '"';
3473 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003474 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 else
3476 {
3477 if (!fullname && curbuf->b_fname != NULL)
3478 name = curbuf->b_fname;
3479 else
3480 name = curbuf->b_ffname;
3481 home_replace(shorthelp ? curbuf : NULL, name, p,
3482 (int)(IOSIZE - (p - buffer)), TRUE);
3483 }
3484
Bram Moolenaara800b422010-06-27 01:15:55 +02003485 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 curbufIsChanged() ? (shortmess(SHM_MOD)
3487 ? " [+]" : _(" [Modified]")) : " ",
3488 (curbuf->b_flags & BF_NOTEDITED)
3489#ifdef FEAT_QUICKFIX
3490 && !bt_dontwrite(curbuf)
3491#endif
3492 ? _("[Not edited]") : "",
3493 (curbuf->b_flags & BF_NEW)
3494#ifdef FEAT_QUICKFIX
3495 && !bt_dontwrite(curbuf)
3496#endif
3497 ? _("[New file]") : "",
3498 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003499 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 : _("[readonly]")) : "",
3501 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3502 || curbuf->b_p_ro) ?
3503 " " : "");
3504 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3505 * causes an overflow, thus for large numbers divide instead. */
3506 if (curwin->w_cursor.lnum > 1000000L)
3507 n = (int)(((long)curwin->w_cursor.lnum) /
3508 ((long)curbuf->b_ml.ml_line_count / 100L));
3509 else
3510 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3511 (long)curbuf->b_ml.ml_line_count);
3512 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3513 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003514 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 }
3516#ifdef FEAT_CMDL_INFO
3517 else if (p_ru)
3518 {
3519 /* Current line and column are already on the screen -- webb */
3520 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003521 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003523 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 (long)curbuf->b_ml.ml_line_count, n);
3525 }
3526#endif
3527 else
3528 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003529 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 _("line %ld of %ld --%d%%-- col "),
3531 (long)curwin->w_cursor.lnum,
3532 (long)curbuf->b_ml.ml_line_count,
3533 n);
3534 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003535 len = STRLEN(buffer);
3536 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3538 }
3539
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003540 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541
3542 if (dont_truncate)
3543 {
3544 /* Temporarily set msg_scroll to avoid the message being truncated.
3545 * First call msg_start() to get the message in the right place. */
3546 msg_start();
3547 n = msg_scroll;
3548 msg_scroll = TRUE;
3549 msg(buffer);
3550 msg_scroll = n;
3551 }
3552 else
3553 {
3554 p = msg_trunc_attr(buffer, FALSE, 0);
3555 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 /* Need to repeat the message after redrawing when:
3557 * - When restart_edit is set (otherwise there will be a delay
3558 * before redrawing).
3559 * - When the screen was scrolled but there is no wait-return
3560 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003561 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 }
3563
3564 vim_free(buffer);
3565}
3566
3567 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003568col_print(
3569 char_u *buf,
3570 size_t buflen,
3571 int col,
3572 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573{
3574 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003575 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003577 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578}
3579
3580#if defined(FEAT_TITLE) || defined(PROTO)
3581/*
3582 * put file name in title bar of window and in icon title
3583 */
3584
3585static char_u *lasttitle = NULL;
3586static char_u *lasticon = NULL;
3587
3588 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003589maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590{
3591 char_u *p;
3592 char_u *t_str = NULL;
3593 char_u *i_name;
3594 char_u *i_str = NULL;
3595 int maxlen = 0;
3596 int len;
3597 int mustset;
3598 char_u buf[IOSIZE];
3599 int off;
3600
3601 if (!redrawing())
3602 {
3603 /* Postpone updating the title when 'lazyredraw' is set. */
3604 need_maketitle = TRUE;
3605 return;
3606 }
3607
3608 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003609 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 return;
3611
3612 if (p_title)
3613 {
3614 if (p_titlelen > 0)
3615 {
3616 maxlen = p_titlelen * Columns / 100;
3617 if (maxlen < 10)
3618 maxlen = 10;
3619 }
3620
3621 t_str = buf;
3622 if (*p_titlestring != NUL)
3623 {
3624#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003625 if (stl_syntax & STL_IN_TITLE)
3626 {
3627 int use_sandbox = FALSE;
3628 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003629
3630# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003631 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003632# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003633 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003635 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003636 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003637 if (called_emsg)
3638 set_string_option_direct((char_u *)"titlestring", -1,
3639 (char_u *)"", OPT_FREE, SID_ERROR);
3640 called_emsg |= save_called_emsg;
3641 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 else
3643#endif
3644 t_str = p_titlestring;
3645 }
3646 else
3647 {
3648 /* format: "fname + (path) (1 of 2) - VIM" */
3649
Bram Moolenaar2c666692012-09-05 13:30:40 +02003650#define SPACE_FOR_FNAME (IOSIZE - 100)
3651#define SPACE_FOR_DIR (IOSIZE - 20)
3652#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003654 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003655#ifdef FEAT_TERMINAL
3656 else if (curbuf->b_term != NULL)
3657 {
3658 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3659 SPACE_FOR_FNAME);
3660 }
3661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 else
3663 {
3664 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003665 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 }
3668
Bram Moolenaar21554412017-07-24 21:44:43 +02003669#ifdef FEAT_TERMINAL
3670 if (curbuf->b_term == NULL)
3671#endif
3672 switch (bufIsChanged(curbuf)
3673 + (curbuf->b_p_ro * 2)
3674 + (!curbuf->b_p_ma * 4))
3675 {
3676 case 1: STRCAT(buf, " +"); break;
3677 case 2: STRCAT(buf, " ="); break;
3678 case 3: STRCAT(buf, " =+"); break;
3679 case 4:
3680 case 6: STRCAT(buf, " -"); break;
3681 case 5:
3682 case 7: STRCAT(buf, " -+"); break;
3683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684
Bram Moolenaar21554412017-07-24 21:44:43 +02003685 if (curbuf->b_fname != NULL
3686#ifdef FEAT_TERMINAL
3687 && curbuf->b_term == NULL
3688#endif
3689 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 {
3691 /* Get path of file, replace home dir with ~ */
3692 off = (int)STRLEN(buf);
3693 buf[off++] = ' ';
3694 buf[off++] = '(';
3695 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003696 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697#ifdef BACKSLASH_IN_FILENAME
3698 /* avoid "c:/name" to be reduced to "c" */
3699 if (isalpha(buf[off]) && buf[off + 1] == ':')
3700 off += 2;
3701#endif
3702 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003703 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003705 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003706 /* must be a help buffer */
3707 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003708 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003709 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003712
Bram Moolenaar2c666692012-09-05 13:30:40 +02003713 /* Translate unprintable chars and concatenate. Keep some
3714 * room for the server name. When there is no room (very long
3715 * file name) use (...). */
3716 if (off < SPACE_FOR_DIR)
3717 {
3718 p = transstr(buf + off);
3719 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3720 vim_free(p);
3721 }
3722 else
3723 {
3724 vim_strncpy(buf + off, (char_u *)"...",
3725 (size_t)(SPACE_FOR_ARGNR - off));
3726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 STRCAT(buf, ")");
3728 }
3729
Bram Moolenaar2c666692012-09-05 13:30:40 +02003730 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731
3732#if defined(FEAT_CLIENTSERVER)
3733 if (serverName != NULL)
3734 {
3735 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003736 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 }
3738 else
3739#endif
3740 STRCAT(buf, " - VIM");
3741
3742 if (maxlen > 0)
3743 {
3744 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003745 if (vim_strsize(buf) > maxlen)
3746 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 }
3748 }
3749 }
3750 mustset = ti_change(t_str, &lasttitle);
3751
3752 if (p_icon)
3753 {
3754 i_str = buf;
3755 if (*p_iconstring != NUL)
3756 {
3757#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003758 if (stl_syntax & STL_IN_ICON)
3759 {
3760 int use_sandbox = FALSE;
3761 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003762
3763# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003764 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003765# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003766 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003768 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003769 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003770 if (called_emsg)
3771 set_string_option_direct((char_u *)"iconstring", -1,
3772 (char_u *)"", OPT_FREE, SID_ERROR);
3773 called_emsg |= save_called_emsg;
3774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 else
3776#endif
3777 i_str = p_iconstring;
3778 }
3779 else
3780 {
3781 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003782 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 else /* use file name only in icon */
3784 i_name = gettail(curbuf->b_ffname);
3785 *i_str = NUL;
3786 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003787 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 if (len > 100)
3789 {
3790 len -= 100;
3791#ifdef FEAT_MBYTE
3792 if (has_mbyte)
3793 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3794#endif
3795 i_name += len;
3796 }
3797 STRCPY(i_str, i_name);
3798 trans_characters(i_str, IOSIZE);
3799 }
3800 }
3801
3802 mustset |= ti_change(i_str, &lasticon);
3803
3804 if (mustset)
3805 resettitle();
3806}
3807
3808/*
3809 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3810 * from "str" if it does.
3811 * Return TRUE when "*last" changed.
3812 */
3813 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003814ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815{
3816 if ((str == NULL) != (*last == NULL)
3817 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3818 {
3819 vim_free(*last);
3820 if (str == NULL)
3821 *last = NULL;
3822 else
3823 *last = vim_strsave(str);
3824 return TRUE;
3825 }
3826 return FALSE;
3827}
3828
3829/*
3830 * Put current window title back (used after calling a shell)
3831 */
3832 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003833resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834{
3835 mch_settitle(lasttitle, lasticon);
3836}
Bram Moolenaarea408852005-06-25 22:49:46 +00003837
3838# if defined(EXITFREE) || defined(PROTO)
3839 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003840free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003841{
3842 vim_free(lasttitle);
3843 vim_free(lasticon);
3844}
3845# endif
3846
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847#endif /* FEAT_TITLE */
3848
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003849#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003851 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 * Return length of string in screen cells.
3853 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003854 * Normally works for window "wp", except when working for 'tabline' then it
3855 * is "curwin".
3856 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 * Items are drawn interspersed with the text that surrounds it
3858 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3859 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3860 *
3861 * If maxwidth is not zero, the string will be filled at any middle marker
3862 * or truncated if too long, fillchar is used for all whitespace.
3863 */
3864 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003865build_stl_str_hl(
3866 win_T *wp,
3867 char_u *out, /* buffer to write into != NameBuff */
3868 size_t outlen, /* length of out[] */
3869 char_u *fmt,
3870 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3871 int fillchar,
3872 int maxwidth,
3873 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3874 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875{
3876 char_u *p;
3877 char_u *s;
3878 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003879 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880#ifdef FEAT_EVAL
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003881 win_T *save_curwin;
3882 buf_T *save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883#endif
3884 int empty_line;
3885 colnr_T virtcol;
3886 long l;
3887 long n;
3888 int prevchar_isflag;
3889 int prevchar_isitem;
3890 int itemisflag;
3891 int fillable;
3892 char_u *str;
3893 long num;
3894 int width;
3895 int itemcnt;
3896 int curitem;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02003897 int group_end_userhl;
3898 int group_start_userhl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 int groupitem[STL_MAX_ITEM];
3900 int groupdepth;
3901 struct stl_item
3902 {
3903 char_u *start;
3904 int minwid;
3905 int maxwid;
3906 enum
3907 {
3908 Normal,
3909 Empty,
3910 Group,
3911 Middle,
3912 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003913 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 Trunc
3915 } type;
3916 } item[STL_MAX_ITEM];
3917 int minwid;
3918 int maxwid;
3919 int zeropad;
3920 char_u base;
3921 char_u opt;
3922#define TMPLEN 70
3923 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003924 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003925 struct stl_hlrec *sp;
Bram Moolenaarba2929b2017-09-08 13:59:21 +02003926 int save_must_redraw = must_redraw;
3927 int save_redr_type = curwin->w_redr_type;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003928
3929#ifdef FEAT_EVAL
3930 /*
3931 * When the format starts with "%!" then evaluate it as an expression and
3932 * use the result as the actual format string.
3933 */
3934 if (fmt[0] == '%' && fmt[1] == '!')
3935 {
3936 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3937 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003938 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003939 }
3940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941
3942 if (fillchar == 0)
3943 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003944#ifdef FEAT_MBYTE
3945 /* Can't handle a multi-byte fill character yet. */
3946 else if (mb_char2len(fillchar) > 1)
3947 fillchar = '-';
3948#endif
3949
Bram Moolenaar567199b2013-04-24 16:52:36 +02003950 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3951 * p will become invalid when getting another buffer line. */
3952 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3953 empty_line = (*p == NUL);
3954
3955 /* Get the byte value now, in case we need it below. This is more
3956 * efficient than making a copy of the line. */
3957 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3958 byteval = 0;
3959 else
3960#ifdef FEAT_MBYTE
3961 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3962#else
3963 byteval = p[wp->w_cursor.col];
3964#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965
3966 groupdepth = 0;
3967 p = out;
3968 curitem = 0;
3969 prevchar_isflag = TRUE;
3970 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003971 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003973 if (curitem == STL_MAX_ITEM)
3974 {
3975 /* There are too many items. Add the error code to the statusline
3976 * to give the user a hint about what went wrong. */
3977 if (p + 6 < out + outlen)
3978 {
3979 mch_memmove(p, " E541", (size_t)5);
3980 p += 5;
3981 }
3982 break;
3983 }
3984
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 if (*s != NUL && *s != '%')
3986 prevchar_isflag = prevchar_isitem = FALSE;
3987
3988 /*
3989 * Handle up to the next '%' or the end.
3990 */
3991 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3992 *p++ = *s++;
3993 if (*s == NUL || p + 1 >= out + outlen)
3994 break;
3995
3996 /*
3997 * Handle one '%' item.
3998 */
3999 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004000 if (*s == NUL) /* ignore trailing % */
4001 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 if (*s == '%')
4003 {
4004 if (p + 1 >= out + outlen)
4005 break;
4006 *p++ = *s++;
4007 prevchar_isflag = prevchar_isitem = FALSE;
4008 continue;
4009 }
4010 if (*s == STL_MIDDLEMARK)
4011 {
4012 s++;
4013 if (groupdepth > 0)
4014 continue;
4015 item[curitem].type = Middle;
4016 item[curitem++].start = p;
4017 continue;
4018 }
4019 if (*s == STL_TRUNCMARK)
4020 {
4021 s++;
4022 item[curitem].type = Trunc;
4023 item[curitem++].start = p;
4024 continue;
4025 }
4026 if (*s == ')')
4027 {
4028 s++;
4029 if (groupdepth < 1)
4030 continue;
4031 groupdepth--;
4032
4033 t = item[groupitem[groupdepth]].start;
4034 *p = NUL;
4035 l = vim_strsize(t);
4036 if (curitem > groupitem[groupdepth] + 1
4037 && item[groupitem[groupdepth]].minwid == 0)
4038 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004039 /* remove group if all items are empty and highlight group
4040 * doesn't change */
4041 group_start_userhl = group_end_userhl = 0;
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004042 for (n = groupitem[groupdepth] - 1; n >= 0; n--)
4043 {
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004044 if (item[n].type == Highlight)
Bram Moolenaar235dddf2017-10-26 18:21:24 +02004045 {
4046 group_start_userhl = group_end_userhl = item[n].minwid;
4047 break;
4048 }
4049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004051 {
4052 if (item[n].type == Normal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 break;
Bram Moolenaar6b89dbb2017-10-22 14:22:16 +02004054 if (item[n].type == Highlight)
4055 group_end_userhl = item[n].minwid;
4056 }
4057 if (n == curitem && group_start_userhl == group_end_userhl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 {
4059 p = t;
4060 l = 0;
4061 }
4062 }
4063 if (l > item[groupitem[groupdepth]].maxwid)
4064 {
4065 /* truncate, remove n bytes of text at the start */
4066#ifdef FEAT_MBYTE
4067 if (has_mbyte)
4068 {
4069 /* Find the first character that should be included. */
4070 n = 0;
4071 while (l >= item[groupitem[groupdepth]].maxwid)
4072 {
4073 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004074 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 }
4076 }
4077 else
4078#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004079 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080
4081 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004082 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 p = p - n + 1;
4084#ifdef FEAT_MBYTE
4085 /* Fill up space left over by half a double-wide char. */
4086 while (++l < item[groupitem[groupdepth]].minwid)
4087 *p++ = fillchar;
4088#endif
4089
4090 /* correct the start of the items for the truncation */
4091 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4092 {
4093 item[l].start -= n;
4094 if (item[l].start < t)
4095 item[l].start = t;
4096 }
4097 }
4098 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4099 {
4100 /* fill */
4101 n = item[groupitem[groupdepth]].minwid;
4102 if (n < 0)
4103 {
4104 /* fill by appending characters */
4105 n = 0 - n;
4106 while (l++ < n && p + 1 < out + outlen)
4107 *p++ = fillchar;
4108 }
4109 else
4110 {
4111 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004112 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 l = n - l;
4114 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004115 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 p += l;
4117 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4118 item[n].start += l;
4119 for ( ; l > 0; l--)
4120 *t++ = fillchar;
4121 }
4122 }
4123 continue;
4124 }
4125 minwid = 0;
4126 maxwid = 9999;
4127 zeropad = FALSE;
4128 l = 1;
4129 if (*s == '0')
4130 {
4131 s++;
4132 zeropad = TRUE;
4133 }
4134 if (*s == '-')
4135 {
4136 s++;
4137 l = -1;
4138 }
4139 if (VIM_ISDIGIT(*s))
4140 {
4141 minwid = (int)getdigits(&s);
4142 if (minwid < 0) /* overflow */
4143 minwid = 0;
4144 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004145 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 {
4147 item[curitem].type = Highlight;
4148 item[curitem].start = p;
4149 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4150 s++;
4151 curitem++;
4152 continue;
4153 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004154 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4155 {
4156 if (*s == STL_TABCLOSENR)
4157 {
4158 if (minwid == 0)
4159 {
4160 /* %X ends the close label, go back to the previously
4161 * define tab label nr. */
4162 for (n = curitem - 1; n >= 0; --n)
4163 if (item[n].type == TabPage && item[n].minwid >= 0)
4164 {
4165 minwid = item[n].minwid;
4166 break;
4167 }
4168 }
4169 else
4170 /* close nrs are stored as negative values */
4171 minwid = - minwid;
4172 }
4173 item[curitem].type = TabPage;
4174 item[curitem].start = p;
4175 item[curitem].minwid = minwid;
4176 s++;
4177 curitem++;
4178 continue;
4179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 if (*s == '.')
4181 {
4182 s++;
4183 if (VIM_ISDIGIT(*s))
4184 {
4185 maxwid = (int)getdigits(&s);
4186 if (maxwid <= 0) /* overflow */
4187 maxwid = 50;
4188 }
4189 }
4190 minwid = (minwid > 50 ? 50 : minwid) * l;
4191 if (*s == '(')
4192 {
4193 groupitem[groupdepth++] = curitem;
4194 item[curitem].type = Group;
4195 item[curitem].start = p;
4196 item[curitem].minwid = minwid;
4197 item[curitem].maxwid = maxwid;
4198 s++;
4199 curitem++;
4200 continue;
4201 }
4202 if (vim_strchr(STL_ALL, *s) == NULL)
4203 {
4204 s++;
4205 continue;
4206 }
4207 opt = *s++;
4208
4209 /* OK - now for the real work */
4210 base = 'D';
4211 itemisflag = FALSE;
4212 fillable = TRUE;
4213 num = -1;
4214 str = NULL;
4215 switch (opt)
4216 {
4217 case STL_FILEPATH:
4218 case STL_FULLPATH:
4219 case STL_FILENAME:
4220 fillable = FALSE; /* don't change ' ' to fillchar */
4221 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004222 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 else
4224 {
4225 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004226 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4228 }
4229 trans_characters(NameBuff, MAXPATHL);
4230 if (opt != STL_FILENAME)
4231 str = NameBuff;
4232 else
4233 str = gettail(NameBuff);
4234 break;
4235
4236 case STL_VIM_EXPR: /* '{' */
4237 itemisflag = TRUE;
4238 t = p;
4239 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4240 *p++ = *s++;
4241 if (*s != '}') /* missing '}' or out of space */
4242 break;
4243 s++;
4244 *p = 0;
4245 p = t;
4246
4247#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004248 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4250
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004251 save_curbuf = curbuf;
4252 save_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 curwin = wp;
4254 curbuf = wp->w_buffer;
4255
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004256 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004258 curwin = save_curwin;
4259 curbuf = save_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004260 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261
4262 if (str != NULL && *str != 0)
4263 {
4264 if (*skipdigits(str) == NUL)
4265 {
4266 num = atoi((char *)str);
4267 vim_free(str);
4268 str = NULL;
4269 itemisflag = FALSE;
4270 }
4271 }
4272#endif
4273 break;
4274
4275 case STL_LINE:
4276 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4277 ? 0L : (long)(wp->w_cursor.lnum);
4278 break;
4279
4280 case STL_NUMLINES:
4281 num = wp->w_buffer->b_ml.ml_line_count;
4282 break;
4283
4284 case STL_COLUMN:
4285 num = !(State & INSERT) && empty_line
4286 ? 0 : (int)wp->w_cursor.col + 1;
4287 break;
4288
4289 case STL_VIRTCOL:
4290 case STL_VIRTCOL_ALT:
4291 /* In list mode virtcol needs to be recomputed */
4292 virtcol = wp->w_virtcol;
4293 if (wp->w_p_list && lcs_tab1 == NUL)
4294 {
4295 wp->w_p_list = FALSE;
4296 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4297 wp->w_p_list = TRUE;
4298 }
4299 ++virtcol;
4300 /* Don't display %V if it's the same as %c. */
4301 if (opt == STL_VIRTCOL_ALT
4302 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4303 ? 0 : (int)wp->w_cursor.col + 1)))
4304 break;
4305 num = (long)virtcol;
4306 break;
4307
4308 case STL_PERCENTAGE:
4309 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4310 (long)wp->w_buffer->b_ml.ml_line_count);
4311 break;
4312
4313 case STL_ALTPERCENT:
4314 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004315 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 break;
4317
4318 case STL_ARGLISTSTAT:
4319 fillable = FALSE;
4320 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004321 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 str = tmp;
4323 break;
4324
4325 case STL_KEYMAP:
4326 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004327 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 str = tmp;
4329 break;
4330 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004331#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004332 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333#else
4334 num = 0;
4335#endif
4336 break;
4337
4338 case STL_BUFNO:
4339 num = wp->w_buffer->b_fnum;
4340 break;
4341
4342 case STL_OFFSET_X:
4343 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004344 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 case STL_OFFSET:
4346#ifdef FEAT_BYTEOFF
4347 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4348 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4349 0L : l + 1 + (!(State & INSERT) && empty_line ?
4350 0 : (int)wp->w_cursor.col);
4351#endif
4352 break;
4353
4354 case STL_BYTEVAL_X:
4355 base = 'X';
Bram Moolenaar2f40d122017-10-24 21:49:36 +02004356 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004358 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 if (num == NL)
4360 num = 0;
4361 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4362 num = NL;
4363 break;
4364
4365 case STL_ROFLAG:
4366 case STL_ROFLAG_ALT:
4367 itemisflag = TRUE;
4368 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004369 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 break;
4371
4372 case STL_HELPFLAG:
4373 case STL_HELPFLAG_ALT:
4374 itemisflag = TRUE;
4375 if (wp->w_buffer->b_help)
4376 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004377 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 break;
4379
4380#ifdef FEAT_AUTOCMD
4381 case STL_FILETYPE:
4382 if (*wp->w_buffer->b_p_ft != NUL
4383 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4384 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004385 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4386 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 str = tmp;
4388 }
4389 break;
4390
4391 case STL_FILETYPE_ALT:
4392 itemisflag = TRUE;
4393 if (*wp->w_buffer->b_p_ft != NUL
4394 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4395 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004396 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4397 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 for (t = tmp; *t != 0; t++)
4399 *t = TOUPPER_LOC(*t);
4400 str = tmp;
4401 }
4402 break;
4403#endif
4404
Bram Moolenaar4033c552017-09-16 20:54:51 +02004405#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 case STL_PREVIEWFLAG:
4407 case STL_PREVIEWFLAG_ALT:
4408 itemisflag = TRUE;
4409 if (wp->w_p_pvw)
4410 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4411 : _("[Preview]"));
4412 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004413
4414 case STL_QUICKFIX:
4415 if (bt_quickfix(wp->w_buffer))
4416 str = (char_u *)(wp->w_llist_ref
4417 ? _(msg_loclist)
4418 : _(msg_qflist));
4419 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420#endif
4421
4422 case STL_MODIFIED:
4423 case STL_MODIFIED_ALT:
4424 itemisflag = TRUE;
4425 switch ((opt == STL_MODIFIED_ALT)
4426 + bufIsChanged(wp->w_buffer) * 2
4427 + (!wp->w_buffer->b_p_ma) * 4)
4428 {
4429 case 2: str = (char_u *)"[+]"; break;
4430 case 3: str = (char_u *)",+"; break;
4431 case 4: str = (char_u *)"[-]"; break;
4432 case 5: str = (char_u *)",-"; break;
4433 case 6: str = (char_u *)"[+-]"; break;
4434 case 7: str = (char_u *)",+-"; break;
4435 }
4436 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004437
4438 case STL_HIGHLIGHT:
4439 t = s;
4440 while (*s != '#' && *s != NUL)
4441 ++s;
4442 if (*s == '#')
4443 {
4444 item[curitem].type = Highlight;
4445 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004446 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004447 curitem++;
4448 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004449 if (*s != NUL)
4450 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004451 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 }
4453
4454 item[curitem].start = p;
4455 item[curitem].type = Normal;
4456 if (str != NULL && *str)
4457 {
4458 t = str;
4459 if (itemisflag)
4460 {
4461 if ((t[0] && t[1])
4462 && ((!prevchar_isitem && *t == ',')
4463 || (prevchar_isflag && *t == ' ')))
4464 t++;
4465 prevchar_isflag = TRUE;
4466 }
4467 l = vim_strsize(t);
4468 if (l > 0)
4469 prevchar_isitem = TRUE;
4470 if (l > maxwid)
4471 {
4472 while (l >= maxwid)
4473#ifdef FEAT_MBYTE
4474 if (has_mbyte)
4475 {
4476 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004477 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 }
4479 else
4480#endif
4481 l -= byte2cells(*t++);
4482 if (p + 1 >= out + outlen)
4483 break;
4484 *p++ = '<';
4485 }
4486 if (minwid > 0)
4487 {
4488 for (; l < minwid && p + 1 < out + outlen; l++)
4489 {
4490 /* Don't put a "-" in front of a digit. */
4491 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4492 *p++ = ' ';
4493 else
4494 *p++ = fillchar;
4495 }
4496 minwid = 0;
4497 }
4498 else
4499 minwid *= -1;
4500 while (*t && p + 1 < out + outlen)
4501 {
4502 *p++ = *t++;
4503 /* Change a space by fillchar, unless fillchar is '-' and a
4504 * digit follows. */
4505 if (fillable && p[-1] == ' '
4506 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4507 p[-1] = fillchar;
4508 }
4509 for (; l < minwid && p + 1 < out + outlen; l++)
4510 *p++ = fillchar;
4511 }
4512 else if (num >= 0)
4513 {
4514 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4515 char_u nstr[20];
4516
4517 if (p + 20 >= out + outlen)
4518 break; /* not sufficient space */
4519 prevchar_isitem = TRUE;
4520 t = nstr;
4521 if (opt == STL_VIRTCOL_ALT)
4522 {
4523 *t++ = '-';
4524 minwid--;
4525 }
4526 *t++ = '%';
4527 if (zeropad)
4528 *t++ = '0';
4529 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004530 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 *t = 0;
4532
4533 for (n = num, l = 1; n >= nbase; n /= nbase)
4534 l++;
4535 if (opt == STL_VIRTCOL_ALT)
4536 l++;
4537 if (l > maxwid)
4538 {
4539 l += 2;
4540 n = l - maxwid;
4541 while (l-- > maxwid)
4542 num /= nbase;
4543 *t++ = '>';
4544 *t++ = '%';
4545 *t = t[-3];
4546 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004547 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4548 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 }
4550 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004551 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4552 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 p += STRLEN(p);
4554 }
4555 else
4556 item[curitem].type = Empty;
4557
4558 if (opt == STL_VIM_EXPR)
4559 vim_free(str);
4560
4561 if (num >= 0 || (!itemisflag && str && *str))
4562 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4563 curitem++;
4564 }
4565 *p = NUL;
4566 itemcnt = curitem;
4567
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004568#ifdef FEAT_EVAL
4569 if (usefmt != fmt)
4570 vim_free(usefmt);
4571#endif
4572
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 width = vim_strsize(out);
4574 if (maxwidth > 0 && width > maxwidth)
4575 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004576 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 l = 0;
4578 if (itemcnt == 0)
4579 s = out;
4580 else
4581 {
4582 for ( ; l < itemcnt; l++)
4583 if (item[l].type == Trunc)
4584 {
4585 /* Truncate at %< item. */
4586 s = item[l].start;
4587 break;
4588 }
4589 if (l == itemcnt)
4590 {
4591 /* No %< item, truncate first item. */
4592 s = item[0].start;
4593 l = 0;
4594 }
4595 }
4596
4597 if (width - vim_strsize(s) >= maxwidth)
4598 {
4599 /* Truncation mark is beyond max length */
4600#ifdef FEAT_MBYTE
4601 if (has_mbyte)
4602 {
4603 s = out;
4604 width = 0;
4605 for (;;)
4606 {
4607 width += ptr2cells(s);
4608 if (width >= maxwidth)
4609 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004610 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 }
4612 /* Fill up for half a double-wide character. */
4613 while (++width < maxwidth)
4614 *s++ = fillchar;
4615 }
4616 else
4617#endif
4618 s = out + maxwidth - 1;
4619 for (l = 0; l < itemcnt; l++)
4620 if (item[l].start > s)
4621 break;
4622 itemcnt = l;
4623 *s++ = '>';
4624 *s = 0;
4625 }
4626 else
4627 {
4628#ifdef FEAT_MBYTE
4629 if (has_mbyte)
4630 {
4631 n = 0;
4632 while (width >= maxwidth)
4633 {
4634 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004635 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 }
4637 }
4638 else
4639#endif
4640 n = width - maxwidth + 1;
4641 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004642 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 *s = '<';
4644
4645 /* Fill up for half a double-wide character. */
4646 while (++width < maxwidth)
4647 {
4648 s = s + STRLEN(s);
4649 *s++ = fillchar;
4650 *s = NUL;
4651 }
4652
4653 --n; /* count the '<' */
4654 for (; l < itemcnt; l++)
4655 {
4656 if (item[l].start - n >= s)
4657 item[l].start -= n;
4658 else
4659 item[l].start = s;
4660 }
4661 }
4662 width = maxwidth;
4663 }
4664 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4665 {
4666 /* Apply STL_MIDDLE if any */
4667 for (l = 0; l < itemcnt; l++)
4668 if (item[l].type == Middle)
4669 break;
4670 if (l < itemcnt)
4671 {
4672 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004673 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 for (s = item[l].start; s < p; s++)
4675 *s = fillchar;
4676 for (l++; l < itemcnt; l++)
4677 item[l].start += maxwidth - width;
4678 width = maxwidth;
4679 }
4680 }
4681
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004682 /* Store the info about highlighting. */
4683 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004685 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 for (l = 0; l < itemcnt; l++)
4687 {
4688 if (item[l].type == Highlight)
4689 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004690 sp->start = item[l].start;
4691 sp->userhl = item[l].minwid;
4692 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 }
4694 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004695 sp->start = NULL;
4696 sp->userhl = 0;
4697 }
4698
4699 /* Store the info about tab pages labels. */
4700 if (tabtab != NULL)
4701 {
4702 sp = tabtab;
4703 for (l = 0; l < itemcnt; l++)
4704 {
4705 if (item[l].type == TabPage)
4706 {
4707 sp->start = item[l].start;
4708 sp->userhl = item[l].minwid;
4709 sp++;
4710 }
4711 }
4712 sp->start = NULL;
4713 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 }
4715
Bram Moolenaar65ed1362017-09-30 16:00:14 +02004716 /* When inside update_screen we do not want redrawing a stausline, ruler,
4717 * title, etc. to trigger another redraw, it may cause an endless loop. */
4718 if (updating_screen)
4719 {
4720 must_redraw = save_must_redraw;
4721 curwin->w_redr_type = save_redr_type;
4722 }
Bram Moolenaarba2929b2017-09-08 13:59:21 +02004723
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 return width;
4725}
4726#endif /* FEAT_STL_OPT */
4727
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004728#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4729 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004731 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4732 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 */
4734 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004735get_rel_pos(
4736 win_T *wp,
4737 char_u *buf,
4738 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739{
4740 long above; /* number of lines above window */
4741 long below; /* number of lines below window */
4742
Bram Moolenaar0027c212015-01-07 13:31:52 +01004743 if (buflen < 3) /* need at least 3 chars for writing */
4744 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 above = wp->w_topline - 1;
4746#ifdef FEAT_DIFF
4747 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004748 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4749 above = 0; /* All buffer lines are displayed and there is an
4750 * indication of filler lines, that can be considered
4751 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752#endif
4753 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4754 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004755 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4756 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004758 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004760 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 ? (int)(above / ((above + below) / 100L))
4762 : (int)(above * 100L / (above + below)));
4763}
4764#endif
4765
4766/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004767 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 * Return TRUE if it was appended.
4769 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004770 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004771append_arg_number(
4772 win_T *wp,
4773 char_u *buf,
4774 int buflen,
4775 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776{
4777 char_u *p;
4778
4779 if (ARGCOUNT <= 1) /* nothing to do */
4780 return FALSE;
4781
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004782 p = buf + STRLEN(buf); /* go to the end of the buffer */
4783 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 return FALSE;
4785 *p++ = ' ';
4786 *p++ = '(';
4787 if (add_file)
4788 {
4789 STRCPY(p, "file ");
4790 p += 5;
4791 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004792 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4793 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4795 return TRUE;
4796}
4797
4798/*
4799 * If fname is not a full path, make it a full path.
4800 * Returns pointer to allocated memory (NULL for failure).
4801 */
4802 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004803fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804{
4805 /*
4806 * Force expanding the path always for Unix, because symbolic links may
4807 * mess up the full path name, even though it starts with a '/'.
4808 * Also expand when there is ".." in the file name, try to remove it,
4809 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004810 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 * For MS-Windows also expand names like "longna~1" to "longname".
4812 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004813#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 return FullName_save(fname, TRUE);
4815#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004816 if (!vim_isAbsName(fname)
4817 || strstr((char *)fname, "..") != NULL
4818 || strstr((char *)fname, "//") != NULL
4819# ifdef BACKSLASH_IN_FILENAME
4820 || strstr((char *)fname, "\\\\") != NULL
4821# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004822# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 )
4826 return FullName_save(fname, FALSE);
4827
4828 fname = vim_strsave(fname);
4829
Bram Moolenaar9b942202007-10-03 12:31:33 +00004830# ifdef USE_FNAME_CASE
4831# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 {
4835 if (fname != NULL)
4836 fname_case(fname, 0); /* set correct case for file name */
4837 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004838# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839
4840 return fname;
4841#endif
4842}
4843
4844/*
4845 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4846 * "ffname" becomes a pointer to allocated memory (or NULL).
4847 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004849fname_expand(
4850 buf_T *buf UNUSED,
4851 char_u **ffname,
4852 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853{
4854 if (*ffname == NULL) /* if no file name given, nothing to do */
4855 return;
4856 if (*sfname == NULL) /* if no short file name given, use ffname */
4857 *sfname = *ffname;
4858 *ffname = fix_fname(*ffname); /* expand to full path */
4859
4860#ifdef FEAT_SHORTCUT
4861 if (!buf->b_p_bin)
4862 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004863 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864
4865 /* If the file name is a shortcut file, use the file it links to. */
4866 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004867 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
4869 vim_free(*ffname);
4870 *ffname = rfname;
4871 *sfname = rfname;
4872 }
4873 }
4874#endif
4875}
4876
4877/*
4878 * Get the file name for an argument list entry.
4879 */
4880 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004881alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882{
4883 buf_T *bp;
4884
4885 /* Use the name from the associated buffer if it exists. */
4886 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004887 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 return aep->ae_fname;
4889 return bp->b_fname;
4890}
4891
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892/*
4893 * do_arg_all(): Open up to 'count' windows, one for each argument.
4894 */
4895 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004896do_arg_all(
4897 int count,
4898 int forceit, /* hide buffers in current windows */
4899 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900{
4901 int i;
4902 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004903 char_u *opened; /* Array of weight for which args are open:
4904 * 0: not opened
4905 * 1: opened in other tab
4906 * 2: opened in curtab
4907 * 3: opened in curtab and curwin
4908 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004909 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 int use_firstwin = FALSE; /* use first window for arglist */
4911 int split_ret = OK;
4912 int p_ea_save;
4913 alist_T *alist; /* argument list to be used */
4914 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004915 tabpage_T *tpnext;
4916 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004917 win_T *old_curwin, *last_curwin;
4918 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004919 win_T *new_curwin = NULL;
4920 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921
4922 if (ARGCOUNT <= 0)
4923 {
4924 /* Don't give an error message. We don't want it when the ":all"
4925 * command is in the .vimrc. */
4926 return;
4927 }
4928 setpcmark();
4929
4930 opened_len = ARGCOUNT;
4931 opened = alloc_clear((unsigned)opened_len);
4932 if (opened == NULL)
4933 return;
4934
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004935 /* Autocommands may do anything to the argument list. Make sure it's not
4936 * freed while we are working here by "locking" it. We still have to
4937 * watch out for its size to be changed. */
4938 alist = curwin->w_alist;
4939 ++alist->al_refcount;
4940
4941 old_curwin = curwin;
4942 old_curtab = curtab;
4943
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004944# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004946# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947
4948 /*
4949 * Try closing all windows that are not in the argument list.
4950 * Also close windows that are not full width;
4951 * When 'hidden' or "forceit" set the buffer becomes hidden.
4952 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004953 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004955 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004956 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004957 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004959 tpnext = curtab->tp_next;
4960 for (wp = firstwin; wp != NULL; wp = wpnext)
4961 {
4962 wpnext = wp->w_next;
4963 buf = wp->w_buffer;
4964 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004965 || (!keep_tabs && (buf->b_nwindows > 1
4966 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004967 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004968 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004970 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004971 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004973 if (i < alist->al_ga.ga_len
4974 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4975 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4976 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004978 int weight = 1;
4979
4980 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004981 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004982 ++weight;
4983 if (old_curwin == wp)
4984 ++weight;
4985 }
4986
4987 if (weight > (int)opened[i])
4988 {
4989 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004990 if (i == 0)
4991 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004992 if (new_curwin != NULL)
4993 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004994 new_curwin = wp;
4995 new_curtab = curtab;
4996 }
4997 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004998 else if (keep_tabs)
4999 i = opened_len;
5000
5001 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005002 {
5003 /* Use the current argument list for all windows
5004 * containing a file from it. */
5005 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005006 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005007 ++wp->w_alist->al_refcount;
5008 }
5009 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 }
5012 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005013 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005015 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005017 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005018 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005020 /* If the buffer was changed, and we would like to hide it,
5021 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005022 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005023 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005025#ifdef FEAT_AUTOCMD
5026 bufref_T bufref;
5027
5028 set_bufref(&bufref, buf);
5029#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005030 (void)autowrite(buf, FALSE);
5031#ifdef FEAT_AUTOCMD
5032 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005033 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005034 {
5035 wpnext = firstwin; /* start all over... */
5036 continue;
5037 }
5038#endif
5039 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005040 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005041 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005042 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005043 use_firstwin = TRUE;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005044 else
5045 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005046 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaar4033c552017-09-16 20:54:51 +02005047#ifdef FEAT_AUTOCMD
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005048 /* check if autocommands removed the next window */
5049 if (!win_valid(wpnext))
5050 wpnext = firstwin; /* start all over... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 }
5055 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005056
5057 /* Without the ":tab" modifier only do the current tab page. */
5058 if (had_tab == 0 || tpnext == NULL)
5059 break;
5060
5061# ifdef FEAT_AUTOCMD
5062 /* check if autocommands removed the next tab page */
5063 if (!valid_tabpage(tpnext))
5064 tpnext = first_tabpage; /* start all over...*/
5065# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005066 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 }
5068
5069 /*
5070 * Open a window for files in the argument list that don't have one.
5071 * ARGCOUNT may change while doing this, because of autocommands.
5072 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005073 if (count > opened_len || count <= 0)
5074 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075
5076#ifdef FEAT_AUTOCMD
5077 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5078 ++autocmd_no_enter;
5079 ++autocmd_no_leave;
5080#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005081 last_curwin = curwin;
5082 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005084 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5085 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005086 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005087 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5088 use_firstwin = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005089
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005090 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 {
5092 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5093 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005094 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 {
5096 /* Move the already present window to below the current window */
5097 if (curwin->w_arg_idx != i)
5098 {
5099 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5100 {
5101 if (wpnext->w_arg_idx == i)
5102 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005103 if (keep_tabs)
5104 {
5105 new_curwin = wpnext;
5106 new_curtab = curtab;
5107 }
5108 else
5109 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 break;
5111 }
5112 }
5113 }
5114 }
5115 else if (split_ret == OK)
5116 {
5117 if (!use_firstwin) /* split current window */
5118 {
5119 p_ea_save = p_ea;
5120 p_ea = TRUE; /* use space from all windows */
5121 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5122 p_ea = p_ea_save;
5123 if (split_ret == FAIL)
5124 continue;
5125 }
5126#ifdef FEAT_AUTOCMD
5127 else /* first window: do autocmd for leaving this buffer */
5128 --autocmd_no_leave;
5129#endif
5130
5131 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005132 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 */
5134 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005135 if (i == 0)
5136 {
5137 new_curwin = curwin;
5138 new_curtab = curtab;
5139 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5141 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005142 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005144 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145#ifdef FEAT_AUTOCMD
5146 if (use_firstwin)
5147 ++autocmd_no_leave;
5148#endif
5149 use_firstwin = FALSE;
5150 }
5151 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005152
5153 /* When ":tab" was used open a new tab for a new window repeatedly. */
5154 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5155 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 }
5157
5158 /* Remove the "lock" on the argument list. */
5159 alist_unlink(alist);
5160
5161#ifdef FEAT_AUTOCMD
5162 --autocmd_no_enter;
5163#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005164 /* restore last referenced tabpage's curwin */
5165 if (last_curtab != new_curtab)
5166 {
5167 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005168 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005169 if (win_valid(last_curwin))
5170 win_enter(last_curwin, FALSE);
5171 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005172 /* to window with first arg */
5173 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005174 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005175 if (win_valid(new_curwin))
5176 win_enter(new_curwin, FALSE);
5177
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178#ifdef FEAT_AUTOCMD
5179 --autocmd_no_leave;
5180#endif
5181 vim_free(opened);
5182}
5183
5184# if defined(FEAT_LISTCMDS) || defined(PROTO)
5185/*
5186 * Open a window for a number of buffers.
5187 */
5188 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005189ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190{
5191 buf_T *buf;
5192 win_T *wp, *wpnext;
5193 int split_ret = OK;
5194 int p_ea_save;
5195 int open_wins = 0;
5196 int r;
5197 int count; /* Maximum number of windows to open. */
5198 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005199 int had_tab = cmdmod.tab;
5200 tabpage_T *tpnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201
5202 if (eap->addr_count == 0) /* make as many windows as possible */
5203 count = 9999;
5204 else
5205 count = eap->line2; /* make as many windows as specified */
5206 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5207 all = FALSE;
5208 else
5209 all = TRUE;
5210
5211 setpcmark();
5212
5213#ifdef FEAT_GUI
5214 need_mouse_correct = TRUE;
5215#endif
5216
5217 /*
5218 * Close superfluous windows (two windows for the same buffer).
5219 * Also close windows that are not full-width.
5220 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005221 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005222 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005223 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005225 tpnext = curtab->tp_next;
5226 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005228 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005229 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005230 || ((cmdmod.split & WSP_VERT)
5231 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005232 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005233 : wp->w_width != Columns)
Bram Moolenaar4033c552017-09-16 20:54:51 +02005234 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW
Bram Moolenaar362ce482012-06-06 19:02:45 +02005235#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02005236 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02005237#endif
5238 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005239 {
5240 win_close(wp, FALSE);
5241#ifdef FEAT_AUTOCMD
5242 wpnext = firstwin; /* just in case an autocommand does
5243 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005244 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005245 open_wins = 0;
5246#endif
5247 }
5248 else
5249 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005251
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005252 /* Without the ":tab" modifier only do the current tab page. */
5253 if (had_tab == 0 || tpnext == NULL)
5254 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005255 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 }
5257
5258 /*
5259 * Go through the buffer list. When a buffer doesn't have a window yet,
5260 * open one. Otherwise move the window to the right position.
5261 * Watch out for autocommands that delete buffers or windows!
5262 */
5263#ifdef FEAT_AUTOCMD
5264 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5265 ++autocmd_no_enter;
5266#endif
5267 win_enter(lastwin, FALSE);
5268#ifdef FEAT_AUTOCMD
5269 ++autocmd_no_leave;
5270#endif
5271 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5272 {
5273 /* Check if this buffer needs a window */
5274 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5275 continue;
5276
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005277 if (had_tab != 0)
5278 {
5279 /* With the ":tab" modifier don't move the window. */
5280 if (buf->b_nwindows > 0)
5281 wp = lastwin; /* buffer has a window, skip it */
5282 else
5283 wp = NULL;
5284 }
5285 else
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005286 {
5287 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005288 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005289 if (wp->w_buffer == buf)
5290 break;
5291 /* If the buffer already has a window, move it */
5292 if (wp != NULL)
5293 win_move_after(wp, curwin);
5294 }
5295
5296 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005298#ifdef FEAT_AUTOCMD
5299 bufref_T bufref;
5300
5301 set_bufref(&bufref, buf);
5302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 /* Split the window and put the buffer in it */
5304 p_ea_save = p_ea;
5305 p_ea = TRUE; /* use space from all windows */
5306 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5307 ++open_wins;
5308 p_ea = p_ea_save;
5309 if (split_ret == FAIL)
5310 continue;
5311
5312 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005313#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 swap_exists_action = SEA_DIALOG;
5315#endif
5316 set_curbuf(buf, DOBUF_GOTO);
5317#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005318 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005320 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005321#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005323# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 break;
5325 }
5326#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005327#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 if (swap_exists_action == SEA_QUIT)
5329 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005330# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5331 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005332
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005333 /* Reset the error/interrupt/exception state here so that
5334 * aborting() returns FALSE when closing a window. */
5335 enter_cleanup(&cs);
5336# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005337
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005338 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 win_close(curwin, TRUE);
5340 --open_wins;
5341 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005342 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005343
5344# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5345 /* Restore the error/interrupt/exception state if not
5346 * discarded by a new aborting error, interrupt, or uncaught
5347 * exception. */
5348 leave_cleanup(&cs);
5349# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 }
5351 else
5352 handle_swap_exists(NULL);
5353#endif
5354 }
5355
5356 ui_breakcheck();
5357 if (got_int)
5358 {
5359 (void)vgetc(); /* only break the file loading, not the rest */
5360 break;
5361 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005362#ifdef FEAT_EVAL
5363 /* Autocommands deleted the buffer or aborted script processing!!! */
5364 if (aborting())
5365 break;
5366#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005367 /* When ":tab" was used open a new tab for a new window repeatedly. */
5368 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5369 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 }
5371#ifdef FEAT_AUTOCMD
5372 --autocmd_no_enter;
5373#endif
5374 win_enter(firstwin, FALSE); /* back to first window */
5375#ifdef FEAT_AUTOCMD
5376 --autocmd_no_leave;
5377#endif
5378
5379 /*
5380 * Close superfluous windows.
5381 */
5382 for (wp = lastwin; open_wins > count; )
5383 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005384 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 || autowrite(wp->w_buffer, FALSE) == OK);
5386#ifdef FEAT_AUTOCMD
5387 if (!win_valid(wp))
5388 {
5389 /* BufWrite Autocommands made the window invalid, start over */
5390 wp = lastwin;
5391 }
5392 else
5393#endif
5394 if (r)
5395 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005396 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 --open_wins;
5398 wp = lastwin;
5399 }
5400 else
5401 {
5402 wp = wp->w_prev;
5403 if (wp == NULL)
5404 break;
5405 }
5406 }
5407}
5408# endif /* FEAT_LISTCMDS */
5409
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005411static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005412
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413/*
5414 * do_modelines() - process mode lines for the current file
5415 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005416 * "flags" can be:
5417 * OPT_WINONLY only set options local to window
5418 * OPT_NOWIN don't set options local to window
5419 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 * Returns immediately if the "ml" option isn't set.
5421 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005423do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005425 linenr_T lnum;
5426 int nmlines;
5427 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428
5429 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5430 return;
5431
5432 /* Disallow recursive entry here. Can happen when executing a modeline
5433 * triggers an autocommand, which reloads modelines with a ":do". */
5434 if (entered)
5435 return;
5436
5437 ++entered;
5438 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5439 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005440 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 nmlines = 0;
5442
5443 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5444 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005445 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 nmlines = 0;
5447 --entered;
5448}
5449
5450#include "version.h" /* for version number */
5451
5452/*
5453 * chk_modeline() - check a single line for a mode string
5454 * Return FAIL if an error encountered.
5455 */
5456 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005457chk_modeline(
5458 linenr_T lnum,
5459 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460{
5461 char_u *s;
5462 char_u *e;
5463 char_u *linecopy; /* local copy of any modeline found */
5464 int prev;
5465 int vers;
5466 int end;
5467 int retval = OK;
5468 char_u *save_sourcing_name;
5469 linenr_T save_sourcing_lnum;
5470#ifdef FEAT_EVAL
5471 scid_T save_SID;
5472#endif
5473
5474 prev = -1;
5475 for (s = ml_get(lnum); *s != NUL; ++s)
5476 {
5477 if (prev == -1 || vim_isspace(prev))
5478 {
5479 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5480 || STRNCMP(s, "vi:", (size_t)3) == 0)
5481 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005482 /* Accept both "vim" and "Vim". */
5483 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 {
5485 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5486 e = s + 4;
5487 else
5488 e = s + 3;
5489 vers = getdigits(&e);
5490 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005491 && (s[0] != 'V'
5492 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 && (s[3] == ':'
5494 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5495 || (VIM_VERSION_100 < vers && s[3] == '<')
5496 || (VIM_VERSION_100 > vers && s[3] == '>')
5497 || (VIM_VERSION_100 == vers && s[3] == '=')))
5498 break;
5499 }
5500 }
5501 prev = *s;
5502 }
5503
5504 if (*s)
5505 {
5506 do /* skip over "ex:", "vi:" or "vim:" */
5507 ++s;
5508 while (s[-1] != ':');
5509
5510 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5511 if (linecopy == NULL)
5512 return FAIL;
5513
5514 save_sourcing_lnum = sourcing_lnum;
5515 save_sourcing_name = sourcing_name;
5516 sourcing_lnum = lnum; /* prepare for emsg() */
5517 sourcing_name = (char_u *)"modelines";
5518
5519 end = FALSE;
5520 while (end == FALSE)
5521 {
5522 s = skipwhite(s);
5523 if (*s == NUL)
5524 break;
5525
5526 /*
5527 * Find end of set command: ':' or end of line.
5528 * Skip over "\:", replacing it with ":".
5529 */
5530 for (e = s; *e != ':' && *e != NUL; ++e)
5531 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005532 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 if (*e == NUL)
5534 end = TRUE;
5535
5536 /*
5537 * If there is a "set" command, require a terminating ':' and
5538 * ignore the stuff after the ':'.
5539 * "vi:set opt opt opt: foo" -- foo not interpreted
5540 * "vi:opt opt opt: foo" -- foo interpreted
5541 * Accept "se" for compatibility with Elvis.
5542 */
5543 if (STRNCMP(s, "set ", (size_t)4) == 0
5544 || STRNCMP(s, "se ", (size_t)3) == 0)
5545 {
5546 if (*e != ':') /* no terminating ':'? */
5547 break;
5548 end = TRUE;
5549 s = vim_strchr(s, ' ') + 1;
5550 }
5551 *e = NUL; /* truncate the set command */
5552
5553 if (*s != NUL) /* skip over an empty "::" */
5554 {
5555#ifdef FEAT_EVAL
5556 save_SID = current_SID;
5557 current_SID = SID_MODELINE;
5558#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005559 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560#ifdef FEAT_EVAL
5561 current_SID = save_SID;
5562#endif
5563 if (retval == FAIL) /* stop if error found */
5564 break;
5565 }
5566 s = e + 1; /* advance to next part */
5567 }
5568
5569 sourcing_lnum = save_sourcing_lnum;
5570 sourcing_name = save_sourcing_name;
5571
5572 vim_free(linecopy);
5573 }
5574 return retval;
5575}
5576
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005577#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005579read_viminfo_bufferlist(
5580 vir_T *virp,
5581 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582{
5583 char_u *tab;
5584 linenr_T lnum;
5585 colnr_T col;
5586 buf_T *buf;
5587 char_u *sfname;
5588 char_u *xline;
5589
5590 /* Handle long line and escaped characters. */
5591 xline = viminfo_readstring(virp, 1, FALSE);
5592
5593 /* don't read in if there are files on the command-line or if writing: */
5594 if (xline != NULL && !writing && ARGCOUNT == 0
5595 && find_viminfo_parameter('%') != NULL)
5596 {
5597 /* Format is: <fname> Tab <lnum> Tab <col>.
5598 * Watch out for a Tab in the file name, work from the end. */
5599 lnum = 0;
5600 col = 0;
5601 tab = vim_strrchr(xline, '\t');
5602 if (tab != NULL)
5603 {
5604 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005605 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 tab = vim_strrchr(xline, '\t');
5607 if (tab != NULL)
5608 {
5609 *tab++ = '\0';
5610 lnum = atol((char *)tab);
5611 }
5612 }
5613
5614 /* Expand "~/" in the file name at "line + 1" to a full path.
5615 * Then try shortening it by comparing with the current directory */
5616 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005617 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618
5619 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5620 if (buf != NULL) /* just in case... */
5621 {
5622 buf->b_last_cursor.lnum = lnum;
5623 buf->b_last_cursor.col = col;
5624 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5625 }
5626 }
5627 vim_free(xline);
5628
5629 return viminfo_readline(virp);
5630}
5631
5632 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005633write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634{
5635 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005637 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005639 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640
5641 if (find_viminfo_parameter('%') == NULL)
5642 return;
5643
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005644 /* Without a number -1 is returned: do all buffers. */
5645 max_buffers = get_viminfo_parameter('%');
5646
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005648#define LINE_BUF_LEN (MAXPATHL + 40)
5649 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 if (line == NULL)
5651 return;
5652
Bram Moolenaarf740b292006-02-16 22:11:02 +00005653 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 set_last_cursor(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005656 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005657 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 {
5659 if (buf->b_fname == NULL
5660 || !buf->b_p_bl
5661#ifdef FEAT_QUICKFIX
5662 || bt_quickfix(buf)
5663#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005664#ifdef FEAT_TERMINAL
5665 || bt_terminal(buf)
5666#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 || removable(buf->b_ffname))
5668 continue;
5669
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005670 if (max_buffers-- == 0)
5671 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 putc('%', fp);
5673 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005674 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 (long)buf->b_last_cursor.lnum,
5676 buf->b_last_cursor.col);
5677 viminfo_writestring(fp, line);
5678 }
5679 vim_free(line);
5680}
5681#endif
5682
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005683/*
5684 * Return TRUE if "buf" is the quickfix buffer.
5685 */
5686 int
5687bt_quickfix(buf_T *buf)
5688{
5689 return buf != NULL && buf->b_p_bt[0] == 'q';
5690}
5691
5692/*
5693 * Return TRUE if "buf" is a terminal buffer.
5694 */
5695 int
5696bt_terminal(buf_T *buf)
5697{
5698 return buf != NULL && buf->b_p_bt[0] == 't';
5699}
5700
5701/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005702 * Return TRUE if "buf" is a help buffer.
5703 */
5704 int
5705bt_help(buf_T *buf)
5706{
5707 return buf != NULL && buf->b_help;
5708}
5709
5710/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005711 * Return TRUE if "buf" is a "nofile", "acwrite" or "terminal" buffer.
5712 * This means the buffer name is not a file name.
5713 */
5714 int
5715bt_nofile(buf_T *buf)
5716{
5717 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5718 || buf->b_p_bt[0] == 'a'
5719 || buf->b_p_bt[0] == 't');
5720}
5721
5722/*
5723 * Return TRUE if "buf" is a "nowrite", "nofile" or "terminal" buffer.
5724 */
5725 int
5726bt_dontwrite(buf_T *buf)
5727{
5728 return buf != NULL && (buf->b_p_bt[0] == 'n' || buf->b_p_bt[0] == 't');
5729}
5730
5731 int
5732bt_dontwrite_msg(buf_T *buf)
5733{
5734 if (bt_dontwrite(buf))
5735 {
5736 EMSG(_("E382: Cannot write, 'buftype' option is set"));
5737 return TRUE;
5738 }
5739 return FALSE;
5740}
5741
5742/*
5743 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5744 * and 'bufhidden'.
5745 */
5746 int
5747buf_hide(buf_T *buf)
5748{
5749 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5750 switch (buf->b_p_bh[0])
5751 {
5752 case 'u': /* "unload" */
5753 case 'w': /* "wipe" */
5754 case 'd': return FALSE; /* "delete" */
5755 case 'h': return TRUE; /* "hide" */
5756 }
5757 return (p_hid || cmdmod.hide);
5758}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759
5760/*
5761 * Return special buffer name.
5762 * Returns NULL when the buffer has a normal file name.
5763 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005764 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005765buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766{
Bram Moolenaar4033c552017-09-16 20:54:51 +02005767#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005769 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005770 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005771 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005772
5773 /*
5774 * For location list window, w_llist_ref points to the location list.
5775 * For quickfix window, w_llist_ref is NULL.
5776 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005777 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005778 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005779 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005780 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005783
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005785 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 if (bt_nofile(buf))
5787 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005788#ifdef FEAT_TERMINAL
5789 if (buf->b_term != NULL)
5790 return term_get_status_text(buf->b_term);
5791#endif
Bram Moolenaare561a7e2017-08-29 22:44:59 +02005792 if (buf->b_fname != NULL)
5793 return buf->b_fname;
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005794 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005796
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005798 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 return NULL;
5800}
5801
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005802#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005803 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5804 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005805# define SWITCH_TO_WIN
5806
5807/*
5808 * Find a window that contains "buf" and switch to it.
5809 * If there is no such window, use the current window and change "curbuf".
5810 * Caller must initialize save_curbuf to NULL.
5811 * restore_win_for_buf() MUST be called later!
5812 */
5813 void
5814switch_to_win_for_buf(
5815 buf_T *buf,
5816 win_T **save_curwinp,
5817 tabpage_T **save_curtabp,
5818 bufref_T *save_curbuf)
5819{
5820 win_T *wp;
5821 tabpage_T *tp;
5822
5823 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5824 switch_buffer(save_curbuf, buf);
5825 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5826 {
5827 restore_win(*save_curwinp, *save_curtabp, TRUE);
5828 switch_buffer(save_curbuf, buf);
5829 }
5830}
5831
5832 void
5833restore_win_for_buf(
5834 win_T *save_curwin,
5835 tabpage_T *save_curtab,
5836 bufref_T *save_curbuf)
5837{
5838 if (save_curbuf->br_buf == NULL)
5839 restore_win(save_curwin, save_curtab, TRUE);
5840 else
5841 restore_buffer(save_curbuf);
5842}
5843#endif
5844
Bram Moolenaar4033c552017-09-16 20:54:51 +02005845#if defined(FEAT_QUICKFIX) || defined(SWITCH_TO_WIN) || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005846/*
5847 * Find a window for buffer "buf".
5848 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5849 * If not found FAIL is returned.
5850 */
5851 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005852find_win_for_buf(
5853 buf_T *buf,
5854 win_T **wp,
5855 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005856{
5857 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5858 if ((*wp)->w_buffer == buf)
5859 goto win_found;
5860 return FAIL;
5861win_found:
5862 return OK;
5863}
5864#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865
5866#if defined(FEAT_SIGNS) || defined(PROTO)
5867/*
5868 * Insert the sign into the signlist.
5869 */
5870 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005871insert_sign(
5872 buf_T *buf, /* buffer to store sign in */
5873 signlist_T *prev, /* previous sign entry */
5874 signlist_T *next, /* next sign entry */
5875 int id, /* sign ID */
5876 linenr_T lnum, /* line number which gets the mark */
5877 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878{
5879 signlist_T *newsign;
5880
5881 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5882 if (newsign != NULL)
5883 {
5884 newsign->id = id;
5885 newsign->lnum = lnum;
5886 newsign->typenr = typenr;
5887 newsign->next = next;
5888#ifdef FEAT_NETBEANS_INTG
5889 newsign->prev = prev;
5890 if (next != NULL)
5891 next->prev = newsign;
5892#endif
5893
5894 if (prev == NULL)
5895 {
5896 /* When adding first sign need to redraw the windows to create the
5897 * column for signs. */
5898 if (buf->b_signlist == NULL)
5899 {
5900 redraw_buf_later(buf, NOT_VALID);
5901 changed_cline_bef_curs();
5902 }
5903
5904 /* first sign in signlist */
5905 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005906#ifdef FEAT_NETBEANS_INTG
5907 if (netbeans_active())
5908 buf->b_has_sign_column = TRUE;
5909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 }
5911 else
5912 prev->next = newsign;
5913 }
5914}
5915
5916/*
5917 * Add the sign into the signlist. Find the right spot to do it though.
5918 */
5919 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005920buf_addsign(
5921 buf_T *buf, /* buffer to store sign in */
5922 int id, /* sign ID */
5923 linenr_T lnum, /* line number which gets the mark */
5924 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925{
5926 signlist_T *sign; /* a sign in the signlist */
5927 signlist_T *prev; /* the previous sign */
5928
5929 prev = NULL;
5930 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5931 {
5932 if (lnum == sign->lnum && id == sign->id)
5933 {
5934 sign->typenr = typenr;
5935 return;
5936 }
5937 else if (
5938#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5939 id < 0 &&
5940#endif
5941 lnum < sign->lnum)
5942 {
5943#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5944 /* XXX - GRP: Is this because of sign slide problem? Or is it
5945 * really needed? Or is it because we allow multiple signs per
5946 * line? If so, should I add that feature to FEAT_SIGNS?
5947 */
5948 while (prev != NULL && prev->lnum == lnum)
5949 prev = prev->prev;
5950 if (prev == NULL)
5951 sign = buf->b_signlist;
5952 else
5953 sign = prev->next;
5954#endif
5955 insert_sign(buf, prev, sign, id, lnum, typenr);
5956 return;
5957 }
5958 prev = sign;
5959 }
5960#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5961 /* XXX - GRP: See previous comment */
5962 while (prev != NULL && prev->lnum == lnum)
5963 prev = prev->prev;
5964 if (prev == NULL)
5965 sign = buf->b_signlist;
5966 else
5967 sign = prev->next;
5968#endif
5969 insert_sign(buf, prev, sign, id, lnum, typenr);
5970
5971 return;
5972}
5973
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005974/*
5975 * For an existing, placed sign "markId" change the type to "typenr".
5976 * Returns the line number of the sign, or zero if the sign is not found.
5977 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005978 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005979buf_change_sign_type(
5980 buf_T *buf, /* buffer to store sign in */
5981 int markId, /* sign ID */
5982 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983{
5984 signlist_T *sign; /* a sign in the signlist */
5985
5986 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5987 {
5988 if (sign->id == markId)
5989 {
5990 sign->typenr = typenr;
5991 return sign->lnum;
5992 }
5993 }
5994
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005995 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996}
5997
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005998 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005999buf_getsigntype(
6000 buf_T *buf,
6001 linenr_T lnum,
6002 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003{
6004 signlist_T *sign; /* a sign in a b_signlist */
6005
6006 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6007 if (sign->lnum == lnum
6008 && (type == SIGN_ANY
6009# ifdef FEAT_SIGN_ICONS
6010 || (type == SIGN_ICON
6011 && sign_get_image(sign->typenr) != NULL)
6012# endif
6013 || (type == SIGN_TEXT
6014 && sign_get_text(sign->typenr) != NULL)
6015 || (type == SIGN_LINEHL
6016 && sign_get_attr(sign->typenr, TRUE) != 0)))
6017 return sign->typenr;
6018 return 0;
6019}
6020
6021
6022 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01006023buf_delsign(
6024 buf_T *buf, /* buffer sign is stored in */
6025 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026{
6027 signlist_T **lastp; /* pointer to pointer to current sign */
6028 signlist_T *sign; /* a sign in a b_signlist */
6029 signlist_T *next; /* the next sign in a b_signlist */
6030 linenr_T lnum; /* line number whose sign was deleted */
6031
6032 lastp = &buf->b_signlist;
6033 lnum = 0;
6034 for (sign = buf->b_signlist; sign != NULL; sign = next)
6035 {
6036 next = sign->next;
6037 if (sign->id == id)
6038 {
6039 *lastp = next;
6040#ifdef FEAT_NETBEANS_INTG
6041 if (next != NULL)
6042 next->prev = sign->prev;
6043#endif
6044 lnum = sign->lnum;
6045 vim_free(sign);
6046 break;
6047 }
6048 else
6049 lastp = &sign->next;
6050 }
6051
6052 /* When deleted the last sign need to redraw the windows to remove the
6053 * sign column. */
6054 if (buf->b_signlist == NULL)
6055 {
6056 redraw_buf_later(buf, NOT_VALID);
6057 changed_cline_bef_curs();
6058 }
6059
6060 return lnum;
6061}
6062
6063
6064/*
6065 * Find the line number of the sign with the requested id. If the sign does
6066 * not exist, return 0 as the line number. This will still let the correct file
6067 * get loaded.
6068 */
6069 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006070buf_findsign(
6071 buf_T *buf, /* buffer to store sign in */
6072 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073{
6074 signlist_T *sign; /* a sign in the signlist */
6075
6076 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6077 if (sign->id == id)
6078 return sign->lnum;
6079
6080 return 0;
6081}
6082
6083 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006084buf_findsign_id(
6085 buf_T *buf, /* buffer whose sign we are searching for */
6086 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087{
6088 signlist_T *sign; /* a sign in the signlist */
6089
6090 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6091 if (sign->lnum == lnum)
6092 return sign->id;
6093
6094 return 0;
6095}
6096
6097
6098# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
6099/* see if a given type of sign exists on a specific line */
6100 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006101buf_findsigntype_id(
6102 buf_T *buf, /* buffer whose sign we are searching for */
6103 linenr_T lnum, /* line number of sign */
6104 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105{
6106 signlist_T *sign; /* a sign in the signlist */
6107
6108 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6109 if (sign->lnum == lnum && sign->typenr == typenr)
6110 return sign->id;
6111
6112 return 0;
6113}
6114
6115
6116# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6117/* return the number of icons on the given line */
6118 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006119buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120{
6121 signlist_T *sign; /* a sign in the signlist */
6122 int count = 0;
6123
6124 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6125 if (sign->lnum == lnum)
6126 if (sign_get_image(sign->typenr) != NULL)
6127 count++;
6128
6129 return count;
6130}
6131# endif /* FEAT_SIGN_ICONS */
6132# endif /* FEAT_NETBEANS_INTG */
6133
6134
6135/*
6136 * Delete signs in buffer "buf".
6137 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02006138 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006139buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140{
6141 signlist_T *next;
6142
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006143 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02006144 * sign column. Not when curwin is NULL (this means we're exiting). */
6145 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006146 {
6147 redraw_buf_later(buf, NOT_VALID);
6148 changed_cline_bef_curs();
6149 }
6150
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 while (buf->b_signlist != NULL)
6152 {
6153 next = buf->b_signlist->next;
6154 vim_free(buf->b_signlist);
6155 buf->b_signlist = next;
6156 }
6157}
6158
6159/*
6160 * Delete all signs in all buffers.
6161 */
6162 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006163buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164{
6165 buf_T *buf; /* buffer we are checking for signs */
6166
Bram Moolenaar29323592016-07-24 22:04:11 +02006167 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170}
6171
6172/*
6173 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6174 */
6175 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006176sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177{
6178 buf_T *buf;
6179 signlist_T *p;
6180 char lbuf[BUFSIZ];
6181
6182 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6183 msg_putchar('\n');
6184 if (rbuf == NULL)
6185 buf = firstbuf;
6186 else
6187 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006188 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 {
6190 if (buf->b_signlist != NULL)
6191 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006192 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006193 MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 msg_putchar('\n');
6195 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006196 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006198 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6200 MSG_PUTS(lbuf);
6201 msg_putchar('\n');
6202 }
6203 if (rbuf != NULL)
6204 break;
6205 buf = buf->b_next;
6206 }
6207}
6208
6209/*
6210 * Adjust a placed sign for inserted/deleted lines.
6211 */
6212 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006213sign_mark_adjust(
6214 linenr_T line1,
6215 linenr_T line2,
6216 long amount,
6217 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218{
6219 signlist_T *sign; /* a sign in a b_signlist */
6220
6221 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6222 {
6223 if (sign->lnum >= line1 && sign->lnum <= line2)
6224 {
6225 if (amount == MAXLNUM)
6226 sign->lnum = line1;
6227 else
6228 sign->lnum += amount;
6229 }
6230 else if (sign->lnum > line2)
6231 sign->lnum += amount_after;
6232 }
6233}
6234#endif /* FEAT_SIGNS */
6235
6236/*
6237 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6238 */
6239 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006240set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241{
6242 if (on != curbuf->b_p_bl)
6243 {
6244 curbuf->b_p_bl = on;
6245#ifdef FEAT_AUTOCMD
6246 if (on)
6247 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6248 else
6249 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6250#endif
6251 }
6252}
6253
6254/*
6255 * Read the file for "buf" again and check if the contents changed.
6256 * Return TRUE if it changed or this could not be checked.
6257 */
6258 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006259buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260{
6261 buf_T *newbuf;
6262 int differ = TRUE;
6263 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265 exarg_T ea;
6266
6267 /* Allocate a buffer without putting it in the buffer list. */
6268 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6269 if (newbuf == NULL)
6270 return TRUE;
6271
6272 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6273 if (prep_exarg(&ea, buf) == FAIL)
6274 {
6275 wipe_buffer(newbuf, FALSE);
6276 return TRUE;
6277 }
6278
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 /* set curwin/curbuf to buf and save a few things */
6280 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281
Bram Moolenaar4770d092006-01-12 23:22:24 +00006282 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 && readfile(buf->b_ffname, buf->b_fname,
6284 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6285 &ea, READ_NEW | READ_DUMMY) == OK)
6286 {
6287 /* compare the two files line by line */
6288 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6289 {
6290 differ = FALSE;
6291 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6292 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6293 {
6294 differ = TRUE;
6295 break;
6296 }
6297 }
6298 }
6299 vim_free(ea.cmd);
6300
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 /* restore curwin/curbuf and a few other things */
6302 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303
6304 if (curbuf != newbuf) /* safety check */
6305 wipe_buffer(newbuf, FALSE);
6306
6307 return differ;
6308}
6309
6310/*
6311 * Wipe out a buffer and decrement the last buffer number if it was used for
6312 * this buffer. Call this to wipe out a temp buffer that does not contain any
6313 * marks.
6314 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006316wipe_buffer(
6317 buf_T *buf,
6318 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319{
6320 if (buf->b_fnum == top_file_num - 1)
6321 --top_file_num;
6322
6323#ifdef FEAT_AUTOCMD
6324 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006325 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006327 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328#ifdef FEAT_AUTOCMD
6329 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006330 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331#endif
6332}